diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 80f3fca..0000000 --- a/.editorconfig +++ /dev/null @@ -1,189 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2017 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# EditorConfig configuration file (see ). - -# Indicate that this file is a root-level configuration file: -root = true - -# Set properties for all files: -[*] -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -# Set properties for JavaScript files: -[*.{js,js.txt}] -indent_style = tab - -# Set properties for JavaScript ES module files: -[*.{mjs,mjs.txt}] -indent_style = tab - -# Set properties for JavaScript CommonJS files: -[*.{cjs,cjs.txt}] -indent_style = tab - -# Set properties for JSON files: -[*.{json,json.txt}] -indent_style = space -indent_size = 2 - -# Set properties for `cli_opts.json` files: -[cli_opts.json] -indent_style = tab - -# Set properties for TypeScript files: -[*.ts] -indent_style = tab - -# Set properties for Python files: -[*.{py,py.txt}] -indent_style = space -indent_size = 4 - -# Set properties for Julia files: -[*.{jl,jl.txt}] -indent_style = tab - -# Set properties for R files: -[*.{R,R.txt}] -indent_style = tab - -# Set properties for C files: -[*.{c,c.txt}] -indent_style = tab - -# Set properties for C header files: -[*.{h,h.txt}] -indent_style = tab - -# Set properties for C++ files: -[*.{cpp,cpp.txt}] -indent_style = tab - -# Set properties for C++ header files: -[*.{hpp,hpp.txt}] -indent_style = tab - -# Set properties for Fortran files: -[*.{f,f.txt}] -indent_style = space -indent_size = 2 - -# Set properties for shell files: -[*.{sh,sh.txt}] -indent_style = tab - -# Set properties for AWK files: -[*.{awk,awk.txt}] -indent_style = tab - -# Set properties for HTML files: -[*.{html,html.txt}] -indent_style = tab -tab_width = 2 - -# Set properties for XML files: -[*.{xml,xml.txt}] -indent_style = tab -tab_width = 2 - -# Set properties for CSS files: -[*.{css,css.txt}] -indent_style = tab - -# Set properties for Makefiles: -[Makefile] -indent_style = tab - -[*.{mk,mk.txt}] -indent_style = tab - -# Set properties for Markdown files: -[*.{md,md.txt}] -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim. - -# Set properties for `usage.txt` files: -[usage.txt] -indent_style = space -indent_size = 2 - -# Set properties for `repl.txt` files: -[repl.txt] -indent_style = space -indent_size = 4 - -# Set properties for `package.json` files: -[package.{json,json.txt}] -indent_style = space -indent_size = 2 - -# Set properties for `datapackage.json` files: -[datapackage.json] -indent_style = space -indent_size = 2 - -# Set properties for `manifest.json` files: -[manifest.json] -indent_style = space -indent_size = 2 - -# Set properties for `tsconfig.json` files: -[tsconfig.json] -indent_style = space -indent_size = 2 - -# Set properties for LaTeX files: -[*.{tex,tex.txt}] -indent_style = tab - -# Set properties for LaTeX Bibliography files: -[*.{bib,bib.txt}] -indent_style = tab - -# Set properties for YAML files: -[*.{yml,yml.txt}] -indent_style = space -indent_size = 2 - -# Ignore generated lock files for GitHub Agentic Workflows: -[*.lock.yml] -charset = unset -end_of_line = unset -indent_style = unset -indent_size = unset -trim_trailing_whitespace = unset -insert_final_newline = unset - -# Set properties for GYP files: -[binding.gyp] -indent_style = space -indent_size = 2 - -[*.gypi] -indent_style = space -indent_size = 2 - -# Set properties for citation files: -[*.{cff,cff.txt}] -indent_style = space -indent_size = 2 diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 5f30286..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1 +0,0 @@ -/* For the `eslint` rules of this project, consult the main repository at https://github.com/stdlib-js/stdlib */ diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 24b327f..0000000 --- a/.gitattributes +++ /dev/null @@ -1,68 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2017 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Configuration file which assigns attributes to pathnames. -# -# [1]: https://git-scm.com/docs/gitattributes - -# Automatically normalize the line endings of any committed text files: -* text=auto - -# Override line endings for certain files on checkout: -*.crlf.csv text eol=crlf - -# Denote that certain files are binary and should not be modified: -*.png binary -*.jpg binary -*.jpeg binary -*.gif binary -*.ico binary -*.gz binary -*.zip binary -*.7z binary -*.mp3 binary -*.mp4 binary -*.mov binary - -# Override what is considered "vendored" by GitHub's linguist: -/lib/node_modules/** -linguist-vendored -linguist-generated - -# Configure directories which should *not* be included in GitHub language statistics: -/deps/** linguist-vendored -/dist/** linguist-generated -/workshops/** linguist-vendored - -benchmark/** linguist-vendored -docs/* linguist-documentation -etc/** linguist-vendored -examples/** linguist-documentation -scripts/** linguist-vendored -test/** linguist-vendored -tools/** linguist-vendored - -# Configure files which should *not* be included in GitHub language statistics: -Makefile linguist-vendored -*.mk linguist-vendored -*.jl linguist-vendored -*.py linguist-vendored -*.R linguist-vendored - -# Configure files which should be included in GitHub language statistics: -docs/types/*.d.ts -linguist-documentation - -.github/workflows/*.lock.yml linguist-generated=true merge=ours diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 985a774..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,7 +0,0 @@ - - -We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error) of the main repository where we’ll review and provide feedback. - -If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib. - -We look forward to receiving your contribution! :smiley: \ No newline at end of file diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml deleted file mode 100644 index e4f10fe..0000000 --- a/.github/workflows/benchmark.yml +++ /dev/null @@ -1,64 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2021 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: benchmark - -# Workflow triggers: -on: - # Allow the workflow to be manually run: - workflow_dispatch: - -# Workflow jobs: -jobs: - - # Define a job to run benchmarks: - benchmark: - - # Define a display name: - name: 'Run benchmarks' - - # Define the type of virtual host machine: - runs-on: 'ubuntu-latest' - - # Define the sequence of job steps... - steps: - - # Checkout the repository: - - name: 'Checkout repository' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - - # Install Node.js: - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Install dependencies: - - name: 'Install production and development dependencies' - run: | - npm install || npm install || npm install - timeout-minutes: 15 - - # Run benchmarks: - - name: 'Run benchmarks' - run: | - npm run benchmark diff --git a/.github/workflows/cancel.yml b/.github/workflows/cancel.yml deleted file mode 100644 index b5291db..0000000 --- a/.github/workflows/cancel.yml +++ /dev/null @@ -1,57 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2021 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: cancel - -# Workflow triggers: -on: - # Allow the workflow to be manually run: - workflow_dispatch: - -# Workflow jobs: -jobs: - - # Define a job to cancel existing workflow runs: - cancel: - - # Define a display name: - name: 'Cancel workflow runs' - - # Define the type of virtual host machine: - runs-on: 'ubuntu-latest' - - # Time limit: - timeout-minutes: 3 - - # Define the sequence of job steps... - steps: - - # Cancel existing workflow runs: - - name: 'Cancel existing workflow runs' - # Pin action to full length commit SHA - uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # v0.12.1 - with: - workflow_id: >- - benchmark.yml, - examples.yml, - test.yml, - test_coverage.yml, - test_install.yml, - publish.yml - access_token: ${{ github.token }} diff --git a/.github/workflows/close_pull_requests.yml b/.github/workflows/close_pull_requests.yml deleted file mode 100644 index 2873c1f..0000000 --- a/.github/workflows/close_pull_requests.yml +++ /dev/null @@ -1,54 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2021 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: close_pull_requests - -# Workflow triggers: -on: - pull_request_target: - types: [opened] - -# Workflow jobs: -jobs: - - # Define job to close all pull requests: - run: - - # Define the type of virtual host machine on which to run the job: - runs-on: ubuntu-latest - - # Define the sequence of job steps... - steps: - - # Close pull request - - name: 'Close pull request' - # Pin action to full length commit SHA corresponding to v3.1.2 - uses: superbrothers/close-pull-request@9c18513d320d7b2c7185fb93396d0c664d5d8448 - with: - comment: | - Thank you for submitting a pull request. :raised_hands: - - We greatly appreciate your willingness to submit a contribution. However, we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). - - We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error) of the main repository where we’ll review and provide feedback. If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. - - Thank you again, and we look forward to receiving your contribution! :smiley: - - Best, - The stdlib team \ No newline at end of file diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml deleted file mode 100644 index 2984901..0000000 --- a/.github/workflows/examples.yml +++ /dev/null @@ -1,64 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2021 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: examples - -# Workflow triggers: -on: - # Allow the workflow to be manually run: - workflow_dispatch: - -# Workflow jobs: -jobs: - - # Define a job to run the package examples... - examples: - - # Define display name: - name: 'Run examples' - - # Define the type of virtual host machine on which to run the job: - runs-on: ubuntu-latest - - # Define the sequence of job steps... - steps: - - # Checkout repository: - - name: 'Checkout repository' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - - # Install Node.js: - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Install dependencies: - - name: 'Install production and development dependencies' - run: | - npm install || npm install || npm install - timeout-minutes: 15 - - # Run examples: - - name: 'Run examples' - run: | - npm run examples diff --git a/.github/workflows/npm_downloads.yml b/.github/workflows/npm_downloads.yml deleted file mode 100644 index 9d3e0e9..0000000 --- a/.github/workflows/npm_downloads.yml +++ /dev/null @@ -1,112 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2022 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: npm_downloads - -# Workflow triggers: -on: - # Run this workflow weekly: - schedule: - # cron: ' ' - - cron: '40 4 * * 5' - - # Allow the workflow to be manually run: - workflow_dispatch: - -# Workflow jobs: -jobs: - - # Define a job for retrieving npm download counts... - npm_downloads: - - # Define display name: - name: 'Retrieve npm download counts' - - # Define the type of virtual host machine on which to run the job: - runs-on: ubuntu-latest - - # Define the sequence of job steps... - steps: - # Checkout the repository: - - name: 'Checkout repository' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - timeout-minutes: 10 - - # Install Node.js: - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Resolve package name: - - name: 'Resolve package name' - id: package_name - run: | - name=`node -e 'console.log(require("./package.json").name)' | tr -d '\n'` - echo "package_name=$name" >> $GITHUB_OUTPUT - timeout-minutes: 5 - - # Fetch download data: - - name: 'Fetch data' - id: download_data - run: | - url="https://api.npmjs.org/downloads/range/$(date --date='1 year ago' '+%Y-%m-%d'):$(date '+%Y-%m-%d')/${{ steps.package_name.outputs.package_name }}" - echo "$url" - data=$(curl "$url") - mkdir ./tmp - echo "$data" > ./tmp/npm_downloads.json - echo "data=$data" >> $GITHUB_OUTPUT - timeout-minutes: 5 - - # Print summary of download data: - - name: 'Print summary' - run: | - echo "| Date | Downloads |" >> $GITHUB_STEP_SUMMARY - echo "|------|------------|" >> $GITHUB_STEP_SUMMARY - cat ./tmp/npm_downloads.json | jq -r ".downloads | .[-14:] | to_entries | map(\"| \(.value.day) | \(.value.downloads) |\") |.[]" >> $GITHUB_STEP_SUMMARY - - # Upload the download data: - - name: 'Upload data' - # Pin action to full length commit SHA - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 - with: - # Define a name for the uploaded artifact (ensuring a unique name for each job): - name: npm_downloads - - # Specify the path to the file to upload: - path: ./tmp/npm_downloads.json - - # Specify the number of days to retain the artifact (default is 90 days): - retention-days: 90 - timeout-minutes: 10 - if: success() - - # Send data to events server: - - name: 'Post data' - # Pin action to full length commit SHA - uses: distributhor/workflow-webhook@48a40b380ce4593b6a6676528cd005986ae56629 # v3.0.3 - env: - webhook_url: ${{ secrets.STDLIB_NPM_DOWNLOADS_URL }} - webhook_secret: ${{ secrets.STDLIB_WEBHOOK_SECRET }} - data: '{ "downloads": ${{ steps.download_data.outputs.data }} }' - timeout-minutes: 5 - if: success() diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml deleted file mode 100644 index 83d50c4..0000000 --- a/.github/workflows/productionize.yml +++ /dev/null @@ -1,821 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2022 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# Workflow name: -name: productionize - -# Workflow triggers: -on: - # Run workflow when a new commit is pushed to the main branch: - push: - branches: - - main - - # Allow the workflow to be manually run: - workflow_dispatch: - inputs: - require-passing-tests: - description: 'Require passing tests for creating bundles' - type: boolean - default: true - - # Run workflow upon completion of `publish` workflow run: - workflow_run: - workflows: ["publish"] - types: [completed] - - -# Concurrency group to prevent multiple concurrent executions: -concurrency: - group: productionize - cancel-in-progress: true - -# Workflow jobs: -jobs: - - # Define a job to create a production build... - productionize: - - # Define display name: - name: 'Productionize' - - # Define the type of virtual host machine: - runs-on: 'ubuntu-latest' - - # Define the sequence of job steps... - steps: - # Checkout main branch of repository: - - name: 'Checkout main branch' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - with: - ref: main - - # Install Node.js: - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Create production branch: - - name: 'Create production branch' - run: | - git checkout -b production - - # Transform error messages: - - name: 'Transform error messages' - id: transform-error-messages - uses: stdlib-js/transform-errors-action@main - - # Change `@stdlib/string-format` to `@stdlib/error-tools-fmtprodmsg` in package.json if the former is a dependency, otherwise insert it as a dependency: - - name: 'Update dependencies in package.json' - run: | - PKG_VERSION=$(npm view @stdlib/error-tools-fmtprodmsg version) - if grep -q '"@stdlib/string-format"' package.json; then - sed -i "s/\"@stdlib\/string-format\": \"^.*\"/\"@stdlib\/error-tools-fmtprodmsg\": \"^$PKG_VERSION\"/g" package.json - else - node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );" - fi - - # Configure Git: - - name: 'Configure Git' - run: | - git config --local user.email "noreply@stdlib.io" - git config --local user.name "stdlib-bot" - - # Commit changes: - - name: 'Commit changes' - run: | - git add -A - git commit -m "Transform error messages" - - # Push changes: - - name: 'Push changes' - run: | - SLUG=${{ github.repository }} - echo "Pushing changes to $SLUG..." - git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" production --force - - # Define a job for running tests of the productionized code... - test: - - # Define a display name: - name: 'Run Tests' - - # Define the type of virtual host machine: - runs-on: 'ubuntu-latest' - - # Indicate that this job depends on the prior job finishing: - needs: productionize - - # Run this job regardless of the outcome of the prior job: - if: always() - - # Define the sequence of job steps... - steps: - - # Checkout the repository: - - name: 'Checkout repository' - if: ${{ github.event.inputs.require-passing-tests == 'true' }} - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - with: - # Use the `production` branch: - ref: production - - # Install Node.js: - - name: 'Install Node.js' - if: ${{ github.event.inputs.require-passing-tests == 'true' }} - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Install dependencies: - - name: 'Install production and development dependencies' - if: ${{ github.event.inputs.require-passing-tests == 'true' }} - id: install - run: | - npm install || npm install || npm install - timeout-minutes: 15 - - # Build native add-on if present: - - name: 'Build native add-on (if present)' - if: ${{ github.event.inputs.require-passing-tests == 'true' }} - run: | - if [ -f "binding.gyp" ]; then - npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild - fi - - # Run tests: - - name: 'Run tests' - if: ${{ github.event.inputs.require-passing-tests == 'true' }} - id: tests - run: | - npm test || npm test || npm test - - # Define job to create a bundle for use in Deno... - deno: - - # Define display name: - name: 'Create Deno bundle' - - # Define the type of virtual host machine on which to run the job: - runs-on: ubuntu-latest - - # Indicate that this job depends on the test job finishing: - needs: test - - # Define the sequence of job steps... - steps: - # Checkout the repository: - - name: 'Checkout repository' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - - # Configure Git: - - name: 'Configure Git' - run: | - git config --local user.email "noreply@stdlib.io" - git config --local user.name "stdlib-bot" - - # Check if remote `deno` branch exists: - - name: 'Check if remote `deno` branch exists' - id: deno-branch-exists - continue-on-error: true - run: | - git fetch --all - git ls-remote --exit-code --heads origin deno - if [ $? -eq 0 ]; then - echo "remote-exists=true" >> $GITHUB_OUTPUT - else - echo "remote-exists=false" >> $GITHUB_OUTPUT - fi - - # If `deno` exists, delete everything in branch and merge `production` into it - - name: 'If `deno` exists, delete everything in branch and merge `production` into it' - if: steps.deno-branch-exists.outputs.remote-exists - run: | - git checkout -b deno origin/deno - - find . -type 'f' | grep -v -e ".git/" -e "package.json" -e "README.md" -e "LICENSE" -e "CONTRIBUTORS" -e "NOTICE" | xargs -r rm - find . -mindepth 1 -type 'd' | grep -v -e ".git" | xargs -r rm -rf - - git add -A - git commit -m "Remove files" --allow-empty - - git config merge.theirs.name 'simulate `-s theirs`' - git config merge.theirs.driver 'cat %B > %A' - GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories - - # Copy files from `production` branch if necessary: - git checkout origin/production -- . - if [ -n "$(git status --porcelain)" ]; then - git add -A - git commit -m "Auto-generated commit" - fi - - # If `deno` does not exist, create `deno` branch: - - name: 'If `deno` does not exist, create `deno` branch' - if: ${{ steps.deno-branch-exists.outputs.remote-exists == false }} - run: | - git checkout production - git checkout -b deno - - # Copy files to deno directory: - - name: 'Copy files to deno directory' - run: | - mkdir -p deno - cp README.md LICENSE CONTRIBUTORS NOTICE ./deno - - # Copy TypeScript definitions to deno directory: - if [ -d index.d.ts ]; then - cp index.d.ts ./deno/index.d.ts - fi - if [ -e ./docs/types/index.d.ts ]; then - cp ./docs/types/index.d.ts ./deno/mod.d.ts - fi - - # Install Node.js: - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Install dependencies: - - name: Install production and development dependencies - id: install - run: | - npm install || npm install || npm install - timeout-minutes: 15 - - # Bundle package for use in Deno: - - name: 'Bundle package for Deno' - id: deno-bundle - uses: stdlib-js/bundle-action@main - with: - target: 'deno' - - # Rewrite file contents: - - name: 'Rewrite file contents' - run: | - # Replace links to other packages with links to the deno branch: - find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/deno/"; - - # Replace reference to `@stdlib/types` with CDN link: - find ./deno -type f -name '*.ts' -print0 | xargs -0 -r sed -Ei "s/\/\/\/ /\/\/\/ /g" - - # Change wording of project description to avoid reference to JavaScript and Node.js: - find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/a standard library for JavaScript and Node.js, /a standard library /g" - - # Rewrite all `require()`s to use jsDelivr links: - find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/require\( '@stdlib\// { - s/(var|let|const)\s+([a-z0-9_]+)\s+=\s*require\( '([^']+)' \);/import \2 from \'\3\';/i - s/@stdlib/https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js/ - s/';/@deno\/mod.js';/ - }" - - # Rewrite first `import` to show importing of named exports if available: - exports=$(cat lib/index.js | \ - grep -E 'setReadOnly\(.*,.*,.*\)' | \ - sed -E 's/setReadOnly\((.*),(.*),(.*)\);/\2/' | \ - sed -E "s/'//g" | \ - sort) - if [ -n "$exports" ]; then - find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/\`\`\`javascript\nimport\s+([a-zA-Z0-9_]+)\s+from\s*'([^']+)';\n\`\`\`/\`\`\`javascript\nimport \1 from '\2';\n\`\`\`\n\nYou can also import the following named exports from the package:\n\n\`\`\`javascript\nimport { $(echo $exports | sed -E 's/ /, /g') } from '\2';\n\`\`\`/" - fi - - # Remove `installation`, `cli`, and `c` sections: - find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/
[^<]+<\/section>//g;" - find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?
[\s\S]+<\!\-\- \/.cli \-\->//g" - find ./deno -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?
[\s\S]+<\!\-\- \/.c \-\->//g" - - # Create package.json file for deno branch: - jq --indent 2 '{"name": .name, "version": .version, "description": .description, "license": .license, "type": "module", "main": "./mod.js", "homepage": .homepage, "repository": .repository, "bugs": .bugs, "keywords": .keywords, "funding": .funding}' package.json > ./deno/package.json - - # Delete everything in current directory aside from deno folder: - - name: 'Delete everything in current directory aside from deno folder' - run: | - find . -type 'f' | grep -v -e "deno" -e ".git/" | xargs -r rm - find . -mindepth 1 -type 'd' | grep -v -e "deno" -e ".git" | xargs -r rm -rf - - # Move deno directory to root: - - name: 'Move deno directory to root' - run: | - mv ./deno/* . - rmdir ./deno - - # Commit changes: - - name: 'Commit changes' - run: | - git add -A - git commit -m "Auto-generated commit" - - # Push changes to `deno` branch: - - name: 'Push changes to `deno` branch' - run: | - SLUG=${{ github.repository }} - echo "Pushing changes to $SLUG..." - git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$SLUG.git" deno - - # Send notification to Zulip if job fails: - - name: 'Send notification to Zulip in case of failure' - # Pin action to full length commit SHA - uses: zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5 # v1.0.2 - if: failure() - with: - api-key: ${{ secrets.ZULIP_API_KEY }} - email: 'github-actions-bot@stdlib.zulipchat.com' - organization-url: 'https://stdlib.zulipchat.com' - to: 'workflows-standalone' - type: 'stream' - topic: ${{ github.event.repository.name }} - content: | - :cross_mark: **${{ github.workflow }}** workflow failed - - **Repository:** [${{ github.repository }}](${{ github.server_url }}/${{ github.repository }}) - **Run:** [View workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) - - # Define job to create a UMD bundle... - umd: - - # Define display name: - name: 'Create UMD bundle' - - # Define the type of virtual host machine on which to run the job: - runs-on: ubuntu-latest - - # Indicate that this job depends on the test job finishing: - needs: test - - # Define the sequence of job steps... - steps: - # Checkout the repository: - - name: 'Checkout repository' - # Pin action to full length commit SHA - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - - # Configure Git: - - name: 'Configure Git' - run: | - git config --local user.email "noreply@stdlib.io" - git config --local user.name "stdlib-bot" - - # Check if remote `umd` branch exists: - - name: 'Check if remote `umd` branch exists' - id: umd-branch-exists - continue-on-error: true - run: | - git fetch --all - git ls-remote --exit-code --heads origin umd - if [ $? -eq 0 ]; then - echo "remote-exists=true" >> $GITHUB_OUTPUT - else - echo "remote-exists=false" >> $GITHUB_OUTPUT - fi - - # If `umd` exists, delete everything in branch and merge `production` into it - - name: 'If `umd` exists, delete everything in branch and merge `production` into it' - if: steps.umd-branch-exists.outputs.remote-exists - run: | - git checkout -b umd origin/umd - - find . -type 'f' | grep -v -e ".git/" -e "package.json" -e "README.md" -e "LICENSE" -e "CONTRIBUTORS" -e "NOTICE" | xargs -r rm - find . -mindepth 1 -type 'd' | grep -v -e ".git" | xargs -r rm -rf - - git add -A - git commit -m "Remove files" --allow-empty - - git config merge.theirs.name 'simulate `-s theirs`' - git config merge.theirs.driver 'cat %B > %A' - GIT_CONFIG_PARAMETERS="'merge.default=theirs'" git merge origin/production --allow-unrelated-histories - - # Copy files from `production` branch if necessary: - git checkout origin/production -- . - if [ -n "$(git status --porcelain)" ]; then - git add -A - git commit -m "Auto-generated commit" - fi - - # If `umd` does not exist, create `umd` branch: - - name: 'If `umd` does not exist, create `umd` branch' - if: ${{ steps.umd-branch-exists.outputs.remote-exists == false }} - run: | - git checkout production - git checkout -b umd - - # Copy files to umd directory: - - name: 'Copy files to umd directory' - run: | - mkdir -p umd - cp README.md LICENSE CONTRIBUTORS NOTICE ./umd - - # Install Node.js - - name: 'Install Node.js' - # Pin action to full length commit SHA - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 - with: - node-version: 20 - timeout-minutes: 5 - - # Install dependencies: - - name: 'Install production and development dependencies' - id: install - run: | - npm install || npm install || npm install - timeout-minutes: 15 - - # Extract alias: - - name: 'Extract alias' - id: extract-alias - run: | - alias=$(grep -E 'require\(' README.md | head -n 1 | sed -E 's/^var ([a-zA-Z0-9_]+) = .+/\1/') - echo "alias=${alias}" >> $GITHUB_OUTPUT - - # Create Universal Module Definition (UMD) Node.js bundle: - - name: 'Create Universal Module Definition (UMD) Node.js bundle' - id: umd-bundle-node - uses: stdlib-js/bundle-action@main - with: - target: 'umd-node' - alias: ${{ steps.extract-alias.outputs.alias }} - - # Create Universal Module Definition (UMD) browser bundle: - - name: 'Create Universal Module Definition (UMD) browser bundle' - id: umd-bundle-browser - uses: stdlib-js/bundle-action@main - with: - target: 'umd-browser' - alias: ${{ steps.extract-alias.outputs.alias }} - - # Rewrite file contents: - - name: 'Rewrite file contents' - run: | - - # Replace links to other packages with links to the umd branch: - find ./umd -type f -name '*.md' -print0 | xargs -0 sed -Ei "/\/tree\/main/b; /^\[@stdlib[^:]+: https:\/\/github.com\/stdlib-js\// s/(.*)/\\1\/tree\/umd/"; - - # Remove `installation`, `cli`, and `c` sections: - find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/
[^<]+<\/section>//g;" - find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?
[\s\S]+<\!\-\- \/.cli \-\->//g" - find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?
[\s\S]+<\!\-\- \/.c \-\->//g" - - # Rewrite first `require()` to show consumption of the UMD bundle in Observable and via a `script` tag: - find ./umd -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/\`\`\`javascript\n(var|let|const)\s+([a-zA-Z0-9_]+)\s+=\s*require\( '\@stdlib\/([^']+)' \);\n\`\`\`/To use in Observable,\n\n\`\`\`javascript\n\2 = require\( 'https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js\/\3\@umd\/browser.js' \)\n\`\`\`\n\nTo vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:\n\n\`\`\`javascript\nvar \2 = require\( 'path\/to\/vendor\/umd\/\3\/index.js' \)\n\`\`\`\n\nTo include the bundle in a webpage,\n\n\`\`\`html\n +``` + +If no recognized module system is present, access bundle contents via the global scope: + +```html + ``` #### ns @@ -95,11 +106,21 @@ var o = ns; -```javascript -var objectKeys = require( '@stdlib/utils/keys' ); -var ns = require( '@stdlib/error' ); +```html + + + + + + + + ```
diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index 9702d4c..0000000 --- a/SECURITY.md +++ /dev/null @@ -1,5 +0,0 @@ -# Security - -> Policy for reporting security vulnerabilities. - -See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security). diff --git a/branches.md b/branches.md deleted file mode 100644 index b8eb2bb..0000000 --- a/branches.md +++ /dev/null @@ -1,56 +0,0 @@ - - -# Branches - -This repository has the following branches: - -- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place. -- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network). -- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]). -- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]). -- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]). - -The following diagram illustrates the relationships among the above branches: - -```mermaid -graph TD; -A[stdlib]-->|generate standalone package|B; -B[main] -->|productionize| C[production]; -C -->|bundle| D[esm]; -C -->|bundle| E[deno]; -C -->|bundle| F[umd]; - -%% click A href "https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error" -%% click B href "https://github.com/stdlib-js/error/tree/main" -%% click C href "https://github.com/stdlib-js/error/tree/production" -%% click D href "https://github.com/stdlib-js/error/tree/esm" -%% click E href "https://github.com/stdlib-js/error/tree/deno" -%% click F href "https://github.com/stdlib-js/error/tree/umd" -``` - -[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error -[production-url]: https://github.com/stdlib-js/error/tree/production -[deno-url]: https://github.com/stdlib-js/error/tree/deno -[deno-readme]: https://github.com/stdlib-js/error/blob/deno/README.md -[umd-url]: https://github.com/stdlib-js/error/tree/umd -[umd-readme]: https://github.com/stdlib-js/error/blob/umd/README.md -[esm-url]: https://github.com/stdlib-js/error/tree/esm -[esm-readme]: https://github.com/stdlib-js/error/blob/esm/README.md \ No newline at end of file diff --git a/browser.js b/browser.js new file mode 100644 index 0000000..2a7dcb6 --- /dev/null +++ b/browser.js @@ -0,0 +1,3 @@ +// Copyright (c) 2026 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0 +!function(r,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(r="undefined"!=typeof globalThis?globalThis:r||self).ns=t()}(this,(function(){"use strict";var r="function"==typeof Object.defineProperty?Object.defineProperty:null;var t=Object.defineProperty;function e(r){return"number"==typeof r}function n(r){var t,e="";for(t=0;t0&&(e-=1),n=r.toExponential(e)):n=r.toPrecision(t.precision),t.alternate||(n=l.call(n,w,"$1e"),n=l.call(n,d,"e"),n=l.call(n,v,""));break;default:throw new Error("invalid double notation. Value: "+t.specifier)}return n=l.call(n,h,"e+0$1"),n=l.call(n,p,"e-0$1"),t.alternate&&(n=l.call(n,y,"$1."),n=l.call(n,g,"$1.e")),r>=0&&t.sign&&(n=t.sign+n),n=t.specifier===s.call(t.specifier)?s.call(n):c.call(n)}function m(r){var t,e="";for(t=0;t127)throw new Error("invalid character code. Value: "+i.arg);i.arg=_(f)?String(i.arg):E(f)}break;case"e":case"E":case"f":case"F":case"g":case"G":if(t||(i.precision=6),l=parseFloat(i.arg),!isFinite(l)){if(!e(i.arg))throw new Error("invalid floating-point number. Value: "+c);l=i.arg,i.padZeros=!1}i.arg=b(l,i);break;default:throw new Error("invalid specifier: "+i.specifier)}i.maxWidth>=0&&i.arg.length>i.maxWidth&&(i.arg=i.arg.substring(0,i.maxWidth)),i.padZeros?i.arg=o(i.arg,i.width||i.precision,i.padRight):i.width&&(i.arg=(y=i.arg,g=i.width,v=i.padRight,d=void 0,(d=g-y.length)<0?y:y=v?y+m(d):m(d)+y)),c+=i.arg||"",s+=1}return c}var T=/%(?:([1-9]\d*)\$)?([0 +\-#]*)(\*|\d+)?(?:(\.)(\*|\d+)?)?[hlL]?([%A-Za-z])/g;function j(r){var t={mapping:r[1]?parseInt(r[1],10):void 0,flags:r[2],width:r[3],precision:r[5],specifier:r[6]};return"."===r[4]&&void 0===r[5]&&(t.precision="1"),t}function O(r){var t,e,n,o;for(e=[],o=0,n=T.exec(r);n;)(t=r.slice(o,T.lastIndex-n[0].length)).length&&e.push(t),"%"===n[6]?e.push("%"):e.push(j(n)),o=T.lastIndex,n=T.exec(r);return(t=r.slice(o)).length&&e.push(t),e}function P(r){var t,e;if("string"!=typeof r)throw new TypeError(P("invalid argument. First argument must be a string. Value: `%s`.",r));for(t=[O(r)],e=1;egr&&dr(r)}function br(r){return or(r)&&wr(r)}function mr(r){return fr(r)&&wr(r.valueOf())}function Er(r){return br(r)||mr(r)}K(Er,"isPrimitive",br),K(Er,"isObject",mr);var Ar=Object.prototype.propertyIsEnumerable;var _r=!Ar.call("beep","0");function Rr(r,t){var e;return null!=r&&(!(e=Ar.call(r,t))&&_r&&nr(r)?!lr(t=+t)&&br(t)&&t>=0&&t=0&&r.length<=Tr&&G(r,"callee")&&!Rr(r,"callee")},Or=Array.prototype.slice;function Pr(r){return null!==r&&"object"==typeof r}K(Pr,"isObjectLikeArray",function(r){if("function"!=typeof r)throw new TypeError(P("invalid argument. Must provide a function. Value: `%s`.",r));return function(t){var e,n;if(!Sr(t))return!1;if(0===(e=t.length))return!1;for(n=0;n=0&&i.length<=Br||Q(r)))throw new TypeError(P("invalid argument. First argument must be an array-like object. Value: `%s`.",r));if(0===(n=r.length))return-1;if(3===arguments.length){if(!br(e))throw new TypeError(P("invalid argument. Third argument must be an integer. Value: `%s`.",e));if(e>=0){if(e>=n)return-1;o=e}else(o=n+e)<0&&(o=0)}else o=0;if(pr(t)){for(;o0&&!G(r,"0"))for(u=0;u=0}function ft(r){return mr(r)&&r.valueOf()>=0}function ct(r){return ut(r)||ft(r)}K(ct,"isPrimitive",ut),K(ct,"isObject",ft);var st=Object;function lt(r){return"function"===Jr(r)}var ht,pt=Object.getPrototypeOf;ht=lt(Object.getPrototypeOf)?pt:function(r){var t=function(r){return r.__proto__}(r);return t||null===t?t:"[object Function]"===H(r.constructor)?r.constructor.prototype:r instanceof st?st.prototype:null};var yt=ht;function gt(r){return null==r?null:(r=st(r),yt(r))}function vt(r){if("object"!=typeof r||null===r)return!1;if(r instanceof Error)return!0;for(;r;){if("[object Error]"===H(r))return!0;r=gt(r)}return!1}function dt(){return/^\/((?:\\\/|[^\/])+)\/([imgy]*)$/}K(dt,"REGEXP",/^\/((?:\\\/|[^\/])+)\/([imgy]*)$/);var wt=void 0!==Object.getOwnPropertyNames,bt=st.getOwnPropertyNames;var mt=wt?function(r){return bt(st(r))}:function(r){return it(st(r))},Et=void 0!==Object.getOwnPropertyDescriptor,At=Object.getOwnPropertyDescriptor;var _t=Et?function(r,t){var e;return null==r||void 0===(e=At(r,t))?null:e}:function(r,t){return G(r,t)?{configurable:!0,enumerable:!0,writable:!0,value:r[t]}:null},Rt="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},St=[],Tt=[],jt="undefined"!=typeof Uint8Array?Uint8Array:Array,Ot=!1;function Pt(){Ot=!0;for(var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",t=0;t<64;++t)St[t]=r[t],Tt[r.charCodeAt(t)]=t;Tt["-".charCodeAt(0)]=62,Tt["_".charCodeAt(0)]=63}function It(r,t,e){for(var n,o,i=[],a=t;a>18&63]+St[o>>12&63]+St[o>>6&63]+St[63&o]);return i.join("")}function Ut(r){var t;Ot||Pt();for(var e=r.length,n=e%3,o="",i=[],a=16383,u=0,f=e-n;uf?f:u+a));return 1===n?(t=r[e-1],o+=St[t>>2],o+=St[t<<4&63],o+="=="):2===n&&(t=(r[e-2]<<8)+r[e-1],o+=St[t>>10],o+=St[t>>4&63],o+=St[t<<2&63],o+="="),i.push(o),i.join("")}function Bt(r,t,e,n,o){var i,a,u=8*o-n-1,f=(1<>1,s=-7,l=e?o-1:0,h=e?-1:1,p=r[t+l];for(l+=h,i=p&(1<<-s)-1,p>>=-s,s+=u;s>0;i=256*i+r[t+l],l+=h,s-=8);for(a=i&(1<<-s)-1,i>>=-s,s+=n;s>0;a=256*a+r[t+l],l+=h,s-=8);if(0===i)i=1-c;else{if(i===f)return a?NaN:1/0*(p?-1:1);a+=Math.pow(2,n),i-=c}return(p?-1:1)*a*Math.pow(2,i-n)}function xt(r,t,e,n,o,i){var a,u,f,c=8*i-o-1,s=(1<>1,h=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:i-1,y=n?1:-1,g=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(u=isNaN(t)?1:0,a=s):(a=Math.floor(Math.log(t)/Math.LN2),t*(f=Math.pow(2,-a))<1&&(a--,f*=2),(t+=a+l>=1?h/f:h*Math.pow(2,1-l))*f>=2&&(a++,f/=2),a+l>=s?(u=0,a=s):a+l>=1?(u=(t*f-1)*Math.pow(2,o),a+=l):(u=t*Math.pow(2,l-1)*Math.pow(2,o),a=0));o>=8;r[e+p]=255&u,p+=y,u/=256,o-=8);for(a=a<0;r[e+p]=255&a,p+=y,a/=256,c-=8);r[e+p-y]|=128*g}var kt={}.toString,Yt=Array.isArray||function(r){return"[object Array]"==kt.call(r)};Lt.TYPED_ARRAY_SUPPORT=void 0===Rt.TYPED_ARRAY_SUPPORT||Rt.TYPED_ARRAY_SUPPORT;var Ct=Mt();function Mt(){return Lt.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function Ft(r,t){if(Mt()=Mt())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Mt().toString(16)+" bytes");return 0|r}function Gt(r){return!(null==r||!r._isBuffer)}function Xt(r,t){if(Gt(r))return r.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(r)||r instanceof ArrayBuffer))return r.byteLength;"string"!=typeof r&&(r=""+r);var e=r.length;if(0===e)return 0;for(var n=!1;;)switch(t){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":case void 0:return be(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*e;case"hex":return e>>>1;case"base64":return me(r).length;default:if(n)return be(r).length;t=(""+t).toLowerCase(),n=!0}}function Zt(r,t,e){var n=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===e||e>this.length)&&(e=this.length),e<=0)return"";if((e>>>=0)<=(t>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return fe(this,t,e);case"utf8":case"utf-8":return oe(this,t,e);case"ascii":return ae(this,t,e);case"latin1":case"binary":return ue(this,t,e);case"base64":return ne(this,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ce(this,t,e);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function Wt(r,t,e){var n=r[t];r[t]=r[e],r[e]=n}function Ht(r,t,e,n,o){if(0===r.length)return-1;if("string"==typeof e?(n=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),e=+e,isNaN(e)&&(e=o?0:r.length-1),e<0&&(e=r.length+e),e>=r.length){if(o)return-1;e=r.length-1}else if(e<0){if(!o)return-1;e=0}if("string"==typeof t&&(t=Lt.from(t,n)),Gt(t))return 0===t.length?-1:qt(r,t,e,n,o);if("number"==typeof t)return t&=255,Lt.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(r,t,e):Uint8Array.prototype.lastIndexOf.call(r,t,e):qt(r,[t],e,n,o);throw new TypeError("val must be string, number or Buffer")}function qt(r,t,e,n,o){var i,a=1,u=r.length,f=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||t.length<2)return-1;a=2,u/=2,f/=2,e/=2}function c(r,t){return 1===a?r[t]:r.readUInt16BE(t*a)}if(o){var s=-1;for(i=e;iu&&(e=u-f),i=e;i>=0;i--){for(var l=!0,h=0;ho&&(n=o):n=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");n>i/2&&(n=i/2);for(var a=0;a>8,o=e%256,i.push(o),i.push(n);return i}(t,r.length-e),r,e,n)}function ne(r,t,e){return 0===t&&e===r.length?Ut(r):Ut(r.slice(t,e))}function oe(r,t,e){e=Math.min(r.length,e);for(var n=[],o=t;o239?4:c>223?3:c>191?2:1;if(o+l<=e)switch(l){case 1:c<128&&(s=c);break;case 2:128==(192&(i=r[o+1]))&&(f=(31&c)<<6|63&i)>127&&(s=f);break;case 3:i=r[o+1],a=r[o+2],128==(192&i)&&128==(192&a)&&(f=(15&c)<<12|(63&i)<<6|63&a)>2047&&(f<55296||f>57343)&&(s=f);break;case 4:i=r[o+1],a=r[o+2],u=r[o+3],128==(192&i)&&128==(192&a)&&128==(192&u)&&(f=(15&c)<<18|(63&i)<<12|(63&a)<<6|63&u)>65535&&f<1114112&&(s=f)}null===s?(s=65533,l=1):s>65535&&(s-=65536,n.push(s>>>10&1023|55296),s=56320|1023&s),n.push(s),o+=l}return function(r){var t=r.length;if(t<=ie)return String.fromCharCode.apply(String,r);var e="",n=0;for(;n0&&(r=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(r+=" ... ")),""},Lt.prototype.compare=function(r,t,e,n,o){if(!Gt(r))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===e&&(e=r?r.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||e>r.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&t>=e)return 0;if(n>=o)return-1;if(t>=e)return 1;if(this===r)return 0;for(var i=(o>>>=0)-(n>>>=0),a=(e>>>=0)-(t>>>=0),u=Math.min(i,a),f=this.slice(n,o),c=r.slice(t,e),s=0;so)&&(e=o),r.length>0&&(e<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return Jt(this,r,t,e);case"utf8":case"utf-8":return Kt(this,r,t,e);case"ascii":return Qt(this,r,t,e);case"latin1":case"binary":return re(this,r,t,e);case"base64":return te(this,r,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ee(this,r,t,e);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},Lt.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var ie=4096;function ae(r,t,e){var n="";e=Math.min(r.length,e);for(var o=t;on)&&(e=n);for(var o="",i=t;ie)throw new RangeError("Trying to access beyond buffer length")}function le(r,t,e,n,o,i){if(!Gt(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||tr.length)throw new RangeError("Index out of range")}function he(r,t,e,n){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(r.length-e,2);o>>8*(n?o:1-o)}function pe(r,t,e,n){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(r.length-e,4);o>>8*(n?o:3-o)&255}function ye(r,t,e,n,o,i){if(e+n>r.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function ge(r,t,e,n,o){return o||ye(r,0,e,4),xt(r,t,e,n,23,4),e+4}function ve(r,t,e,n,o){return o||ye(r,0,e,8),xt(r,t,e,n,52,8),e+8}Lt.prototype.slice=function(r,t){var e,n=this.length;if((r=~~r)<0?(r+=n)<0&&(r=0):r>n&&(r=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t0&&(o*=256);)n+=this[r+--t]*o;return n},Lt.prototype.readUInt8=function(r,t){return t||se(r,1,this.length),this[r]},Lt.prototype.readUInt16LE=function(r,t){return t||se(r,2,this.length),this[r]|this[r+1]<<8},Lt.prototype.readUInt16BE=function(r,t){return t||se(r,2,this.length),this[r]<<8|this[r+1]},Lt.prototype.readUInt32LE=function(r,t){return t||se(r,4,this.length),(this[r]|this[r+1]<<8|this[r+2]<<16)+16777216*this[r+3]},Lt.prototype.readUInt32BE=function(r,t){return t||se(r,4,this.length),16777216*this[r]+(this[r+1]<<16|this[r+2]<<8|this[r+3])},Lt.prototype.readIntLE=function(r,t,e){r|=0,t|=0,e||se(r,t,this.length);for(var n=this[r],o=1,i=0;++i=(o*=128)&&(n-=Math.pow(2,8*t)),n},Lt.prototype.readIntBE=function(r,t,e){r|=0,t|=0,e||se(r,t,this.length);for(var n=t,o=1,i=this[r+--n];n>0&&(o*=256);)i+=this[r+--n]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},Lt.prototype.readInt8=function(r,t){return t||se(r,1,this.length),128&this[r]?-1*(255-this[r]+1):this[r]},Lt.prototype.readInt16LE=function(r,t){t||se(r,2,this.length);var e=this[r]|this[r+1]<<8;return 32768&e?4294901760|e:e},Lt.prototype.readInt16BE=function(r,t){t||se(r,2,this.length);var e=this[r+1]|this[r]<<8;return 32768&e?4294901760|e:e},Lt.prototype.readInt32LE=function(r,t){return t||se(r,4,this.length),this[r]|this[r+1]<<8|this[r+2]<<16|this[r+3]<<24},Lt.prototype.readInt32BE=function(r,t){return t||se(r,4,this.length),this[r]<<24|this[r+1]<<16|this[r+2]<<8|this[r+3]},Lt.prototype.readFloatLE=function(r,t){return t||se(r,4,this.length),Bt(this,r,!0,23,4)},Lt.prototype.readFloatBE=function(r,t){return t||se(r,4,this.length),Bt(this,r,!1,23,4)},Lt.prototype.readDoubleLE=function(r,t){return t||se(r,8,this.length),Bt(this,r,!0,52,8)},Lt.prototype.readDoubleBE=function(r,t){return t||se(r,8,this.length),Bt(this,r,!1,52,8)},Lt.prototype.writeUIntLE=function(r,t,e,n){(r=+r,t|=0,e|=0,n)||le(this,r,t,e,Math.pow(2,8*e)-1,0);var o=1,i=0;for(this[t]=255&r;++i=0&&(i*=256);)this[t+o]=r/i&255;return t+e},Lt.prototype.writeUInt8=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,1,255,0),Lt.TYPED_ARRAY_SUPPORT||(r=Math.floor(r)),this[t]=255&r,t+1},Lt.prototype.writeUInt16LE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,2,65535,0),Lt.TYPED_ARRAY_SUPPORT?(this[t]=255&r,this[t+1]=r>>>8):he(this,r,t,!0),t+2},Lt.prototype.writeUInt16BE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,2,65535,0),Lt.TYPED_ARRAY_SUPPORT?(this[t]=r>>>8,this[t+1]=255&r):he(this,r,t,!1),t+2},Lt.prototype.writeUInt32LE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,4,4294967295,0),Lt.TYPED_ARRAY_SUPPORT?(this[t+3]=r>>>24,this[t+2]=r>>>16,this[t+1]=r>>>8,this[t]=255&r):pe(this,r,t,!0),t+4},Lt.prototype.writeUInt32BE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,4,4294967295,0),Lt.TYPED_ARRAY_SUPPORT?(this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=255&r):pe(this,r,t,!1),t+4},Lt.prototype.writeIntLE=function(r,t,e,n){if(r=+r,t|=0,!n){var o=Math.pow(2,8*e-1);le(this,r,t,e,o-1,-o)}var i=0,a=1,u=0;for(this[t]=255&r;++i>0)-u&255;return t+e},Lt.prototype.writeIntBE=function(r,t,e,n){if(r=+r,t|=0,!n){var o=Math.pow(2,8*e-1);le(this,r,t,e,o-1,-o)}var i=e-1,a=1,u=0;for(this[t+i]=255&r;--i>=0&&(a*=256);)r<0&&0===u&&0!==this[t+i+1]&&(u=1),this[t+i]=(r/a>>0)-u&255;return t+e},Lt.prototype.writeInt8=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,1,127,-128),Lt.TYPED_ARRAY_SUPPORT||(r=Math.floor(r)),r<0&&(r=255+r+1),this[t]=255&r,t+1},Lt.prototype.writeInt16LE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,2,32767,-32768),Lt.TYPED_ARRAY_SUPPORT?(this[t]=255&r,this[t+1]=r>>>8):he(this,r,t,!0),t+2},Lt.prototype.writeInt16BE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,2,32767,-32768),Lt.TYPED_ARRAY_SUPPORT?(this[t]=r>>>8,this[t+1]=255&r):he(this,r,t,!1),t+2},Lt.prototype.writeInt32LE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,4,2147483647,-2147483648),Lt.TYPED_ARRAY_SUPPORT?(this[t]=255&r,this[t+1]=r>>>8,this[t+2]=r>>>16,this[t+3]=r>>>24):pe(this,r,t,!0),t+4},Lt.prototype.writeInt32BE=function(r,t,e){return r=+r,t|=0,e||le(this,r,t,4,2147483647,-2147483648),r<0&&(r=4294967295+r+1),Lt.TYPED_ARRAY_SUPPORT?(this[t]=r>>>24,this[t+1]=r>>>16,this[t+2]=r>>>8,this[t+3]=255&r):pe(this,r,t,!1),t+4},Lt.prototype.writeFloatLE=function(r,t,e){return ge(this,r,t,!0,e)},Lt.prototype.writeFloatBE=function(r,t,e){return ge(this,r,t,!1,e)},Lt.prototype.writeDoubleLE=function(r,t,e){return ve(this,r,t,!0,e)},Lt.prototype.writeDoubleBE=function(r,t,e){return ve(this,r,t,!1,e)},Lt.prototype.copy=function(r,t,e,n){if(e||(e=0),n||0===n||(n=this.length),t>=r.length&&(t=r.length),t||(t=0),n>0&&n=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),r.length-t=0;--o)r[o+t]=this[o+e];else if(i<1e3||!Lt.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,e=void 0===e?this.length:e>>>0,r||(r=0),"number"==typeof r)for(i=t;i55295&&e<57344){if(!o){if(e>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===n){(t-=3)>-1&&i.push(239,191,189);continue}o=e;continue}if(e<56320){(t-=3)>-1&&i.push(239,191,189),o=e;continue}e=65536+(o-55296<<10|e-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,e<128){if((t-=1)<0)break;i.push(e)}else if(e<2048){if((t-=2)<0)break;i.push(e>>6|192,63&e|128)}else if(e<65536){if((t-=3)<0)break;i.push(e>>12|224,e>>6&63|128,63&e|128)}else{if(!(e<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(e>>18|240,e>>12&63|128,e>>6&63|128,63&e|128)}}return i}function me(r){return function(r){var t,e,n,o,i,a;Ot||Pt();var u=r.length;if(u%4>0)throw new Error("Invalid string. Length must be a multiple of 4");i="="===r[u-2]?2:"="===r[u-1]?1:0,a=new jt(3*u/4-i),n=i>0?u-4:u;var f=0;for(t=0,e=0;t>16&255,a[f++]=o>>8&255,a[f++]=255&o;return 2===i?(o=Tt[r.charCodeAt(t)]<<2|Tt[r.charCodeAt(t+1)]>>4,a[f++]=255&o):1===i&&(o=Tt[r.charCodeAt(t)]<<10|Tt[r.charCodeAt(t+1)]<<4|Tt[r.charCodeAt(t+2)]>>2,a[f++]=o>>8&255,a[f++]=255&o),a}(function(r){if((r=function(r){return r.trim?r.trim():r.replace(/^\s+|\s+$/g,"")}(r).replace(de,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function Ee(r,t,e,n){for(var o=0;o=t.length||o>=r.length);++o)t[o+e]=r[o];return o}function Ae(r){return null!=r&&(!!r._isBuffer||_e(r)||function(r){return"function"==typeof r.readFloatLE&&"function"==typeof r.slice&&_e(r.slice(0,0))}(r))}function _e(r){return!!r.constructor&&"function"==typeof r.constructor.isBuffer&&r.constructor.isBuffer(r)}var Re=Object.freeze({__proto__:null,Buffer:Lt,INSPECT_MAX_BYTES:50,SlowBuffer:function(r){return+r!=r&&(r=0),Lt.alloc(+r)},isBuffer:Ae,kMaxLength:Ct}),Se=Lt;function Te(r){if(r.__esModule)return r;var t=r.default;if("function"==typeof t){var e=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};e.prototype=t.prototype}else e={};return Object.defineProperty(e,"__esModule",{value:!0}),Object.keys(r).forEach((function(t){var n=Object.getOwnPropertyDescriptor(r,t);Object.defineProperty(e,t,n.get?n:{enumerable:!0,get:function(){return r[t]}})})),e}var je,Oe=Te(Re).Buffer;je=function(){var r,t;if("function"!=typeof Se)return!1;try{r=Hr(t="function"==typeof Se.from?Se.from([1,2,3,4]):new Se([1,2,3,4]))&&1===t[0]&&2===t[1]&&3===t[2]&&4===t[3]}catch(t){r=!1}return r}()?Oe:function(){throw new Error("not implemented")};var Pe=je;var Ie=lt(Pe.from)?function(r){if(!Hr(r))throw new TypeError(P("invalid argument. Must provide a Buffer. Value: `%s`.",r));return Pe.from(r)}:function(r){if(!Hr(r))throw new TypeError(P("invalid argument. Must provide a Buffer. Value: `%s`.",r));return new Pe(r)},Ue="function"==typeof Int8Array;var Be="function"==typeof Int8Array?Int8Array:null;var xe,ke="function"==typeof Int8Array?Int8Array:void 0;xe=function(){var r,t,e;if("function"!=typeof Be)return!1;try{t=new Be([1,3.14,-3.14,128]),e=t,r=(Ue&&e instanceof Int8Array||"[object Int8Array]"===H(e))&&1===t[0]&&3===t[1]&&-3===t[2]&&-128===t[3]}catch(t){r=!1}return r}()?ke:function(){throw new Error("not implemented")};var Ye=xe,Ce="function"==typeof Uint8Array;var Me="function"==typeof Uint8Array?Uint8Array:null;var Fe,Le="function"==typeof Uint8Array?Uint8Array:void 0;Fe=function(){var r,t,e;if("function"!=typeof Me)return!1;try{t=new Me(t=[1,3.14,-3.14,256,257]),e=t,r=(Ce&&e instanceof Uint8Array||"[object Uint8Array]"===H(e))&&1===t[0]&&3===t[1]&&253===t[2]&&0===t[3]&&1===t[4]}catch(t){r=!1}return r}()?Le:function(){throw new Error("not implemented")};var De=Fe,Ne="function"==typeof Uint8ClampedArray;var Ve="function"==typeof Uint8ClampedArray?Uint8ClampedArray:null;var ze,$e="function"==typeof Uint8ClampedArray?Uint8ClampedArray:void 0;ze=function(){var r,t,e;if("function"!=typeof Ve)return!1;try{t=new Ve([-1,0,1,3.14,4.99,255,256]),e=t,r=(Ne&&e instanceof Uint8ClampedArray||"[object Uint8ClampedArray]"===H(e))&&0===t[0]&&0===t[1]&&1===t[2]&&3===t[3]&&5===t[4]&&255===t[5]&&255===t[6]}catch(t){r=!1}return r}()?$e:function(){throw new Error("not implemented")};var Ge=ze,Xe="function"==typeof Int16Array;var Ze="function"==typeof Int16Array?Int16Array:null;var We,He="function"==typeof Int16Array?Int16Array:void 0;We=function(){var r,t,e;if("function"!=typeof Ze)return!1;try{t=new Ze([1,3.14,-3.14,32768]),e=t,r=(Xe&&e instanceof Int16Array||"[object Int16Array]"===H(e))&&1===t[0]&&3===t[1]&&-3===t[2]&&-32768===t[3]}catch(t){r=!1}return r}()?He:function(){throw new Error("not implemented")};var qe=We,Je="function"==typeof Uint16Array;var Ke="function"==typeof Uint16Array?Uint16Array:null;var Qe,rn="function"==typeof Uint16Array?Uint16Array:void 0;Qe=function(){var r,t,e;if("function"!=typeof Ke)return!1;try{t=new Ke(t=[1,3.14,-3.14,65536,65537]),e=t,r=(Je&&e instanceof Uint16Array||"[object Uint16Array]"===H(e))&&1===t[0]&&3===t[1]&&65533===t[2]&&0===t[3]&&1===t[4]}catch(t){r=!1}return r}()?rn:function(){throw new Error("not implemented")};var tn=Qe,en="function"==typeof Int32Array;var nn="function"==typeof Int32Array?Int32Array:null;var on,an="function"==typeof Int32Array?Int32Array:void 0;on=function(){var r,t,e;if("function"!=typeof nn)return!1;try{t=new nn([1,3.14,-3.14,2147483648]),e=t,r=(en&&e instanceof Int32Array||"[object Int32Array]"===H(e))&&1===t[0]&&3===t[1]&&-3===t[2]&&-2147483648===t[3]}catch(t){r=!1}return r}()?an:function(){throw new Error("not implemented")};var un=on,fn="function"==typeof Uint32Array;var cn="function"==typeof Uint32Array?Uint32Array:null;var sn,ln="function"==typeof Uint32Array?Uint32Array:void 0;sn=function(){var r,t,e;if("function"!=typeof cn)return!1;try{t=new cn(t=[1,3.14,-3.14,4294967296,4294967297]),e=t,r=(fn&&e instanceof Uint32Array||"[object Uint32Array]"===H(e))&&1===t[0]&&3===t[1]&&4294967293===t[2]&&0===t[3]&&1===t[4]}catch(t){r=!1}return r}()?ln:function(){throw new Error("not implemented")};var hn=sn,pn="function"==typeof Float32Array;var yn="function"==typeof Float32Array?Float32Array:null;var gn,vn="function"==typeof Float32Array?Float32Array:void 0;gn=function(){var r,t,e;if("function"!=typeof yn)return!1;try{t=new yn([1,3.14,-3.14,5e40]),e=t,r=(pn&&e instanceof Float32Array||"[object Float32Array]"===H(e))&&1===t[0]&&3.140000104904175===t[1]&&-3.140000104904175===t[2]&&t[3]===yr}catch(t){r=!1}return r}()?vn:function(){throw new Error("not implemented")};var dn=gn,wn="function"==typeof Float64Array;var bn="function"==typeof Float64Array?Float64Array:null;var mn,En="function"==typeof Float64Array?Float64Array:void 0;mn=function(){var r,t,e;if("function"!=typeof bn)return!1;try{t=new bn([1,3.14,-3.14,NaN]),e=t,r=(wn&&e instanceof Float64Array||"[object Float64Array]"===H(e))&&1===t[0]&&3.14===t[1]&&-3.14===t[2]&&t[3]!=t[3]}catch(t){r=!1}return r}()?En:function(){throw new Error("not implemented")};var An=mn;function _n(r){return new Ye(r)}function Rn(r){return new De(r)}function Sn(r){return new Ge(r)}function Tn(r){return new qe(r)}function jn(r){return new tn(r)}function On(r){return new un(r)}function Pn(r){return new hn(r)}function In(r){return new dn(r)}function Un(r){return new An(r)}var Bn={int8array:_n,uint8array:Rn,uint8clampedarray:Sn,int16array:Tn,uint16array:jn,int32array:On,uint32array:Pn,float32array:In,float64array:Un};function xn(r,t,e,n,o){var i,a,u,f,c,s,l,h,p,y;if(o-=1,"object"!=typeof r||null===r)return r;if(Hr(r))return Ie(r);if(vt(r))return function(r){var t,e,n,o,i,a,u=[],f=[];for(i=new r.constructor(r.message),u.push(r),f.push(i),r.stack&&(i.stack=r.stack),r.code&&(i.code=r.code),r.errno&&(i.errno=r.errno),r.syscall&&(i.syscall=r.syscall),t=it(r),a=0;a0)for(i=u,y=0;y1){if(!ut(t))throw new TypeError(P("invalid argument. Second argument must be a nonnegative integer. Value: `%s`.",t));if(0===t)return r}else t=yr;return xn(r,e=Sr(r)?new Array(r.length):{},[r],[e],t)}function Yn(){return"function"==typeof X&&"symbol"==typeof X("foo")&&G(X,"hasInstance")&&"symbol"==typeof X.hasInstance}var Cn=Yn()?Symbol.hasInstance:null,Mn=Yn();function Fn(r,t){if("function"!=typeof t&&(!Mn||"object"!=typeof t||"function"!=typeof t[Cn]))throw new TypeError(P("invalid argument. Second argument must be callable. Value: `%s`.",t));return r instanceof t}var Ln=[[TypeError,"TypeError"],[SyntaxError,"SyntaxError"],[ReferenceError,"ReferenceError"],[RangeError,"RangeError"],[URIError,"URIError"],[EvalError,"EvalError"],[Error,"Error"]];var Dn={};return F(Dn,"reviveError",(function(r,t){var e,n,o,i,a,u;if(t&&t.type&&Q(t.message)&&(n=at[t.type])){for(i=new n(t.message),o=it(t),u=0;u 0 ) {\n\t\t\t\tdigits -= 1;\n\t\t\t}\n\t\t\tout = f.toExponential( digits );\n\t\t} else {\n\t\t\tout = f.toPrecision( token.precision );\n\t\t}\n\t\tif ( !token.alternate ) {\n\t\t\tout = replace.call( out, RE_ZERO_BEFORE_EXP, '$1e' );\n\t\t\tout = replace.call( out, RE_PERIOD_ZERO_EXP, 'e' );\n\t\t\tout = replace.call( out, RE_TRAILING_PERIOD_ZERO, '' );\n\t\t}\n\t\tbreak;\n\tdefault:\n\t\tthrow new Error( 'invalid double notation. Value: ' + token.specifier );\n\t}\n\tout = replace.call( out, RE_EXP_POS_DIGITS, 'e+0$1' );\n\tout = replace.call( out, RE_EXP_NEG_DIGITS, 'e-0$1' );\n\tif ( token.alternate ) {\n\t\tout = replace.call( out, RE_ONLY_DIGITS, '$1.' );\n\t\tout = replace.call( out, RE_DIGITS_BEFORE_EXP, '$1.e' );\n\t}\n\tif ( f >= 0 && token.sign ) {\n\t\tout = token.sign + out;\n\t}\n\tout = ( token.specifier === uppercase.call( token.specifier ) ) ?\n\t\tuppercase.call( out ) :\n\t\tlowercase.call( out );\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default formatDouble;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\n/**\n* Returns `n` spaces.\n*\n* @private\n* @param {number} n - number of spaces\n* @returns {string} string of spaces\n*/\nfunction spaces( n ) {\n\tvar out = '';\n\tvar i;\n\tfor ( i = 0; i < n; i++ ) {\n\t\tout += ' ';\n\t}\n\treturn out;\n}\n\n\n// MAIN //\n\n/**\n* Pads a token with spaces to the specified width.\n*\n* @private\n* @param {string} str - token argument\n* @param {number} width - token width\n* @param {boolean} [right=false] - boolean indicating whether to pad to the right\n* @returns {string} padded token argument\n*/\nfunction spacePad( str, width, right ) {\n\tvar pad = width - str.length;\n\tif ( pad < 0 ) {\n\t\treturn str;\n\t}\n\tstr = ( right ) ?\n\t\tstr + spaces( pad ) :\n\t\tspaces( pad ) + str;\n\treturn str;\n}\n\n\n// EXPORTS //\n\nexport default spacePad;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport formatInteger from './format_integer.js';\nimport isString from './is_string.js';\nimport isNumber from './is_number.js';\nimport formatDouble from './format_double.js';\nimport spacePad from './space_pad.js';\nimport zeroPad from './zero_pad.js';\n\n\n// VARIABLES //\n\nvar fromCharCode = String.fromCharCode;\nvar isArray = Array.isArray; // NOTE: We use the global `Array.isArray` function here instead of `@stdlib/assert/is-array` to avoid circular dependencies.\n\n\n// FUNCTIONS //\n\n/**\n* Returns a boolean indicating whether a value is `NaN`.\n*\n* @private\n* @param {*} value - input value\n* @returns {boolean} boolean indicating whether a value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 4 );\n* // returns false\n*/\nfunction isnan( value ) { // explicitly define a function here instead of `@stdlib/math/base/assert/is-nan` in order to avoid circular dependencies\n\treturn ( value !== value );\n}\n\n/**\n* Initializes token object with properties of supplied format identifier object or default values if not present.\n*\n* @private\n* @param {Object} token - format identifier object\n* @returns {Object} token object\n*/\nfunction initialize( token ) {\n\tvar out = {};\n\tout.specifier = token.specifier;\n\tout.precision = ( token.precision === void 0 ) ? 1 : token.precision;\n\tout.width = token.width;\n\tout.flags = token.flags || '';\n\tout.mapping = token.mapping;\n\treturn out;\n}\n\n\n// MAIN //\n\n/**\n* Generates string from a token array by interpolating values.\n*\n* @param {Array} tokens - string parts and format identifier objects\n* @param {Array} ...args - variable values\n* @throws {TypeError} first argument must be an array\n* @throws {Error} invalid flags\n* @returns {string} formatted string\n*\n* @example\n* var tokens = [ 'beep ', { 'specifier': 's' } ];\n* var out = formatInterpolate( tokens, 'boop' );\n* // returns 'beep boop'\n*/\nfunction formatInterpolate( tokens ) {\n\tvar hasPeriod;\n\tvar flags;\n\tvar token;\n\tvar flag;\n\tvar num;\n\tvar out;\n\tvar pos;\n\tvar f;\n\tvar i;\n\tvar j;\n\n\tif ( !isArray( tokens ) ) {\n\t\tthrow new TypeError( 'invalid argument. First argument must be an array. Value: `' + tokens + '`.' );\n\t}\n\tout = '';\n\tpos = 1;\n\tfor ( i = 0; i < tokens.length; i++ ) {\n\t\ttoken = tokens[ i ];\n\t\tif ( isString( token ) ) {\n\t\t\tout += token;\n\t\t} else {\n\t\t\thasPeriod = token.precision !== void 0;\n\t\t\ttoken = initialize( token );\n\t\t\tif ( !token.specifier ) {\n\t\t\t\tthrow new TypeError( 'invalid argument. Token is missing `specifier` property. Index: `'+ i +'`. Value: `' + token + '`.' );\n\t\t\t}\n\t\t\tif ( token.mapping ) {\n\t\t\t\tpos = token.mapping;\n\t\t\t}\n\t\t\tflags = token.flags;\n\t\t\tfor ( j = 0; j < flags.length; j++ ) {\n\t\t\t\tflag = flags.charAt( j );\n\t\t\t\tswitch ( flag ) {\n\t\t\t\tcase ' ':\n\t\t\t\t\ttoken.sign = ' ';\n\t\t\t\t\tbreak;\n\t\t\t\tcase '+':\n\t\t\t\t\ttoken.sign = '+';\n\t\t\t\t\tbreak;\n\t\t\t\tcase '-':\n\t\t\t\t\ttoken.padRight = true;\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase '0':\n\t\t\t\t\ttoken.padZeros = flags.indexOf( '-' ) < 0; // NOTE: We use built-in `Array.prototype.indexOf` here instead of `@stdlib/assert/contains` in order to avoid circular dependencies.\n\t\t\t\t\tbreak;\n\t\t\t\tcase '#':\n\t\t\t\t\ttoken.alternate = true;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tthrow new Error( 'invalid flag: ' + flag );\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( token.width === '*' ) {\n\t\t\t\ttoken.width = parseInt( arguments[ pos ], 10 );\n\t\t\t\tpos += 1;\n\t\t\t\tif ( isnan( token.width ) ) {\n\t\t\t\t\tthrow new TypeError( 'the argument for * width at position ' + pos + ' is not a number. Value: `' + token.width + '`.' );\n\t\t\t\t}\n\t\t\t\tif ( token.width < 0 ) {\n\t\t\t\t\ttoken.padRight = true;\n\t\t\t\t\ttoken.width = -token.width;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( hasPeriod ) {\n\t\t\t\tif ( token.precision === '*' ) {\n\t\t\t\t\ttoken.precision = parseInt( arguments[ pos ], 10 );\n\t\t\t\t\tpos += 1;\n\t\t\t\t\tif ( isnan( token.precision ) ) {\n\t\t\t\t\t\tthrow new TypeError( 'the argument for * precision at position ' + pos + ' is not a number. Value: `' + token.precision + '`.' );\n\t\t\t\t\t}\n\t\t\t\t\tif ( token.precision < 0 ) {\n\t\t\t\t\t\ttoken.precision = 1;\n\t\t\t\t\t\thasPeriod = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\ttoken.arg = arguments[ pos ];\n\t\t\tswitch ( token.specifier ) {\n\t\t\tcase 'b':\n\t\t\tcase 'o':\n\t\t\tcase 'x':\n\t\t\tcase 'X':\n\t\t\tcase 'd':\n\t\t\tcase 'i':\n\t\t\tcase 'u':\n\t\t\t\t// Case: %b (binary), %o (octal), %x, %X (hexadecimal), %d, %i (decimal), %u (unsigned decimal)\n\t\t\t\tif ( hasPeriod ) {\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t}\n\t\t\t\ttoken.arg = formatInteger( token );\n\t\t\t\tbreak;\n\t\t\tcase 's':\n\t\t\t\t// Case: %s (string)\n\t\t\t\ttoken.maxWidth = ( hasPeriod ) ? token.precision : -1;\n\t\t\t\ttoken.arg = String( token.arg );\n\t\t\t\tbreak;\n\t\t\tcase 'c':\n\t\t\t\t// Case: %c (character)\n\t\t\t\tif ( !isnan( token.arg ) ) {\n\t\t\t\t\tnum = parseInt( token.arg, 10 );\n\t\t\t\t\tif ( num < 0 || num > 127 ) {\n\t\t\t\t\t\tthrow new Error( 'invalid character code. Value: ' + token.arg );\n\t\t\t\t\t}\n\t\t\t\t\ttoken.arg = ( isnan( num ) ) ? String( token.arg ) : fromCharCode( num ); // eslint-disable-line max-len\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase 'e':\n\t\t\tcase 'E':\n\t\t\tcase 'f':\n\t\t\tcase 'F':\n\t\t\tcase 'g':\n\t\t\tcase 'G':\n\t\t\t\t// Case: %e, %E (scientific notation), %f, %F (decimal floating point), %g, %G (uses the shorter of %e/E or %f/F)\n\t\t\t\tif ( !hasPeriod ) {\n\t\t\t\t\ttoken.precision = 6;\n\t\t\t\t}\n\t\t\t\tf = parseFloat( token.arg );\n\t\t\t\tif ( !isFinite( f ) ) { // NOTE: We use the global `isFinite` function here instead of `@stdlib/math/base/assert/is-finite` in order to avoid circular dependencies.\n\t\t\t\t\tif ( !isNumber( token.arg ) ) {\n\t\t\t\t\t\tthrow new Error( 'invalid floating-point number. Value: ' + out );\n\t\t\t\t\t}\n\t\t\t\t\t// Case: NaN, Infinity, or -Infinity\n\t\t\t\t\tf = token.arg;\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t}\n\t\t\t\ttoken.arg = formatDouble( f, token );\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tthrow new Error( 'invalid specifier: ' + token.specifier );\n\t\t\t}\n\t\t\t// Fit argument into field width...\n\t\t\tif ( token.maxWidth >= 0 && token.arg.length > token.maxWidth ) {\n\t\t\t\ttoken.arg = token.arg.substring( 0, token.maxWidth );\n\t\t\t}\n\t\t\tif ( token.padZeros ) {\n\t\t\t\ttoken.arg = zeroPad( token.arg, token.width || token.precision, token.padRight ); // eslint-disable-line max-len\n\t\t\t} else if ( token.width ) {\n\t\t\t\ttoken.arg = spacePad( token.arg, token.width, token.padRight );\n\t\t\t}\n\t\t\tout += token.arg || '';\n\t\t\tpos += 1;\n\t\t}\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default formatInterpolate;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' ); // NOTE: we inline the `isString.isPrimitive` function from `@stdlib/assert/is-string` in order to avoid circular dependencies.\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// VARIABLES //\n\nvar RE = /%(?:([1-9]\\d*)\\$)?([0 +\\-#]*)(\\*|\\d+)?(?:(\\.)(\\*|\\d+)?)?[hlL]?([%A-Za-z])/g;\n\n\n// FUNCTIONS //\n\n/**\n* Parses a delimiter.\n*\n* @private\n* @param {Array} match - regular expression match\n* @returns {Object} delimiter token object\n*/\nfunction parse( match ) {\n\tvar token = {\n\t\t'mapping': ( match[ 1 ] ) ? parseInt( match[ 1 ], 10 ) : void 0,\n\t\t'flags': match[ 2 ],\n\t\t'width': match[ 3 ],\n\t\t'precision': match[ 5 ],\n\t\t'specifier': match[ 6 ]\n\t};\n\tif ( match[ 4 ] === '.' && match[ 5 ] === void 0 ) {\n\t\ttoken.precision = '1';\n\t}\n\treturn token;\n}\n\n\n// MAIN //\n\n/**\n* Tokenizes a string into an array of string parts and format identifier objects.\n*\n* @param {string} str - input string\n* @returns {Array} tokens\n*\n* @example\n* var tokens = formatTokenize( 'Hello %s!' );\n* // returns [ 'Hello ', {...}, '!' ]\n*/\nfunction formatTokenize( str ) {\n\tvar content;\n\tvar tokens;\n\tvar match;\n\tvar prev;\n\n\ttokens = [];\n\tprev = 0;\n\tmatch = RE.exec( str );\n\twhile ( match ) {\n\t\tcontent = str.slice( prev, RE.lastIndex - match[ 0 ].length );\n\t\tif ( content.length ) {\n\t\t\ttokens.push( content );\n\t\t}\n\t\t// Check for an escaped percent sign `%%`...\n\t\tif ( match[ 6 ] === '%' ) {\n\t\t\ttokens.push( '%' );\n\t\t} else {\n\t\t\ttokens.push( parse( match ) );\n\t\t}\n\t\tprev = RE.lastIndex;\n\t\tmatch = RE.exec( str );\n\t}\n\tcontent = str.slice( prev );\n\tif ( content.length ) {\n\t\ttokens.push( content );\n\t}\n\treturn tokens;\n}\n\n\n// EXPORTS //\n\nexport default formatTokenize;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport interpolate from './../../base/format-interpolate';\nimport tokenize from './../../base/format-tokenize';\nimport isString from './is_string.js';\n\n\n// MAIN //\n\n/**\n* Inserts supplied variable values into a format string.\n*\n* @param {string} str - input string\n* @param {Array} ...args - variable values\n* @throws {TypeError} first argument must be a string\n* @throws {Error} invalid flags\n* @returns {string} formatted string\n*\n* @example\n* var str = format( 'Hello %s!', 'world' );\n* // returns 'Hello world!'\n*\n* @example\n* var str = format( 'Pi: ~%.2f', 3.141592653589793 );\n* // returns 'Pi: ~3.14'\n*/\nfunction format( str ) {\n\tvar args;\n\tvar i;\n\n\tif ( !isString( str ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be a string. Value: `%s`.', str ) );\n\t}\n\targs = [ tokenize( str ) ];\n\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\targs.push( arguments[ i ] );\n\t}\n\treturn interpolate.apply( null, args );\n}\n\n\n// EXPORTS //\n\nexport default format;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' ); // NOTE: we inline the `isString.isPrimitive` function from `@stdlib/assert/is-string` in order to avoid circular dependencies.\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n/* eslint-disable no-underscore-dangle, no-proto */\n\n'use strict';\n\n// MODULES //\n\nimport format from '@stdlib/string/format';\n\n\n// VARIABLES //\n\nvar objectProtoype = Object.prototype;\nvar toStr = objectProtoype.toString;\nvar defineGetter = objectProtoype.__defineGetter__;\nvar defineSetter = objectProtoype.__defineSetter__;\nvar lookupGetter = objectProtoype.__lookupGetter__;\nvar lookupSetter = objectProtoype.__lookupSetter__;\n\n\n// MAIN //\n\n/**\n* Defines (or modifies) an object property.\n*\n* ## Notes\n*\n* - Property descriptors come in two flavors: **data descriptors** and **accessor descriptors**. A data descriptor is a property that has a value, which may or may not be writable. An accessor descriptor is a property described by a getter-setter function pair. A descriptor must be one of these two flavors and cannot be both.\n*\n* @param {Object} obj - object on which to define the property\n* @param {string} prop - property name\n* @param {Object} descriptor - property descriptor\n* @param {boolean} [descriptor.configurable=false] - boolean indicating if property descriptor can be changed and if the property can be deleted from the provided object\n* @param {boolean} [descriptor.enumerable=false] - boolean indicating if the property shows up when enumerating object properties\n* @param {boolean} [descriptor.writable=false] - boolean indicating if the value associated with the property can be changed with an assignment operator\n* @param {*} [descriptor.value] - property value\n* @param {(Function|void)} [descriptor.get=undefined] - function which serves as a getter for the property, or, if no getter, undefined. When the property is accessed, a getter function is called without arguments and with the `this` context set to the object through which the property is accessed (which may not be the object on which the property is defined due to inheritance). The return value will be used as the property value.\n* @param {(Function|void)} [descriptor.set=undefined] - function which serves as a setter for the property, or, if no setter, undefined. When assigning a property value, a setter function is called with one argument (the value being assigned to the property) and with the `this` context set to the object through which the property is assigned.\n* @throws {TypeError} first argument must be an object\n* @throws {TypeError} third argument must be an object\n* @throws {Error} property descriptor cannot have both a value and a setter and/or getter\n* @returns {Object} object with added property\n*\n* @example\n* var obj = {};\n*\n* defineProperty( obj, 'foo', {\n* 'value': 'bar'\n* });\n*\n* var str = obj.foo;\n* // returns 'bar'\n*/\nfunction defineProperty( obj, prop, descriptor ) {\n\tvar prototype;\n\tvar hasValue;\n\tvar hasGet;\n\tvar hasSet;\n\n\tif ( typeof obj !== 'object' || obj === null || toStr.call( obj ) === '[object Array]' ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be an object. Value: `%s`.', obj ) );\n\t}\n\tif ( typeof descriptor !== 'object' || descriptor === null || toStr.call( descriptor ) === '[object Array]' ) {\n\t\tthrow new TypeError( format( 'invalid argument. Property descriptor must be an object. Value: `%s`.', descriptor ) );\n\t}\n\thasValue = ( 'value' in descriptor );\n\tif ( hasValue ) {\n\t\tif (\n\t\t\tlookupGetter.call( obj, prop ) ||\n\t\t\tlookupSetter.call( obj, prop )\n\t\t) {\n\t\t\t// Override `__proto__` to avoid touching inherited accessors:\n\t\t\tprototype = obj.__proto__;\n\t\t\tobj.__proto__ = objectProtoype;\n\n\t\t\t// Delete property as existing getters/setters prevent assigning value to specified property:\n\t\t\tdelete obj[ prop ];\n\t\t\tobj[ prop ] = descriptor.value;\n\n\t\t\t// Restore original prototype:\n\t\t\tobj.__proto__ = prototype;\n\t\t} else {\n\t\t\tobj[ prop ] = descriptor.value;\n\t\t}\n\t}\n\thasGet = ( 'get' in descriptor );\n\thasSet = ( 'set' in descriptor );\n\n\tif ( hasValue && ( hasGet || hasSet ) ) {\n\t\tthrow new Error( 'invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.' );\n\t}\n\n\tif ( hasGet && defineGetter ) {\n\t\tdefineGetter.call( obj, prop, descriptor.get );\n\t}\n\tif ( hasSet && defineSetter ) {\n\t\tdefineSetter.call( obj, prop, descriptor.set );\n\t}\n\treturn obj;\n}\n\n\n// EXPORTS //\n\nexport default defineProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Define (or modify) an object property.\n*\n* @module @stdlib/utils/define-property\n*\n* @example\n* import defineProperty from '@stdlib/utils/define-property';\n*\n* var obj = {};\n* defineProperty( obj, 'foo', {\n* 'value': 'bar',\n* 'writable': false,\n* 'configurable': false,\n* 'enumerable': false\n* });\n* obj.foo = 'boop'; // => throws\n*/\n\n// MODULES //\n\nimport hasDefinePropertySupport from './has_define_property_support.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar defineProperty;\nif ( hasDefinePropertySupport() ) {\n\tdefineProperty = builtin;\n} else {\n\tdefineProperty = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default defineProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './define_property.js';\n\n\n// MAIN //\n\n/**\n* Tests for `Object.defineProperty` support.\n*\n* @private\n* @returns {boolean} boolean indicating if an environment has `Object.defineProperty` support\n*\n* @example\n* var bool = hasDefinePropertySupport();\n* // returns \n*/\nfunction hasDefinePropertySupport() {\n\t// Test basic support...\n\ttry {\n\t\tdefineProperty( {}, 'x', {} );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default hasDefinePropertySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './../../define-property';\n\n\n// MAIN //\n\n/**\n* Defines a read-only property.\n*\n* @param {Object} obj - object on which to define the property\n* @param {(string|symbol)} prop - property name\n* @param {*} value - value to set\n*\n* @example\n* var obj = {};\n*\n* setReadOnly( obj, 'foo', 'bar' );\n*\n* try {\n* obj.foo = 'boop';\n* } catch ( err ) {\n* console.error( err.message );\n* }\n*/\nfunction setReadOnly( obj, prop, value ) {\n\tdefineProperty( obj, prop, {\n\t\t'configurable': false,\n\t\t'enumerable': true,\n\t\t'writable': false,\n\t\t'value': value\n\t});\n}\n\n\n// EXPORTS //\n\nexport default setReadOnly;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.keys()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\treturn Object.keys( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.keys !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasSymbols from './../../has-symbol-support';\n\n\n// VARIABLES //\n\nvar FLG = hasSymbols();\n\n\n// MAIN //\n\n/**\n* Tests for native `Symbol.toStringTag` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol.toStringTag` support\n*\n* @example\n* var bool = hasToStringTagSupport();\n* // returns \n*/\nfunction hasToStringTagSupport() {\n\treturn ( FLG && typeof Symbol.toStringTag === 'symbol' );\n}\n\n\n// EXPORTS //\n\nexport default hasToStringTagSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests for native `Symbol` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol` support\n*\n* @example\n* var bool = hasSymbolSupport();\n* // returns \n*/\nfunction hasSymbolSupport() {\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar toStr = Object.prototype.toString;\n\n\n// EXPORTS //\n\nexport default toStr;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\nvar has = Object.prototype.hasOwnProperty;\n\n\n// MAIN //\n\n/**\n* Tests if an object has a specified property.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object has a specified property\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'bap' );\n* // returns false\n*/\nfunction hasOwnProp( value, property ) {\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\treturn has.call( value, property );\n}\n\n\n// EXPORTS //\n\nexport default hasOwnProp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar Sym = ( typeof Symbol === 'function' ) ? Symbol : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Sym;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Symbol from '@stdlib/symbol/ctor';\n\n\n// MAIN //\n\nvar toStrTag = ( typeof Symbol === 'function' ) ? Symbol.toStringTag : '';\n\n\n// EXPORTS //\n\nexport default toStrTag;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a string value indicating a specification defined classification of an object.\n*\n* @module @stdlib/utils/native-class\n*\n* @example\n* import nativeClass from '@stdlib/utils/native-class';\n*\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* function Beep() {\n* return this;\n* }\n* str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\n\n// MODULES //\n\nimport hasToStringTag from '@stdlib/assert/has-tostringtag-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( hasToStringTag() ) {\n\tmain = polyfill;\n} else {\n\tmain = builtin;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArguments from './main.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Detects whether an environment returns the expected internal class of the `arguments` object.\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment behaves as expected\n*\n* @example\n* var bool = detect();\n* // returns \n*/\nfunction detect() {\n\treturn isArguments( arguments );\n}\n\n\n// MAIN //\n\nbool = detect();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport toStringTag from './tostringtag.js';\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification of an object in environments supporting `Symbol.toStringTag`.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\tvar isOwn;\n\tvar tag;\n\tvar out;\n\n\tif ( v === null || v === void 0 ) {\n\t\treturn toStr.call( v );\n\t}\n\ttag = v[ toStringTag ];\n\tisOwn = hasOwnProp( v, toStringTag );\n\n\t// Attempt to override the `toStringTag` property. For built-ins having a `Symbol.toStringTag` property (e.g., `JSON`, `Math`, etc), the `Symbol.toStringTag` property is read-only (e.g., , so we need to wrap in a `try/catch`.\n\ttry {\n\t\tv[ toStringTag ] = void 0;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn toStr.call( v );\n\t}\n\tout = toStr.call( v );\n\n\tif ( isOwn ) {\n\t\tv[ toStringTag ] = tag;\n\t} else {\n\t\tdelete v[ toStringTag ];\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification (via the internal property `[[Class]]`) of an object.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\treturn toStr.call( v );\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// MAIN //\n\n/**\n* Tests whether a value is an `arguments` object.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `arguments` object\n*\n* @example\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* @example\n* var bool = isArguments( [] );\n* // returns false\n*/\nfunction isArguments( value ) {\n\treturn ( nativeClass( value ) === '[object Arguments]' );\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './../../define-property';\n\n\n// MAIN //\n\n/**\n* Defines a non-enumerable read-only property.\n*\n* @param {Object} obj - object on which to define the property\n* @param {(string|symbol)} prop - property name\n* @param {*} value - value to set\n*\n* @example\n* var obj = {};\n*\n* setNonEnumerableReadOnly( obj, 'foo', 'bar' );\n*\n* try {\n* obj.foo = 'boop';\n* } catch ( err ) {\n* console.error( err.message );\n* }\n*/\nfunction setNonEnumerableReadOnly( obj, prop, value ) {\n\tdefineProperty( obj, prop, {\n\t\t'configurable': false,\n\t\t'enumerable': false,\n\t\t'writable': false,\n\t\t'value': value\n\t});\n}\n\n\n// EXPORTS //\n\nexport default setNonEnumerableReadOnly;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' );\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar valueOf = String.prototype.valueOf; // non-generic\n\n\n// EXPORTS //\n\nexport default valueOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport test from './try2valueof.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a string object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string object\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns false\n*/\nfunction isString( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof String ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object String]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport valueOf from './valueof.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to extract a string value.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a string can be extracted\n*/\nfunction test( value ) {\n\ttry {\n\t\tvalueOf.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a string.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a string\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*/\nfunction isString( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a number primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* @example\n* var bool = isNumber( NaN );\n* // returns true\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns false\n*/\nfunction isNumber( value ) {\n\treturn ( typeof value === 'number' );\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a string.\n*\n* @module @stdlib/assert/is-string\n*\n* @example\n* import isString from '@stdlib/assert/is-string';\n*\n* var bool = isString( 'beep' );\n* // returns true\n*\n* bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* bool = isString( 5 );\n* // returns false\n*\n* @example\n* import { isObject as isString } from '@stdlib/assert/is-string';\n*\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* bool = isString( 'beep' );\n* // returns false\n*\n* @example\n* import { isPrimitive as isString } from '@stdlib/assert/is-string';\n*\n* var bool = isString( 'beep' );\n* // returns true\n*\n* bool = isString( new String( 'beep' ) );\n* // returns false\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// EXPORTS //\n\nexport default Number; // eslint-disable-line stdlib/require-globals\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Number from '@stdlib/number/ctor';\n\n\n// MAIN //\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar toString = Number.prototype.toString; // non-generic\n\n\n// EXPORTS //\n\nexport default toString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport Number from '@stdlib/number/ctor';\nimport test from './try2serialize.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*/\nfunction isNumber( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof Number ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object Number]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toString from './tostring.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to serialize a value to a string.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value can be serialized\n*/\nfunction test( value ) {\n\ttry {\n\t\ttoString.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a number\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*\n* @example\n* var bool = isNumber( NaN );\n* // returns true\n*\n* @example\n* var bool = isNumber( null );\n* // returns false\n*/\nfunction isNumber( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests if a double-precision floating-point numeric value is `NaN`.\n*\n* @param {number} x - value to test\n* @returns {boolean} boolean indicating whether the value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 7.0 );\n* // returns false\n*/\nfunction isnan( x ) {\n\treturn ( x !== x );\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isNumber } from './../../is-number';\nimport isNan from '@stdlib/math/base/assert/is-nan';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a `NaN` number primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a `NaN` number primitive\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns false\n*/\nfunction isnan( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisNan( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isNumber } from './../../is-number';\nimport isNan from '@stdlib/math/base/assert/is-nan';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having a value of `NaN`.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having a value of `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns false\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns true\n*/\nfunction isnan( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisNan( value.valueOf() )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is `NaN`.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns true\n*\n* @example\n* var bool = isnan( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isnan( null );\n* // returns false\n*/\nfunction isnan( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a number.\n*\n* @module @stdlib/assert/is-number\n*\n* @example\n* import isNumber from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*\n* bool = isNumber( NaN );\n* // returns true\n*\n* bool = isNumber( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isNumber } from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* bool = isNumber( NaN );\n* // returns true\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns false\n*\n* @example\n* import { isObject as isNumber } from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns false\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is `NaN`.\n*\n* @module @stdlib/assert/is-nan\n*\n* @example\n* import isnan from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns true\n*\n* bool = isnan( new Number( NaN ) );\n* // returns true\n*\n* bool = isnan( 3.14 );\n* // returns false\n*\n* bool = isnan( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isnan } from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns true\n*\n* bool = isnan( 3.14 );\n* // returns false\n*\n* bool = isnan( new Number( NaN ) );\n* // returns false\n*\n* @example\n* import { isObject as isnan } from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns false\n*\n* bool = isnan( new Number( NaN ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Double-precision floating-point positive infinity.\n*\n* @module @stdlib/constants/float64/pinf\n* @type {number}\n*\n* @example\n* import FLOAT64_PINF from '@stdlib/constants/float64/pinf';\n* // returns Infinity\n*/\n\n\n// MAIN //\n\n/**\n* Double-precision floating-point positive infinity.\n*\n* ## Notes\n*\n* Double-precision floating-point positive infinity has the bit sequence\n*\n* ```binarystring\n* 0 11111111111 00000000000000000000 00000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {number}\n* @default Number.POSITIVE_INFINITY\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT64_PINF = Number.POSITIVE_INFINITY; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default FLOAT64_PINF;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Double-precision floating-point negative infinity.\n*\n* @module @stdlib/constants/float64/ninf\n* @type {number}\n*\n* @example\n* import FLOAT64_NINF from '@stdlib/constants/float64/ninf';\n* // returns -Infinity\n*/\n\n// MODULES //\n\nimport Number from '@stdlib/number/ctor';\n\n\n// MAIN //\n\n/**\n* Double-precision floating-point negative infinity.\n*\n* ## Notes\n*\n* Double-precision floating-point negative infinity has the bit sequence\n*\n* ```binarystring\n* 1 11111111111 00000000000000000000 00000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {number}\n* @default Number.NEGATIVE_INFINITY\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT64_NINF = Number.NEGATIVE_INFINITY;\n\n\n// EXPORTS //\n\nexport default FLOAT64_NINF;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: implementation (?)\n\n/**\n* Rounds a double-precision floating-point number toward negative infinity.\n*\n* @param {number} x - input value\n* @returns {number} rounded value\n*\n* @example\n* var v = floor( -4.2 );\n* // returns -5.0\n*\n* @example\n* var v = floor( 9.99999 );\n* // returns 9.0\n*\n* @example\n* var v = floor( 0.0 );\n* // returns 0.0\n*\n* @example\n* var v = floor( NaN );\n* // returns NaN\n*/\nvar floor = Math.floor; // eslint-disable-line stdlib/no-builtin-math\n\n\n// EXPORTS //\n\nexport default floor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport floor from './../../../../base/special/floor';\n\n\n// MAIN //\n\n/**\n* Tests if a finite double-precision floating-point number is an integer.\n*\n* @param {number} x - value to test\n* @returns {boolean} boolean indicating whether the value is an integer\n*\n* @example\n* var bool = isInteger( 1.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( 3.14 );\n* // returns false\n*/\nfunction isInteger( x ) {\n\treturn (floor(x) === x);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport PINF from '@stdlib/constants/float64/pinf';\nimport NINF from '@stdlib/constants/float64/ninf';\nimport isInt from '@stdlib/math/base/assert/is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a number primitive is an integer value.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a number primitive is an integer value\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tvalue < PINF &&\n\t\tvalue > NINF &&\n\t\tisInt( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isNumber } from './../../is-number';\nimport isInt from './integer.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number primitive having an integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive having an integer value\n*\n* @example\n* var bool = isInteger( -3.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( new Number( -3.0 ) );\n* // returns false\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisInt( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isNumber } from './../../is-number';\nimport isInt from './integer.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having an integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having an integer value\n*\n* @example\n* var bool = isInteger( 3.0 );\n* // returns false\n*\n* @example\n* var bool = isInteger( new Number( 3.0 ) );\n* // returns true\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisInt( value.valueOf() )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is an integer.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an integer\n*\n* @example\n* var bool = isInteger( 5.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( new Number( 5.0 ) );\n* // returns true\n*\n* @example\n* var bool = isInteger( -3.14 );\n* // returns false\n*\n* @example\n* var bool = isInteger( null );\n* // returns false\n*/\nfunction isInteger( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is an integer.\n*\n* @module @stdlib/assert/is-integer\n*\n* @example\n* import isInteger from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( 5.0 );\n* // returns true\n*\n* bool = isInteger( new Number( 5.0 ) );\n* // returns true\n*\n* bool = isInteger( -3.14 );\n* // returns false\n*\n* bool = isInteger( null );\n* // returns false\n*\n* @example\n* // Use interface to check for integer primitives...\n* import { isPrimitive as isInteger } from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( -3.0 );\n* // returns true\n*\n* bool = isInteger( new Number( -3.0 ) );\n* // returns false\n*\n* @example\n* // Use interface to check for integer objects...\n* import { isObject as isInteger } from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( 3.0 );\n* // returns false\n*\n* bool = isInteger( new Number( 3.0 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests if an object's own property is enumerable.\n*\n* @private\n* @name isEnumerableProperty\n* @type {Function}\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object property is enumerable\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty.call( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty.call( beep, 'hasOwnProperty' );\n* // returns false\n*/\nvar isEnumerableProperty = Object.prototype.propertyIsEnumerable;\n\n\n// EXPORTS //\n\nexport default isEnumerableProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnum from './native.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Detects whether an environment has a bug where String indices are not detected as \"enumerable\" properties. Observed in Node v0.10.\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment has the bug\n*/\nfunction detect() {\n\treturn !isEnum.call( 'beep', '0' );\n}\n\n\n// MAIN //\n\nbool = detect();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isString from './../../is-string';\nimport { isPrimitive as isnan } from './../../is-nan';\nimport { isPrimitive as isInteger } from './../../is-integer';\nimport isEnum from './native.js';\nimport hasStringEnumBug from './has_string_enumerability_bug.js';\n\n\n// MAIN //\n\n/**\n* Tests if an object's own property is enumerable.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object property is enumerable\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty( beep, 'hasOwnProperty' );\n* // returns false\n*/\nfunction isEnumerableProperty( value, property ) {\n\tvar bool;\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\tbool = isEnum.call( value, property );\n\tif ( !bool && hasStringEnumBug && isString( value ) ) {\n\t\t// Note: we only check for indices, as properties attached to a `String` object are properly detected as enumerable above.\n\t\tproperty = +property;\n\t\treturn (\n\t\t\t!isnan( property ) &&\n\t\t\tisInteger( property ) &&\n\t\t\tproperty >= 0 &&\n\t\t\tproperty < value.length\n\t\t);\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default isEnumerableProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar f;\n\n\n// FUNCTIONS //\n\n/**\n* Tests if a value is an array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an array\n*\n* @example\n* var bool = isArray( [] );\n* // returns true\n*\n* @example\n* var bool = isArray( {} );\n* // returns false\n*/\nfunction isArray( value ) {\n\treturn ( nativeClass( value ) === '[object Array]' );\n}\n\n\n// MAIN //\n\nif ( Array.isArray ) {\n\tf = Array.isArray;\n} else {\n\tf = isArray;\n}\n\n\n// EXPORTS //\n\nexport default f;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 32-bit integer.\n*\n* @module @stdlib/constants/uint32/max\n* @type {uinteger32}\n*\n* @example\n* import UINT32_MAX from '@stdlib/constants/uint32/max';\n* // returns 4294967295\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{32} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 11111111111111111111111111111111\n* ```\n*\n* @constant\n* @type {uinteger32}\n* @default 4294967295\n*/\nvar UINT32_MAX = 4294967295;\n\n\n// EXPORTS //\n\nexport default UINT32_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is an `arguments` object.\n*\n* @module @stdlib/assert/is-arguments\n*\n* @example\n* import isArguments from '@stdlib/assert/is-arguments';\n*\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* bool = isArguments( [] );\n* // returns false\n*/\n\n// MODULES //\n\nimport hasArgumentsClass from './detect.js';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar isArguments;\nif ( hasArgumentsClass ) {\n\tisArguments = main;\n} else {\n\tisArguments = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from './../../has-own-property';\nimport isEnumerableProperty from './../../is-enumerable-property';\nimport isArray from './../../is-array';\nimport isInteger from '@stdlib/math/base/assert/is-integer';\nimport MAX_LENGTH from '@stdlib/constants/uint32/max';\n\n\n// MAIN //\n\n/**\n* Tests whether a value is an `arguments` object.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `arguments` object\n*\n* @example\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* @example\n* var bool = isArguments( [] );\n* // returns false\n*/\nfunction isArguments( value ) {\n\treturn (\n\t\tvalue !== null &&\n\t\ttypeof value === 'object' &&\n\t\t!isArray( value ) &&\n\t\ttypeof value.length === 'number' &&\n\t\tisInteger( value.length ) &&\n\t\tvalue.length >= 0 &&\n\t\tvalue.length <= MAX_LENGTH &&\n\t\thasOwnProp( value, 'callee' ) &&\n\t\t!isEnumerableProperty( value, 'callee' )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArguments from '@stdlib/assert/is-arguments';\nimport builtin from './builtin.js';\n\n\n// VARIABLES //\n\nvar slice = Array.prototype.slice;\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\tif ( isArguments( value ) ) {\n\t\treturn builtin( slice.call( value ) );\n\t}\n\treturn builtin( value );\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is object-like.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is object-like\n*\n* @example\n* var bool = isObjectLike( {} );\n* // returns true\n*\n* @example\n* var bool = isObjectLike( [] );\n* // returns true\n*\n* @example\n* var bool = isObjectLike( null );\n* // returns false\n*/\nfunction isObjectLike( value ) {\n\treturn (\n\t\tvalue !== null &&\n\t\ttypeof value === 'object'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isObjectLike;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is object-like.\n*\n* @module @stdlib/assert/is-object-like\n*\n* @example\n* import isObjectLike from '@stdlib/assert/is-object-like';\n*\n* var bool = isObjectLike( {} );\n* // returns true\n*\n* bool = isObjectLike( [] );\n* // returns true\n*\n* bool = isObjectLike( null );\n* // returns false\n*\n* @example\n* import { isObjectLikeArray as isObjectLike } from '@stdlib/assert/is-object-like';\n*\n* var bool = isObjectLike( [ {}, [] ] );\n* // returns true\n*\n* bool = isObjectLike( [ {}, '3.0' ] );\n* // returns false\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport arrayfun from './../../tools/array-function';\nimport main from './main.js';\n\n\n// VARIABLES //\n\nvar isObjectLikeArray = arrayfun( main );\n\n\n// MAIN //\n\nsetReadOnly( main, 'isObjectLikeArray', isObjectLikeArray );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArray from './../../../is-array';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Returns a function which tests if every element in an array passes a test condition.\n*\n* @param {Function} predicate - function to apply\n* @throws {TypeError} must provide a function\n* @returns {Function} an array function\n*\n* @example\n* import isOdd from '@stdlib/assert/is-odd';\n*\n* var arr1 = [ 1, 3, 5, 7 ];\n* var arr2 = [ 3, 5, 8 ];\n*\n* var validate = arrayfcn( isOdd );\n*\n* var bool = validate( arr1 );\n* // returns true\n*\n* bool = validate( arr2 );\n* // returns false\n*/\nfunction arrayfcn( predicate ) {\n\tif ( typeof predicate !== 'function' ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a function. Value: `%s`.', predicate ) );\n\t}\n\treturn every;\n\n\t/**\n\t* Tests if every element in an array passes a test condition.\n\t*\n\t* @private\n\t* @param {*} value - value to test\n\t* @returns {boolean} boolean indicating whether a value is an array for which all elements pass a test condition\n\t*/\n\tfunction every( value ) {\n\t\tvar len;\n\t\tvar i;\n\t\tif ( !isArray( value ) ) {\n\t\t\treturn false;\n\t\t}\n\t\tlen = value.length;\n\t\tif ( len === 0 ) {\n\t\t\treturn false;\n\t\t}\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tif ( predicate( value[ i ] ) === false ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default arrayfcn;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnumerableProperty from '@stdlib/assert/is-enumerable-property';\nimport noop from './../../noop';\n\n\n// MAIN //\n\n// Note: certain environments treat an object's prototype as enumerable, which, as a matter of convention, it shouldn't be...\nvar bool = isEnumerableProperty( noop, 'prototype' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* No operation.\n*\n* @example\n* noop();\n* // ...does nothing.\n*/\nfunction noop() {\n\t// Empty function...\n}\n\n\n// EXPORTS //\n\nexport default noop;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnumerableProperty from '@stdlib/assert/is-enumerable-property';\n\n\n// VARIABLES //\n\nvar obj = {\n\t'toString': null\n};\n\n\n// MAIN //\n\n// Note: certain environments don't allow enumeration of overwritten properties which are considered non-enumerable...\nvar bool = !isEnumerableProperty( obj, 'toString' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum length of a typed array.\n*\n* @module @stdlib/constants/array/max-typed-array-length\n*\n* @example\n* import MAX_TYPED_ARRAY_LENGTH from '@stdlib/constants/array/max-typed-array-length';\n* // returns 9007199254740991\n*/\n\n// MAIN //\n\n/**\n* Maximum length of a typed array.\n*\n* ```tex\n* 2^{53} - 1\n* ```\n*\n* @constant\n* @type {number}\n* @default 9007199254740991\n*/\nvar MAX_TYPED_ARRAY_LENGTH = 9007199254740991;\n\n\n// EXPORTS //\n\nexport default MAX_TYPED_ARRAY_LENGTH;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isnan from '@stdlib/assert/is-nan';\nimport isCollection from '@stdlib/assert/is-collection';\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport { isPrimitive as isInteger } from '@stdlib/assert/is-integer';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Returns the first index at which a given element can be found.\n*\n* @param {ArrayLike} arr - array-like object\n* @param {*} searchElement - element to find\n* @param {integer} [fromIndex] - starting index (if negative, the start index is determined relative to last element)\n* @throws {TypeError} must provide an array-like object\n* @throws {TypeError} third argument must be an integer\n* @returns {integer} index or -1\n*\n* @example\n* var arr = [ 4, 3, 2, 1 ];\n* var idx = indexOf( arr, 3 );\n* // returns 1\n*\n* @example\n* var arr = [ 4, 3, 2, 1 ];\n* var idx = indexOf( arr, 5 );\n* // returns -1\n*\n* @example\n* // Using a `fromIndex`:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6 ];\n* var idx = indexOf( arr, 2, 3 );\n* // returns 5\n*\n* @example\n* // `fromIndex` which exceeds `array` length:\n* var arr = [ 1, 2, 3, 4, 2, 5 ];\n* var idx = indexOf( arr, 2, 10 );\n* // returns -1\n*\n* @example\n* // Negative `fromIndex`:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6, 2 ];\n* var idx = indexOf( arr, 2, -4 );\n* // returns 5\n*\n* idx = indexOf( arr, 2, -1 );\n* // returns 7\n*\n* @example\n* // Negative `fromIndex` exceeding input `array` length:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6 ];\n* var idx = indexOf( arr, 2, -10 );\n* // returns 1\n*\n* @example\n* // Array-like objects:\n* var str = 'bebop';\n* var idx = indexOf( str, 'o' );\n* // returns 3\n*/\nfunction indexOf( arr, searchElement, fromIndex ) {\n\tvar len;\n\tvar i;\n\tif ( !isCollection( arr ) && !isString( arr ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be an array-like object. Value: `%s`.', arr ) );\n\t}\n\tlen = arr.length;\n\tif ( len === 0 ) {\n\t\treturn -1;\n\t}\n\tif ( arguments.length === 3 ) {\n\t\tif ( !isInteger( fromIndex ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Third argument must be an integer. Value: `%s`.', fromIndex ) );\n\t\t}\n\t\tif ( fromIndex >= 0 ) {\n\t\t\tif ( fromIndex >= len ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\ti = fromIndex;\n\t\t} else {\n\t\t\ti = len + fromIndex;\n\t\t\tif ( i < 0 ) {\n\t\t\t\ti = 0;\n\t\t\t}\n\t\t}\n\t} else {\n\t\ti = 0;\n\t}\n\t// Check for `NaN`...\n\tif ( isnan( searchElement ) ) {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( isnan( arr[i] ) ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t} else {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( arr[ i ] === searchElement ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t}\n\treturn -1;\n}\n\n\n// EXPORTS //\n\nexport default indexOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInteger from '@stdlib/math/base/assert/is-integer';\nimport MAX_LENGTH from '@stdlib/constants/array/max-typed-array-length';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a collection.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is a collection\n*\n* @example\n* var bool = isCollection( [] );\n* // returns true\n*\n* @example\n* var bool = isCollection( {} );\n* // returns false\n*/\nfunction isCollection( value ) {\n\treturn (\n\t\ttypeof value === 'object' &&\n\t\tvalue !== null &&\n\t\ttypeof value.length === 'number' &&\n\t\tisInteger( value.length ) &&\n\t\tvalue.length >= 0 &&\n\t\tvalue.length <= MAX_LENGTH\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isCollection;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nvar RE = /./;\n\n\n// EXPORTS //\n\nexport default RE;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a boolean primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a boolean primitive\n*\n* @example\n* var bool = isBoolean( true );\n* // returns true\n*\n* @example\n* var bool = isBoolean( false );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( true ) );\n* // returns false\n*/\nfunction isBoolean( value ) {\n\treturn ( typeof value === 'boolean' );\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a boolean.\n*\n* @name Boolean\n* @constructor\n* @type {Function}\n* @param {*} value - input value\n* @returns {(boolean|Boolean)} boolean\n*\n* @example\n* var b = Boolean( null );\n* // returns false\n*\n* b = Boolean( [] );\n* // returns true\n*\n* b = Boolean( {} );\n* // returns true\n*\n* @example\n* var b = new Boolean( false );\n* // returns \n*/\nvar Bool = Boolean; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar toString = Boolean.prototype.toString; // non-generic\n\n\n// EXPORTS //\n\nexport default toString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport Boolean from '@stdlib/boolean/ctor';\nimport test from './try2serialize.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a boolean object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a boolean object\n*\n* @example\n* var bool = isBoolean( true );\n* // returns false\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( false ) );\n* // returns true\n*/\nfunction isBoolean( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof Boolean ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object Boolean]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toString from './tostring.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to serialize a value to a string.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value can be serialized\n*/\nfunction test( value ) {\n\ttry {\n\t\ttoString.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a boolean.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a boolean\n*\n* @example\n* var bool = isBoolean( false );\n* // returns true\n*\n* @example\n* var bool = isBoolean( true );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( false ) );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( true ) );\n* // returns true\n*/\nfunction isBoolean( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a boolean.\n*\n* @module @stdlib/assert/is-boolean\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import isBoolean from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( false );\n* // returns true\n*\n* bool = isBoolean( new Boolean( false ) );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import { isPrimitive as isBoolean } from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( false );\n* // returns true\n*\n* bool = isBoolean( new Boolean( true ) );\n* // returns false\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import { isObject as isBoolean } from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( true );\n* // returns false\n*\n* bool = isBoolean( new Boolean( false ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof self === 'object' ) ? self : null;\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof window === 'object' ) ? window : null;\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof globalThis === 'object' ) ? globalThis : null; // eslint-disable-line no-undef\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport getGlobal from './../../../global';\n\n\n// MAIN //\n\nvar root = getGlobal();\nvar nodeList = root.document && root.document.childNodes;\n\n\n// EXPORTS //\n\nexport default nodeList;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isBoolean } from '@stdlib/assert/is-boolean';\nimport format from '@stdlib/string/format';\nimport getThis from './codegen.js';\nimport Self from './self.js';\nimport Win from './window.js';\nimport GlobalThis from './global_this.js';\n\n\n// MAIN //\n\n/**\n* Returns the global object.\n*\n* ## Notes\n*\n* - Using code generation is the **most** reliable way to resolve the global object; however, doing so is likely to violate content security policies (CSPs) in, e.g., Chrome Apps and elsewhere.\n*\n* @private\n* @param {boolean} [codegen=false] - boolean indicating whether to use code generation to resolve the global object\n* @throws {TypeError} must provide a boolean\n* @throws {Error} unable to resolve global object\n* @returns {Object} global object\n*\n* @example\n* var g = getGlobal();\n* // returns {...}\n*/\nfunction getGlobal( codegen ) {\n\tif ( arguments.length ) {\n\t\tif ( !isBoolean( codegen ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Must provide a boolean. Value: `%s`.', codegen ) );\n\t\t}\n\t\tif ( codegen ) {\n\t\t\treturn getThis();\n\t\t}\n\t\t// Fall through...\n\t}\n\t// Case: 2020 revision of ECMAScript standard\n\tif ( GlobalThis ) {\n\t\treturn GlobalThis;\n\t}\n\t// Case: browsers and web workers\n\tif ( Self ) {\n\t\treturn Self;\n\t}\n\t// Case: browsers\n\tif ( Win ) {\n\t\treturn Win;\n\t}\n\t// Case: unknown\n\tthrow new Error( 'unexpected error. Unable to resolve global object.' );\n}\n\n\n// EXPORTS //\n\nexport default getGlobal;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns the global object using code generation.\n*\n* @private\n* @returns {Object} global object\n*/\nfunction getGlobal() {\n\treturn new Function( 'return this;' )(); // eslint-disable-line no-new-func, stdlib/require-globals\n}\n\n\n// EXPORTS //\n\nexport default getGlobal;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nvar typedarray = Int8Array; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default typedarray;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a regular expression to capture everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* @returns {RegExp} regular expression\n*\n* @example\n* var RE_FUNCTION_NAME = reFunctionName();\n*\n* function fname( fcn ) {\n* return RE_FUNCTION_NAME.exec( fcn.toString() )[ 1 ];\n* }\n*\n* var fn = fname( Math.sqrt );\n* // returns 'sqrt'\n*\n* fn = fname( Int8Array );\n* // returns 'Int8Array'\n*\n* fn = fname( Object.prototype.toString );\n* // returns 'toString'\n*\n* fn = fname( function(){} );\n* // returns ''\n*/\nfunction reFunctionName() {\n\treturn /^\\s*function\\s*([^(]*)/i;\n}\n\n\n// EXPORTS //\n\nexport default reFunctionName;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport reFunctionName from './main.js';\n\n\n// MAIN //\n\n/**\n* Captures everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* Regular expression: `/^\\s*function\\s*([^(]*)/i`\n*\n* - `/^\\s*`\n* - Match zero or more spaces at beginning\n*\n* - `function`\n* - Match the word `function`\n*\n* - `\\s*`\n* - Match zero or more spaces after the word `function`\n*\n* - `()`\n* - Capture\n*\n* - `[^(]*`\n* - Match anything except a left parenthesis `(` zero or more times\n*\n* - `/i`\n* - ignore case\n*\n* @constant\n* @type {RegExp}\n* @default /^\\s*function\\s*([^(]*)/i\n*/\nvar RE_FUNCTION_NAME = reFunctionName();\n\n\n// EXPORTS //\n\nexport default RE_FUNCTION_NAME;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isObjectLike from './../../is-object-like';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Buffer instance.\n*\n* @param {*} value - value to validate\n* @returns {boolean} boolean indicating if a value is a Buffer instance\n*\n* @example\n* var v = isBuffer( new Buffer( 'beep' ) );\n* // returns true\n*\n* @example\n* var v = isBuffer( new Buffer( [1,2,3,4] ) );\n* // returns true\n*\n* @example\n* var v = isBuffer( {} );\n* // returns false\n*\n* @example\n* var v = isBuffer( [] );\n* // returns false\n*/\nfunction isBuffer( value ) {\n\treturn (\n\t\tisObjectLike( value ) &&\n\t\t(\n\t\t\t// eslint-disable-next-line no-underscore-dangle\n\t\t\tvalue._isBuffer || // for envs missing Object.prototype.constructor (e.g., Safari 5-7)\n\t\t\t(\n\t\t\t\tvalue.constructor &&\n\n\t\t\t\t// WARNING: `typeof` is not a foolproof check, as certain envs consider RegExp and NodeList instances to be functions\n\t\t\t\ttypeof value.constructor.isBuffer === 'function' &&\n\t\t\t\tvalue.constructor.isBuffer( value )\n\t\t\t)\n\t\t)\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from './../../native-class';\nimport { REGEXP as RE } from '@stdlib/regexp/function-name';\nimport isBuffer from '@stdlib/assert/is-buffer';\n\n\n// MAIN //\n\n/**\n* Determines the name of a value's constructor.\n*\n* @param {*} v - input value\n* @returns {string} name of a value's constructor\n*\n* @example\n* var v = constructorName( 'a' );\n* // returns 'String'\n*\n* @example\n* var v = constructorName( 5 );\n* // returns 'Number'\n*\n* @example\n* var v = constructorName( null );\n* // returns 'Null'\n*\n* @example\n* var v = constructorName( undefined );\n* // returns 'Undefined'\n*\n* @example\n* var v = constructorName( function noop() {} );\n* // returns 'Function'\n*/\nfunction constructorName( v ) {\n\tvar match;\n\tvar name;\n\tvar ctor;\n\tname = nativeClass( v ).slice( 8, -1 );\n\tif ( (name === 'Object' || name === 'Error') && v.constructor ) {\n\t\tctor = v.constructor;\n\t\tif ( typeof ctor.name === 'string' ) {\n\t\t\treturn ctor.name;\n\t\t}\n\t\tmatch = RE.exec( ctor.toString() );\n\t\tif ( match ) {\n\t\t\treturn match[ 1 ];\n\t\t}\n\t}\n\tif ( isBuffer( v ) ) {\n\t\treturn 'Buffer';\n\t}\n\treturn name;\n}\n\n\n// EXPORTS //\n\nexport default constructorName;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Regular expression to capture everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* @module @stdlib/regexp/function-name\n*\n* @example\n* import reFunctionName from '@stdlib/regexp/function-name';\n* var RE_FUNCTION_NAME = reFunctionName();\n*\n* function fname( fcn ) {\n* return RE_FUNCTION_NAME.exec( fcn.toString() )[ 1 ];\n* }\n*\n* var fn = fname( Math.sqrt );\n* // returns 'sqrt'\n*\n* fn = fname( Int8Array );\n* // returns 'Int8Array'\n*\n* fn = fname( Object.prototype.toString );\n* // returns 'toString'\n*\n* fn = fname( function(){} );\n* // returns ''\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport REGEXP from './regexp.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'REGEXP', REGEXP );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Determine a value's type.\n*\n* @module @stdlib/utils/type-of\n*\n* @example\n* import typeOf from '@stdlib/utils/type-of';\n*\n* var str = typeOf( 'a' );\n* // returns 'string'\n*\n* str = typeOf( 5 );\n* // returns 'number'\n*/\n\n// MODULES //\n\nimport usePolyfill from './check.js';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main = ( usePolyfill() ) ? polyfill : builtin;\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport RE from './fixtures/re.js';\nimport nodeList from './fixtures/nodelist.js';\nimport typedarray from './fixtures/typedarray.js';\n\n\n// MAIN //\n\n/**\n* Checks whether a polyfill is needed when using the `typeof` operator.\n*\n* @private\n* @returns {boolean} boolean indicating whether a polyfill is needed\n*/\nfunction check() {\n\tif (\n\t\t// Chrome 1-12 returns 'function' for regular expression instances (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof):\n\t\ttypeof RE === 'function' ||\n\n\t\t// Safari 8 returns 'object' for typed array and weak map constructors (underscore #1929):\n\t\ttypeof typedarray === 'object' ||\n\n\t\t// PhantomJS 1.9 returns 'function' for `NodeList` instances (underscore #2236):\n\t\ttypeof nodeList === 'function'\n\t) {\n\t\treturn true;\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default check;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport ctorName from './../../constructor-name';\n\n\n// MAIN //\n\n/**\n* Determines a value's type.\n*\n* @param {*} v - input value\n* @returns {string} string indicating the value's type\n*/\nfunction typeOf( v ) {\n\treturn ctorName( v ).toLowerCase();\n}\n\n\n// EXPORTS //\n\nexport default typeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport ctorName from './../../constructor-name';\n\n\n// NOTES //\n\n/*\n* Built-in `typeof` operator behavior:\n*\n* ```text\n* typeof null => 'object'\n* typeof undefined => 'undefined'\n* typeof 'a' => 'string'\n* typeof 5 => 'number'\n* typeof NaN => 'number'\n* typeof true => 'boolean'\n* typeof false => 'boolean'\n* typeof {} => 'object'\n* typeof [] => 'object'\n* typeof function foo(){} => 'function'\n* typeof function* foo(){} => 'object'\n* typeof Symbol() => 'symbol'\n* ```\n*\n*/\n\n\n// MAIN //\n\n/**\n* Determines a value's type.\n*\n* @param {*} v - input value\n* @returns {string} string indicating the value's type\n*/\nfunction typeOf( v ) {\n\tvar type;\n\n\t// Address `typeof null` => `object` (see http://wiki.ecmascript.org/doku.php?id=harmony:typeof_null):\n\tif ( v === null ) {\n\t\treturn 'null';\n\t}\n\ttype = typeof v;\n\n\t// If the `typeof` operator returned something other than `object`, we are done. Otherwise, we need to check for an internal class name or search for a constructor.\n\tif ( type === 'object' ) {\n\t\treturn ctorName( v ).toLowerCase();\n\t}\n\treturn type;\n}\n\n\n// EXPORTS //\n\nexport default typeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests whether a value equals the prototype of its constructor.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value equals the prototype of its constructor\n*/\nfunction isConstructorPrototype( value ) {\n\treturn ( value.constructor && value.constructor.prototype === value );\n}\n\n\n// EXPORTS //\n\nexport default isConstructorPrototype;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar w = ( typeof window === 'undefined' ) ? void 0 : window;\n\n\n// EXPORTS //\n\nexport default w;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport indexOf from './../../index-of';\nimport typeOf from './../../type-of';\nimport isConstructorPrototype from './is_constructor_prototype.js';\nimport EXCLUDED_KEYS from './excluded_keys.json';\nimport win from './window.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Determines whether an environment throws when comparing to the prototype of a value's constructor (e.g., [IE9][1]).\n*\n* [1]: https://stackoverflow.com/questions/7688070/why-is-comparing-the-constructor-property-of-two-windows-unreliable\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment is buggy\n*/\nfunction check() {\n\tvar k;\n\tif ( typeOf( win ) === 'undefined' ) {\n\t\treturn false;\n\t}\n\tfor ( k in win ) { // eslint-disable-line guard-for-in\n\t\ttry {\n\t\t\tif (\n\t\t\t\tindexOf( EXCLUDED_KEYS, k ) === -1 &&\n\t\t\t\thasOwnProp( win, k ) &&\n\t\t\t\twin[ k ] !== null &&\n\t\t\t\ttypeOf( win[ k ] ) === 'object'\n\t\t\t) {\n\t\t\t\tisConstructorPrototype( win[ k ] );\n\t\t\t}\n\t\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n}\n\n\n// MAIN //\n\nbool = check();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof window !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasArgumentsBug from './has_arguments_bug.js';\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport wrapper from './builtin_wrapper.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @name keys\n* @type {Function}\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nvar keys;\nif ( HAS_BUILTIN ) {\n\tif ( hasArgumentsBug() ) {\n\t\tkeys = wrapper;\n\t} else {\n\t\tkeys = builtin;\n\t}\n} else {\n\tkeys = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport keys from './builtin.js';\n\n\n// FUNCTIONS //\n\n/**\n* Tests the built-in `Object.keys()` implementation when provided `arguments`.\n*\n* @private\n* @returns {boolean} boolean indicating whether the built-in implementation returns the expected number of keys\n*/\nfunction test() {\n\treturn ( keys( arguments ) || '' ).length !== 2;\n}\n\n\n// MAIN //\n\n/**\n* Tests whether the built-in `Object.keys()` implementation supports providing `arguments` as an input value.\n*\n* ## Notes\n*\n* - Safari 5.0 does **not** support `arguments` as an input value.\n*\n* @private\n* @returns {boolean} boolean indicating whether a built-in implementation supports `arguments`\n*/\nfunction check() {\n\treturn test( 1, 2 );\n}\n\n\n// EXPORTS //\n\nexport default check;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isObjectLike from '@stdlib/assert/is-object-like';\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport isArguments from '@stdlib/assert/is-arguments';\nimport HAS_ENUM_PROTO_BUG from './has_enumerable_prototype_bug.js';\nimport HAS_NON_ENUM_PROPS_BUG from './has_non_enumerable_properties_bug.js';\nimport isConstructorPrototype from './is_constructor_prototype_wrapper.js';\nimport NON_ENUMERABLE from './non_enumerable.json';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\tvar skipConstructor;\n\tvar skipPrototype;\n\tvar isFcn;\n\tvar out;\n\tvar k;\n\tvar p;\n\tvar i;\n\n\tout = [];\n\tif ( isArguments( value ) ) {\n\t\t// Account for environments which treat `arguments` differently...\n\t\tfor ( i = 0; i < value.length; i++ ) {\n\t\t\tout.push( i.toString() );\n\t\t}\n\t\t// Note: yes, we are precluding the `arguments` array-like object from having other enumerable properties; however, this should (1) be very rare and (2) not be encouraged (e.g., doing something like `arguments.a = 'b'`; in certain engines directly manipulating the `arguments` value results in automatic de-optimization).\n\t\treturn out;\n\t}\n\tif ( typeof value === 'string' ) {\n\t\t// Account for environments which do not treat string character indices as \"own\" properties...\n\t\tif ( value.length > 0 && !hasOwnProp( value, '0' ) ) {\n\t\t\tfor ( i = 0; i < value.length; i++ ) {\n\t\t\t\tout.push( i.toString() );\n\t\t\t}\n\t\t}\n\t} else {\n\t\tisFcn = ( typeof value === 'function' );\n\t\tif ( isFcn === false && !isObjectLike( value ) ) {\n\t\t\treturn out;\n\t\t}\n\t\tskipPrototype = ( HAS_ENUM_PROTO_BUG && isFcn );\n\t}\n\tfor ( k in value ) {\n\t\tif ( !( skipPrototype && k === 'prototype' ) && hasOwnProp( value, k ) ) {\n\t\t\tout.push( String( k ) );\n\t\t}\n\t}\n\tif ( HAS_NON_ENUM_PROPS_BUG ) {\n\t\tskipConstructor = isConstructorPrototype( value );\n\t\tfor ( i = 0; i < NON_ENUMERABLE.length; i++ ) {\n\t\t\tp = NON_ENUMERABLE[ i ];\n\t\t\tif ( !( skipConstructor && p === 'constructor' ) && hasOwnProp( value, p ) ) {\n\t\t\t\tout.push( String( p ) );\n\t\t\t}\n\t\t}\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasAutomationEqualityBug from './has_automation_equality_bug.js';\nimport isConstructorPrototype from './is_constructor_prototype.js';\nimport HAS_WINDOW from './has_window.js';\n\n\n// MAIN //\n\n/**\n* Wraps the test for constructor prototype equality to accommodate buggy environments (e.g., environments which throw when testing equality).\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value equals the prototype of its constructor\n*/\nfunction wrapper( value ) {\n\tif ( HAS_WINDOW === false && !hasAutomationEqualityBug ) {\n\t\treturn isConstructorPrototype( value );\n\t}\n\ttry {\n\t\treturn isConstructorPrototype( value );\n\t} catch ( error ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default wrapper;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar CTORS = {\n\t'Error': Error,\n\t'TypeError': TypeError,\n\t'SyntaxError': SyntaxError,\n\t'ReferenceError': ReferenceError,\n\t'URIError': URIError,\n\t'EvalError': EvalError,\n\t'RangeError': RangeError\n};\n\n\n// EXPORTS //\n\nexport default CTORS;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isInteger } from './../../is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number primitive having a nonnegative integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive having a nonnegative integer value\n*\n* @example\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns false\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn (\n\t\tisInteger( value ) &&\n\t\tvalue >= 0\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isInteger } from './../../is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having a nonnegative integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having a nonnegative integer value\n*\n* @example\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns true\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn (\n\t\tisInteger( value ) &&\n\t\tvalue.valueOf() >= 0\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a nonnegative integer.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a nonnegative integer\n*\n* @example\n* var bool = isNonNegativeInteger( 5.0 );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 5.0 ) );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( -5.0 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( null );\n* // returns false\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a nonnegative integer.\n*\n* @module @stdlib/assert/is-nonnegative-integer\n*\n* @example\n* import isNonNegativeInteger from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 5.0 );\n* // returns true\n*\n* bool = isNonNegativeInteger( new Number( 5.0 ) );\n* // returns true\n*\n* bool = isNonNegativeInteger( -5.0 );\n* // returns false\n*\n* bool = isNonNegativeInteger( 3.14 );\n* // returns false\n*\n* bool = isNonNegativeInteger( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns true\n*\n* bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns false\n*\n* @example\n* import { isObject as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns false\n*\n* bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns an object.\n*\n* @name Object\n* @constructor\n* @type {Function}\n* @param {*} value - input value\n* @returns {Object} object\n*\n* @example\n* var o = new Object( null );\n* // returns {}\n*\n* @example\n* var o = new Object( 5.0 );\n* // returns \n*\n* @example\n* var o = new Object( 'beep' );\n* // returns \n*\n* @example\n* var o1 = {};\n*\n* var o2 = new Object( o1 );\n* // returns {}\n*\n* var bool = ( o1 === o2 );\n* // returns true\n*/\nvar Obj = Object; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport typeOf from '@stdlib/utils/type-of';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a function.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a function\n*\n* @example\n* function beep() {\n* return 'beep';\n* }\n*\n* var bool = isFunction( beep );\n* // returns true\n*/\nfunction isFunction( value ) {\n\t// Note: cannot use `typeof` directly, as various browser engines incorrectly return `'function'` when operating on non-function objects, such as regular expressions and NodeLists.\n\treturn ( typeOf( value ) === 'function' );\n}\n\n\n// EXPORTS //\n\nexport default isFunction;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar getProto = Object.getPrototypeOf;\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFunction from '@stdlib/assert/is-function';\nimport builtin from './native.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar getProto;\nif ( isFunction( Object.getPrototypeOf ) ) {\n\tgetProto = builtin;\n} else {\n\tgetProto = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from './../../native-class';\nimport Object from '@stdlib/object/ctor';\nimport getProto from './proto.js';\n\n\n// MAIN //\n\n/**\n* Returns the prototype of a provided object.\n*\n* @private\n* @param {Object} obj - input object\n* @returns {(Object|null)} prototype\n*/\nfunction getPrototypeOf( obj ) {\n\tvar proto = getProto( obj );\n\tif ( proto || proto === null ) {\n\t\treturn proto;\n\t}\n\tif ( nativeClass( obj.constructor ) === '[object Function]' ) {\n\t\t// May break if the constructor has been tampered with...\n\t\treturn obj.constructor.prototype;\n\t}\n\tif ( obj instanceof Object ) {\n\t\treturn Object.prototype;\n\t}\n\t// Return `null` for objects created via `Object.create( null )`. Also return `null` for cross-realm objects on browsers that lack `__proto__` support, such as IE < 11.\n\treturn null;\n}\n\n\n// EXPORTS //\n\nexport default getPrototypeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Returns the value of the `__proto__` property.\n*\n* @private\n* @param {Object} obj - input object\n* @returns {*} value of `__proto__` property\n*/\nfunction getProto( obj ) {\n\t// eslint-disable-next-line no-proto\n\treturn obj.__proto__;\n}\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\nimport getProto from './detect.js';\n\n\n// MAIN //\n\n/**\n* Returns the prototype of a provided object.\n*\n* @param {*} value - input value\n* @returns {(Object|null)} prototype\n*\n* @example\n* var proto = getPrototypeOf( {} );\n* // returns {}\n*/\nfunction getPrototypeOf( value ) {\n\tif (\n\t\tvalue === null ||\n\t\tvalue === void 0\n\t) {\n\t\treturn null;\n\t}\n\t// In order to ensure consistent ES5/ES6 behavior, cast input value to an object (strings, numbers, booleans); ES5 `Object.getPrototypeOf` throws when provided primitives and ES6 `Object.getPrototypeOf` casts:\n\tvalue = Object( value );\n\n\treturn getProto( value );\n}\n\n\n// EXPORTS //\n\nexport default getPrototypeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport getPrototypeOf from '@stdlib/utils/get-prototype-of';\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// MAIN //\n\n/**\n* Tests if a value is an `Error` object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `Error` object\n*\n* @example\n* var bool = isError( new Error( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isError( {} );\n* // returns false\n*/\nfunction isError( value ) {\n\tif ( typeof value !== 'object' || value === null ) {\n\t\treturn false;\n\t}\n\t// Check for `Error` objects from the same realm (same Node.js `vm` or same `Window` object)...\n\tif ( value instanceof Error ) {\n\t\treturn true;\n\t}\n\t// Walk the prototype tree until we find an object having the desired native class...\n\twhile ( value ) {\n\t\tif ( nativeClass( value ) === '[object Error]' ) {\n\t\t\treturn true;\n\t\t}\n\t\tvalue = getPrototypeOf( value );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isError;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a regular expression to parse a regular expression string.\n*\n* @returns {RegExp} regular expression\n*\n* @example\n* var RE_REGEXP = reRegExp();\n*\n* var bool = RE_REGEXP.test( '/^beep$/' );\n* // returns true\n*\n* bool = RE_REGEXP.test( '' );\n* // returns false\n*/\nfunction reRegExp() {\n\treturn /^\\/((?:\\\\\\/|[^\\/])+)\\/([imgy]*)$/; // eslint-disable-line no-useless-escape\n}\n\n\n// EXPORTS //\n\nexport default reRegExp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a regular expression to parse a regular expression string.\n*\n* @module @stdlib/regexp/regexp\n*\n* @example\n* import reRegExp from '@stdlib/regexp/regexp';\n*\n* var RE_REGEXP = reRegExp();\n*\n* var bool = RE_REGEXP.test( '/^beep$/' );\n* // returns true\n*\n* bool = RE_REGEXP.test( '' );\n* // returns false\n*\n* @example\n* import reRegExp from '@stdlib/regexp/regexp';\n*\n* var RE_REGEXP = reRegExp();\n*\n* var parts = RE_REGEXP.exec( '/^.*$/ig' );\n* // returns [ '/^.*$/ig', '^.*$', 'ig', 'index': 0, 'input': '/^.*$/ig' ]\n*/\n\n// MAIN //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport REGEXP from './regexp.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'REGEXP', REGEXP );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.getOwnPropertyNames !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\n\n\n// VARIABLES //\n\nvar propertyNames = Object.getOwnPropertyNames;\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable and non-enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var keys = getOwnPropertyNames( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction getOwnPropertyNames( value ) {\n\treturn propertyNames( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyNames;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return an array of an object's own enumerable and non-enumerable property names.\n*\n* @module @stdlib/utils/property-names\n*\n* @example\n* import getOwnPropertyNames from '@stdlib/utils/property-names';\n*\n* var keys = getOwnPropertyNames({\n* 'foo': 'bar',\n* 'beep': 'boop'\n* });\n* // e.g., returns [ 'foo', 'beep' ]\n*/\n\n// MODULES //\n\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( HAS_BUILTIN ) {\n\tmain = builtin;\n} else {\n\tmain = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\nimport keys from './../../keys';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable and non-enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n* - In environments lacking support for `Object.getOwnPropertyNames()`, property descriptors are unavailable, and thus all properties can be safely assumed to be enumerable. Hence, we can defer to calling `Object.keys`, which retrieves all own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var keys = getOwnPropertyNames( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction getOwnPropertyNames( value ) {\n\treturn keys( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyNames;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.getOwnPropertyDescriptor !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// VARIABLES //\n\nvar propertyDescriptor = Object.getOwnPropertyDescriptor;\n\n\n// MAIN //\n\n/**\n* Returns a property descriptor for an object's own property.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if provided `undefined` or `null`, rather than throwing an error.\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if an object does not have a provided property, rather than `undefined`.\n*\n* @private\n* @param {*} value - input object\n* @param {(string|symbol)} property - property\n* @returns {(Object|null)} property descriptor or null\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var desc = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':3.14}\n*/\nfunction getOwnPropertyDescriptor( value, property ) {\n\tvar desc;\n\tif ( value === null || value === void 0 ) {\n\t\treturn null;\n\t}\n\tdesc = propertyDescriptor( value, property );\n\treturn ( desc === void 0 ) ? null : desc;\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyDescriptor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a property descriptor for an object's own property.\n*\n* @module @stdlib/utils/property-descriptor\n*\n* @example\n* import getOwnPropertyDescriptor from '@stdlib/utils/property-descriptor';\n*\n* var obj = {\n* 'foo': 'bar',\n* 'beep': 'boop'\n* };\n*\n* var keys = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':'bar'}\n*/\n\n// MODULES //\n\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( HAS_BUILTIN ) {\n\tmain = builtin;\n} else {\n\tmain = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\n\n\n// MAIN //\n\n/**\n* Returns a property descriptor for an object's own property.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if provided `undefined` or `null`, rather than throwing an error.\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if an object does not have a provided property, rather than `undefined`.\n* - In environments lacking `Object.getOwnPropertyDescriptor()` support, property descriptors do not exist. In non-supporting environment, if an object has a provided property, this function returns a descriptor object equivalent to that returned in a supporting environment; otherwise, the function returns `null`.\n*\n* @private\n* @param {*} value - input object\n* @param {(string|symbol)} property - property\n* @returns {(Object|null)} property descriptor or null\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var desc = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':3.14}\n*/\nfunction getOwnPropertyDescriptor( value, property ) {\n\tif ( hasOwnProp( value, property ) ) {\n\t\treturn {\n\t\t\t'configurable': true,\n\t\t\t'enumerable': true,\n\t\t\t'writable': true,\n\t\t\t'value': value[ property ]\n\t\t};\n\t}\n\treturn null;\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyDescriptor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Buffer === 'function' ) ? Buffer : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Buffer constructor.\n*\n* @module @stdlib/buffer/ctor\n*\n* @example\n* import ctor from '@stdlib/buffer/ctor';\n*\n* var b = new ctor( [ 1, 2, 3, 4 ] );\n* // returns \n*/\n\n// MODULES //\n\nimport hasNodeBufferSupport from '@stdlib/assert/has-node-buffer-support';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasNodeBufferSupport() ) {\n\tctor = main;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = require( 'buffer' ).Buffer;\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from './../../is-buffer';\nimport GlobalBuffer from './buffer.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Buffer` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Buffer` support\n*\n* @example\n* var bool = hasNodeBufferSupport();\n* // returns \n*/\nfunction hasNodeBufferSupport() {\n\tvar bool;\n\tvar b;\n\n\tif ( typeof GlobalBuffer !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tif ( typeof GlobalBuffer.from === 'function' ) {\n\t\t\tb = GlobalBuffer.from( [ 1, 2, 3, 4 ] );\n\t\t} else {\n\t\t\tb = new GlobalBuffer( [ 1, 2, 3, 4 ] ); // Note: this is deprecated behavior starting in Node v6 (see https://nodejs.org/api/buffer.html#buffer_new_buffer_array)\n\t\t}\n\t\tbool = (\n\t\t\tisBuffer( b ) &&\n\t\t\tb[ 0 ] === 1 &&\n\t\t\tb[ 1 ] === 2 &&\n\t\t\tb[ 2 ] === 3 &&\n\t\t\tb[ 3 ] === 4\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasNodeBufferSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write (browser) polyfill\n\n// MAIN //\n\n/**\n* Buffer constructor.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Copy buffer data to a new `Buffer` instance.\n*\n* @module @stdlib/buffer/from-buffer\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n* import copyBuffer from '@stdlib/buffer/from-buffer';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = copyBuffer( b1 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFrom from './has_from.js';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar copyBuffer;\nif ( hasFrom ) {\n\tcopyBuffer = main;\n} else {\n\tcopyBuffer = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default copyBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFunction from '@stdlib/assert/is-function';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\nvar bool = isFunction( Buffer.from );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport format from '@stdlib/string/format';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\n/**\n* Copies buffer data to a new `Buffer` instance.\n*\n* @param {Buffer} buffer - buffer from which to copy\n* @throws {TypeError} must provide a `Buffer` instance\n* @returns {Buffer} new `Buffer` instance\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = fromBuffer( b1 );\n* // returns \n*/\nfunction fromBuffer( buffer ) {\n\tif ( !isBuffer( buffer ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a Buffer. Value: `%s`.', buffer ) );\n\t}\n\treturn Buffer.from( buffer );\n}\n\n\n// EXPORTS //\n\nexport default fromBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport format from '@stdlib/string/format';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\n/**\n* Copies buffer data to a new `Buffer` instance.\n*\n* @param {Buffer} buffer - buffer from which to copy\n* @throws {TypeError} must provide a `Buffer` instance\n* @returns {Buffer} new `Buffer` instance\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = fromBuffer( b1 );\n* // returns \n*/\nfunction fromBuffer( buffer ) {\n\tif ( !isBuffer( buffer ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a Buffer. Value: `%s`.', buffer ) );\n\t}\n\treturn new Buffer( buffer ); // eslint-disable-line no-buffer-constructor\n}\n\n\n// EXPORTS //\n\nexport default fromBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt8Array = ( typeof Int8Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int8Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int8Array\n*\n* @example\n* import Int8Array from '@stdlib/array/int8';\n*\n* var bool = isInt8Array( new Int8Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt8Array( [] );\n* // returns false\n*/\nfunction isInt8Array( value ) {\n\treturn (\n\t\t( hasInt8Array && value instanceof Int8Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int8Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt8Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 8-bit integer.\n*\n* @module @stdlib/constants/int8/max\n* @type {integer32}\n*\n* @example\n* import INT8_MAX from '@stdlib/constants/int8/max';\n* // returns 127\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 8-bit integer.\n*\n* ## Notes\n*\n* The number is given by\n*\n* ```tex\n* 2^{7} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 01111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 127\n*/\nvar INT8_MAX = 127|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT8_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int8Array === 'function' ) ? Int8Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int8Array === 'function' ) ? Int8Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 8-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int8\n*\n* @example\n* import ctor from '@stdlib/array/int8';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt8ArraySupport from '@stdlib/assert/has-int8array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt8ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt8Array from './../../is-int8array';\nimport INT8_MAX from '@stdlib/constants/int8/max';\nimport INT8_MIN from '@stdlib/constants/int8/min';\nimport GlobalInt8Array from './int8array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int8Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int8Array` support\n*\n* @example\n* var bool = hasInt8ArraySupport();\n* // returns \n*/\nfunction hasInt8ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt8Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt8Array( [ 1, 3.14, -3.14, INT8_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt8Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT8_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt8ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 8-bit integer.\n*\n* @module @stdlib/constants/int8/min\n* @type {integer32}\n*\n* @example\n* import INT8_MIN from '@stdlib/constants/int8/min';\n* // returns -128\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 8-bit integer.\n*\n* ## Notes\n*\n* The number is given by\n*\n* ```tex\n* -(2^{7})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -128\n*/\nvar INT8_MIN = -128|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT8_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 8-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint8Array = ( typeof Uint8Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint8Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint8Array\n*\n* @example\n* import Uint8Array from '@stdlib/array/uint8';\n*\n* var bool = isUint8Array( new Uint8Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint8Array( [] );\n* // returns false\n*/\nfunction isUint8Array( value ) {\n\treturn (\n\t\t( hasUint8Array && value instanceof Uint8Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint8Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint8Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 8-bit integer.\n*\n* @module @stdlib/constants/uint8/max\n* @type {integer32}\n*\n* @example\n* import UINT8_MAX from '@stdlib/constants/uint8/max';\n* // returns 255\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 8-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{8} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 11111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 255\n*/\nvar UINT8_MAX = 255|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default UINT8_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint8Array === 'function' ) ? Uint8Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint8Array === 'function' ) ? Uint8Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint8\n*\n* @example\n* import ctor from '@stdlib/array/uint8';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint8ArraySupport from '@stdlib/assert/has-uint8array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint8ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint8Array from './../../is-uint8array';\nimport UINT8_MAX from '@stdlib/constants/uint8/max';\nimport GlobalUint8Array from './uint8array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint8Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint8Array` support\n*\n* @example\n* var bool = hasUint8ArraySupport();\n* // returns \n*/\nfunction hasUint8ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint8Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT8_MAX+1, UINT8_MAX+2 ];\n\t\tarr = new GlobalUint8Array( arr );\n\t\tbool = (\n\t\t\tisUint8Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT8_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint8ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 8-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint8ClampedArray = ( typeof Uint8ClampedArray === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint8ClampedArray.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint8ClampedArray\n*\n* @example\n* import Uint8ClampedArray from '@stdlib/array/uint8c';\n*\n* var bool = isUint8ClampedArray( new Uint8ClampedArray( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint8ClampedArray( [] );\n* // returns false\n*/\nfunction isUint8ClampedArray( value ) {\n\treturn (\n\t\t( hasUint8ClampedArray && value instanceof Uint8ClampedArray ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint8ClampedArray]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint8ClampedArray;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint8ClampedArray === 'function' ) ? Uint8ClampedArray : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint8ClampedArray === 'function' ) ? Uint8ClampedArray : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.\n*\n* @module @stdlib/array/uint8c\n*\n* @example\n* import ctor from '@stdlib/array/uint8c';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint8ClampedArraySupport from '@stdlib/assert/has-uint8clampedarray-support'; // eslint-disable-line id-length\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint8ClampedArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint8ClampedArray from './../../is-uint8clampedarray';\nimport GlobalUint8ClampedArray from './uint8clampedarray.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint8ClampedArray` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint8ClampedArray` support\n*\n* @example\n* var bool = hasUint8ClampedArraySupport();\n* // returns \n*/\nfunction hasUint8ClampedArraySupport() { // eslint-disable-line id-length\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint8ClampedArray !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalUint8ClampedArray( [ -1, 0, 1, 3.14, 4.99, 255, 256 ] );\n\t\tbool = (\n\t\t\tisUint8ClampedArray( arr ) &&\n\t\t\tarr[ 0 ] === 0 && // clamped\n\t\t\tarr[ 1 ] === 0 &&\n\t\t\tarr[ 2 ] === 1 &&\n\t\t\tarr[ 3 ] === 3 && // round to nearest\n\t\t\tarr[ 4 ] === 5 && // round to nearest\n\t\t\tarr[ 5 ] === 255 &&\n\t\t\tarr[ 6 ] === 255 // clamped\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint8ClampedArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt16Array = ( typeof Int16Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int16Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int16Array\n*\n* @example\n* import Int16Array from '@stdlib/array/int16';\n*\n* var bool = isInt16Array( new Int16Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt16Array( [] );\n* // returns false\n*/\nfunction isInt16Array( value ) {\n\treturn (\n\t\t( hasInt16Array && value instanceof Int16Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int16Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt16Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 16-bit integer.\n*\n* @module @stdlib/constants/int16/max\n* @type {integer32}\n*\n* @example\n* import INT16_MAX from '@stdlib/constants/int16/max';\n* // returns 32767\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{15} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 0111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 32767\n*/\nvar INT16_MAX = 32767|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT16_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int16Array === 'function' ) ? Int16Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int16Array === 'function' ) ? Int16Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 16-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int16\n*\n* @example\n* import ctor from '@stdlib/array/int16';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt16ArraySupport from '@stdlib/assert/has-int16array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt16ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt16Array from './../../is-int16array';\nimport INT16_MAX from '@stdlib/constants/int16/max';\nimport INT16_MIN from '@stdlib/constants/int16/min';\nimport GlobalInt16Array from './int16array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int16Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int16Array` support\n*\n* @example\n* var bool = hasInt16ArraySupport();\n* // returns \n*/\nfunction hasInt16ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt16Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt16Array( [ 1, 3.14, -3.14, INT16_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt16Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT16_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt16ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 16-bit integer.\n*\n* @module @stdlib/constants/int16/min\n* @type {integer32}\n*\n* @example\n* import INT16_MIN from '@stdlib/constants/int16/min';\n* // returns -32768\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{15})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 1000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -32768\n*/\nvar INT16_MIN = -32768|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT16_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 16-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint16Array = ( typeof Uint16Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint16Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint16Array\n*\n* @example\n* import Uint16Array from '@stdlib/array/uint16';\n*\n* var bool = isUint16Array( new Uint16Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint16Array( [] );\n* // returns false\n*/\nfunction isUint16Array( value ) {\n\treturn (\n\t\t( hasUint16Array && value instanceof Uint16Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint16Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint16Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 16-bit integer.\n*\n* @module @stdlib/constants/uint16/max\n* @type {integer32}\n*\n* @example\n* import UINT16_MAX from '@stdlib/constants/uint16/max';\n* // returns 65535\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{16} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 1111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 65535\n*/\nvar UINT16_MAX = 65535|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default UINT16_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint16Array === 'function' ) ? Uint16Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint16Array === 'function' ) ? Uint16Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 16-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint16\n*\n* @example\n* import ctor from '@stdlib/array/uint16';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint16ArraySupport from '@stdlib/assert/has-uint16array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint16ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint16Array from './../../is-uint16array';\nimport UINT16_MAX from '@stdlib/constants/uint16/max';\nimport GlobalUint16Array from './uint16array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint16Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint16Array` support\n*\n* @example\n* var bool = hasUint16ArraySupport();\n* // returns \n*/\nfunction hasUint16ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint16Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT16_MAX+1, UINT16_MAX+2 ];\n\t\tarr = new GlobalUint16Array( arr );\n\t\tbool = (\n\t\t\tisUint16Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT16_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint16ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 16-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt32Array = ( typeof Int32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int32Array\n*\n* @example\n* import Int32Array from '@stdlib/array/int32';\n*\n* var bool = isInt32Array( new Int32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt32Array( [] );\n* // returns false\n*/\nfunction isInt32Array( value ) {\n\treturn (\n\t\t( hasInt32Array && value instanceof Int32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 32-bit integer.\n*\n* @module @stdlib/constants/int32/max\n* @type {integer32}\n*\n* @example\n* import INT32_MAX from '@stdlib/constants/int32/max';\n* // returns 2147483647\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{31} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 01111111111111111111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 2147483647\n*/\nvar INT32_MAX = 2147483647|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int32Array === 'function' ) ? Int32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int32\n*\n* @example\n* import ctor from '@stdlib/array/int32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt32ArraySupport from '@stdlib/assert/has-int32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt32Array from './../../is-int32array';\nimport INT32_MAX from '@stdlib/constants/int32/max';\nimport INT32_MIN from '@stdlib/constants/int32/min';\nimport GlobalInt32Array from './int32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int32Array` support\n*\n* @example\n* var bool = hasInt32ArraySupport();\n* // returns \n*/\nfunction hasInt32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt32Array( [ 1, 3.14, -3.14, INT32_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT32_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 32-bit integer.\n*\n* @module @stdlib/constants/int32/min\n* @type {integer32}\n*\n* @example\n* import INT32_MIN from '@stdlib/constants/int32/min';\n* // returns -2147483648\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{31})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -2147483648\n*/\nvar INT32_MIN = -2147483648|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint32Array = ( typeof Uint32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint32Array\n*\n* @example\n* import Uint32Array from '@stdlib/array/uint32';\n*\n* var bool = isUint32Array( new Uint32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint32Array( [] );\n* // returns false\n*/\nfunction isUint32Array( value ) {\n\treturn (\n\t\t( hasUint32Array && value instanceof Uint32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint32Array === 'function' ) ? Uint32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint32Array === 'function' ) ? Uint32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 32-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint32\n*\n* @example\n* import ctor from '@stdlib/array/uint32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint32ArraySupport from '@stdlib/assert/has-uint32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint32Array from './../../is-uint32array';\nimport UINT32_MAX from '@stdlib/constants/uint32/max';\nimport GlobalUint32Array from './uint32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint32Array` support\n*\n* @example\n* var bool = hasUint32ArraySupport();\n* // returns \n*/\nfunction hasUint32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT32_MAX+1, UINT32_MAX+2 ];\n\t\tarr = new GlobalUint32Array( arr );\n\t\tbool = (\n\t\t\tisUint32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT32_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 32-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasFloat32Array = ( typeof Float32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Float32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Float32Array\n*\n* @example\n* import Float32Array from '@stdlib/array/float32';\n*\n* var bool = isFloat32Array( new Float32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isFloat32Array( [] );\n* // returns false\n*/\nfunction isFloat32Array( value ) {\n\treturn (\n\t\t( hasFloat32Array && value instanceof Float32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Float32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isFloat32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Float32Array === 'function' ) ? Float32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Float32Array === 'function' ) ? Float32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in the platform byte order.\n*\n* @module @stdlib/array/float32\n*\n* @example\n* import ctor from '@stdlib/array/float32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFloat32ArraySupport from '@stdlib/assert/has-float32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasFloat32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFloat32Array from './../../is-float32array';\nimport PINF from '@stdlib/constants/float64/pinf';\nimport GlobalFloat32Array from './float32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Float32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Float32Array` support\n*\n* @example\n* var bool = hasFloat32ArraySupport();\n* // returns \n*/\nfunction hasFloat32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalFloat32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalFloat32Array( [ 1.0, 3.14, -3.14, 5.0e40 ] );\n\t\tbool = (\n\t\t\tisFloat32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1.0 &&\n\t\t\tarr[ 1 ] === 3.140000104904175 &&\n\t\t\tarr[ 2 ] === -3.140000104904175 &&\n\t\t\tarr[ 3 ] === PINF\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasFloat32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of single-precision floating-point numbers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasFloat64Array = ( typeof Float64Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Float64Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Float64Array\n*\n* @example\n* import Float64Array from '@stdlib/array/float64';\n*\n* var bool = isFloat64Array( new Float64Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isFloat64Array( [] );\n* // returns false\n*/\nfunction isFloat64Array( value ) {\n\treturn (\n\t\t( hasFloat64Array && value instanceof Float64Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Float64Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isFloat64Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Float64Array === 'function' ) ? Float64Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Float64Array === 'function' ) ? Float64Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in the platform byte order.\n*\n* @module @stdlib/array/float64\n*\n* @example\n* import ctor from '@stdlib/array/float64';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFloat64ArraySupport from '@stdlib/assert/has-float64array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasFloat64ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFloat64Array from './../../is-float64array';\nimport GlobalFloat64Array from './float64array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Float64Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Float64Array` support\n*\n* @example\n* var bool = hasFloat64ArraySupport();\n* // returns \n*/\nfunction hasFloat64ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalFloat64Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalFloat64Array( [ 1.0, 3.14, -3.14, NaN ] );\n\t\tbool = (\n\t\t\tisFloat64Array( arr ) &&\n\t\t\tarr[ 0 ] === 1.0 &&\n\t\t\tarr[ 1 ] === 3.14 &&\n\t\t\tarr[ 2 ] === -3.14 &&\n\t\t\tarr[ 3 ] !== arr[ 3 ]\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasFloat64ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of double-precision floating-point numbers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Int8Array from '@stdlib/array/int8';\nimport Uint8Array from '@stdlib/array/uint8';\nimport Uint8ClampedArray from '@stdlib/array/uint8c';\nimport Int16Array from '@stdlib/array/int16';\nimport Uint16Array from '@stdlib/array/uint16';\nimport Int32Array from '@stdlib/array/int32';\nimport Uint32Array from '@stdlib/array/uint32';\nimport Float32Array from '@stdlib/array/float32';\nimport Float64Array from '@stdlib/array/float64';\n\n\n// VARIABLES //\n\nvar hash;\n\n\n// FUNCTIONS //\n\n/**\n* Copies an `Int8Array`.\n*\n* @private\n* @param {Int8Array} arr - array to copy\n* @returns {Int8Array} new array\n*/\nfunction int8array( arr ) {\n\treturn new Int8Array( arr );\n}\n\n/**\n* Copies a `Uint8Array`.\n*\n* @private\n* @param {Uint8Array} arr - array to copy\n* @returns {Uint8Array} new array\n*/\nfunction uint8array( arr ) {\n\treturn new Uint8Array( arr );\n}\n\n/**\n* Copies a `Uint8ClampedArray`.\n*\n* @private\n* @param {Uint8ClampedArray} arr - array to copy\n* @returns {Uint8ClampedArray} new array\n*/\nfunction uint8clampedarray( arr ) {\n\treturn new Uint8ClampedArray( arr );\n}\n\n/**\n* Copies an `Int16Array`.\n*\n* @private\n* @param {Int16Array} arr - array to copy\n* @returns {Int16Array} new array\n*/\nfunction int16array( arr ) {\n\treturn new Int16Array( arr );\n}\n\n/**\n* Copies a `Uint16Array`.\n*\n* @private\n* @param {Uint16Array} arr - array to copy\n* @returns {Uint16Array} new array\n*/\nfunction uint16array( arr ) {\n\treturn new Uint16Array( arr );\n}\n\n/**\n* Copies an `Int32Array`.\n*\n* @private\n* @param {Int32Array} arr - array to copy\n* @returns {Int32Array} new array\n*/\nfunction int32array( arr ) {\n\treturn new Int32Array( arr );\n}\n\n/**\n* Copies a `Uint32Array`.\n*\n* @private\n* @param {Uint32Array} arr - array to copy\n* @returns {Uint32Array} new array\n*/\nfunction uint32array( arr ) {\n\treturn new Uint32Array( arr );\n}\n\n/**\n* Copies a `Float32Array`.\n*\n* @private\n* @param {Float32Array} arr - array to copy\n* @returns {Float32Array} new array\n*/\nfunction float32array( arr ) {\n\treturn new Float32Array( arr );\n}\n\n/**\n* Copies a `Float64Array`.\n*\n* @private\n* @param {Float64Array} arr - array to copy\n* @returns {Float64Array} new array\n*/\nfunction float64array( arr ) {\n\treturn new Float64Array( arr );\n}\n\n/**\n* Returns a hash of functions for copying typed arrays.\n*\n* @private\n* @returns {Object} function hash\n*/\nfunction typedarrays() {\n\tvar out = {\n\t\t'int8array': int8array,\n\t\t'uint8array': uint8array,\n\t\t'uint8clampedarray': uint8clampedarray,\n\t\t'int16array': int16array,\n\t\t'uint16array': uint16array,\n\t\t'int32array': int32array,\n\t\t'uint32array': uint32array,\n\t\t'float32array': float32array,\n\t\t'float64array': float64array\n\t};\n\treturn out;\n}\n\n\n// MAIN //\n\nhash = typedarrays();\n\n\n// EXPORTS //\n\nexport default hash;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport isArray from '@stdlib/assert/is-array';\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport isError from '@stdlib/assert/is-error';\nimport typeOf from './../../type-of';\nimport regexp from './../../regexp-from-string';\nimport indexOf from './../../index-of';\nimport objectKeys from './../../keys';\nimport propertyNames from './../../property-names';\nimport propertyDescriptor from './../../property-descriptor';\nimport getPrototypeOf from './../../get-prototype-of';\nimport defineProperty from './../../define-property';\nimport copyBuffer from '@stdlib/buffer/from-buffer';\nimport typedArrays from './typed_arrays.js';\n\n\n// FUNCTIONS //\n\n/**\n* Clones a class instance.\n*\n* ## Notes\n*\n* - This should **only** be used for simple cases. Any instances with privileged access to variables (e.g., within closures) cannot be cloned. This approach should be considered **fragile**.\n* - The function is greedy, disregarding the notion of a `level`. Instead, the function deep copies all properties, as we assume the concept of `level` applies only to the class instance reference but not to its internal state. This prevents, in theory, two instances from sharing state.\n*\n* @private\n* @param {Object} val - class instance\n* @returns {Object} new instance\n*/\nfunction cloneInstance( val ) {\n\tvar cache;\n\tvar names;\n\tvar name;\n\tvar refs;\n\tvar desc;\n\tvar tmp;\n\tvar ref;\n\tvar i;\n\n\tcache = [];\n\trefs = [];\n\n\tref = Object.create( getPrototypeOf( val ) );\n\tcache.push( val );\n\trefs.push( ref );\n\n\tnames = propertyNames( val );\n\tfor ( i = 0; i < names.length; i++ ) {\n\t\tname = names[ i ];\n\t\tdesc = propertyDescriptor( val, name );\n\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\ttmp = ( isArray( val[name] ) ) ? [] : {};\n\t\t\tdesc.value = deepCopy( val[name], tmp, cache, refs, -1 );\n\t\t}\n\t\tdefineProperty( ref, name, desc );\n\t}\n\tif ( !Object.isExtensible( val ) ) {\n\t\tObject.preventExtensions( ref );\n\t}\n\tif ( Object.isSealed( val ) ) {\n\t\tObject.seal( ref );\n\t}\n\tif ( Object.isFrozen( val ) ) {\n\t\tObject.freeze( ref );\n\t}\n\treturn ref;\n}\n\n/**\n* Copies an error object.\n*\n* @private\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error - error to copy\n* @returns {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error copy\n*\n* @example\n* var err1 = new TypeError( 'beep' );\n*\n* var err2 = copyError( err1 );\n* // returns \n*/\nfunction copyError( error ) {\n\tvar cache = [];\n\tvar refs = [];\n\tvar keys;\n\tvar desc;\n\tvar tmp;\n\tvar key;\n\tvar err;\n\tvar i;\n\n\t// Create a new error...\n\terr = new error.constructor( error.message );\n\n\tcache.push( error );\n\trefs.push( err );\n\n\t// If a `stack` property is present, copy it over...\n\tif ( error.stack ) {\n\t\terr.stack = error.stack;\n\t}\n\t// Node.js specific (system errors)...\n\tif ( error.code ) {\n\t\terr.code = error.code;\n\t}\n\tif ( error.errno ) {\n\t\terr.errno = error.errno;\n\t}\n\tif ( error.syscall ) {\n\t\terr.syscall = error.syscall;\n\t}\n\t// Any enumerable properties...\n\tkeys = objectKeys( error );\n\tfor ( i = 0; i < keys.length; i++ ) {\n\t\tkey = keys[ i ];\n\t\tdesc = propertyDescriptor( error, key );\n\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\ttmp = ( isArray( error[ key ] ) ) ? [] : {};\n\t\t\tdesc.value = deepCopy( error[ key ], tmp, cache, refs, -1 );\n\t\t}\n\t\tdefineProperty( err, key, desc );\n\t}\n\treturn err;\n}\n\n\n// MAIN //\n\n/**\n* Recursively performs a deep copy of an input object.\n*\n* @private\n* @param {*} val - value to copy\n* @param {(Array|Object)} copy - copy\n* @param {Array} cache - an array of visited objects\n* @param {Array} refs - an array of object references\n* @param {NonNegativeInteger} level - copy depth\n* @returns {*} deep copy\n*/\nfunction deepCopy( val, copy, cache, refs, level ) {\n\tvar parent;\n\tvar keys;\n\tvar name;\n\tvar desc;\n\tvar ctor;\n\tvar key;\n\tvar ref;\n\tvar x;\n\tvar i;\n\tvar j;\n\n\tlevel -= 1;\n\n\t// Primitives and functions...\n\tif (\n\t\ttypeof val !== 'object' ||\n\t\tval === null\n\t) {\n\t\treturn val;\n\t}\n\tif ( isBuffer( val ) ) {\n\t\treturn copyBuffer( val );\n\t}\n\tif ( isError( val ) ) {\n\t\treturn copyError( val );\n\t}\n\t// Objects...\n\tname = typeOf( val );\n\n\tif ( name === 'date' ) {\n\t\treturn new Date( +val );\n\t}\n\tif ( name === 'regexp' ) {\n\t\treturn regexp( val.toString() );\n\t}\n\tif ( name === 'set' ) {\n\t\treturn new Set( val );\n\t}\n\tif ( name === 'map' ) {\n\t\treturn new Map( val );\n\t}\n\tif (\n\t\tname === 'string' ||\n\t\tname === 'boolean' ||\n\t\tname === 'number'\n\t) {\n\t\t// If provided an `Object`, return an equivalent primitive!\n\t\treturn val.valueOf();\n\t}\n\tctor = typedArrays[ name ];\n\tif ( ctor ) {\n\t\treturn ctor( val );\n\t}\n\t// Class instances...\n\tif (\n\t\tname !== 'array' &&\n\t\tname !== 'object'\n\t) {\n\t\t// Cloning requires ES5 or higher...\n\t\tif ( typeof Object.freeze === 'function' ) {\n\t\t\treturn cloneInstance( val );\n\t\t}\n\t\treturn {};\n\t}\n\t// Arrays and plain objects...\n\tkeys = objectKeys( val );\n\tif ( level > 0 ) {\n\t\tparent = name;\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tx = val[ key ];\n\n\t\t\t// Primitive, Buffer, special class instance...\n\t\t\tname = typeOf( x );\n\t\t\tif (\n\t\t\t\ttypeof x !== 'object' ||\n\t\t\t\tx === null ||\n\t\t\t\t(\n\t\t\t\t\tname !== 'array' &&\n\t\t\t\t\tname !== 'object'\n\t\t\t\t) ||\n\t\t\t\tisBuffer( x )\n\t\t\t) {\n\t\t\t\tif ( parent === 'object' ) {\n\t\t\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\t\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\t\t\t\tdesc.value = deepCopy( x );\n\t\t\t\t\t}\n\t\t\t\t\tdefineProperty( copy, key, desc );\n\t\t\t\t} else {\n\t\t\t\t\tcopy[ key ] = deepCopy( x );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// Circular reference...\n\t\t\ti = indexOf( cache, x );\n\t\t\tif ( i !== -1 ) {\n\t\t\t\tcopy[ key ] = refs[ i ];\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// Plain array or object...\n\t\t\tref = ( isArray( x ) ) ? new Array( x.length ) : {}; // eslint-disable-line stdlib/no-new-array\n\t\t\tcache.push( x );\n\t\t\trefs.push( ref );\n\t\t\tif ( parent === 'array' ) {\n\t\t\t\tcopy[ key ] = deepCopy( x, ref, cache, refs, level );\n\t\t\t} else {\n\t\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\t\t\tdesc.value = deepCopy( x, ref, cache, refs, level );\n\t\t\t\t}\n\t\t\t\tdefineProperty( copy, key, desc );\n\t\t\t}\n\t\t}\n\t} else if ( name === 'array' ) {\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tcopy[ key ] = val[ key ];\n\t\t}\n\t} else {\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\tdefineProperty( copy, key, desc );\n\t\t}\n\t}\n\tif ( !Object.isExtensible( val ) ) {\n\t\tObject.preventExtensions( copy );\n\t}\n\tif ( Object.isSealed( val ) ) {\n\t\tObject.seal( copy );\n\t}\n\tif ( Object.isFrozen( val ) ) {\n\t\tObject.freeze( copy );\n\t}\n\treturn copy;\n}\n\n\n// EXPORTS //\n\nexport default deepCopy;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport reRegExp from '@stdlib/regexp/regexp';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Parses a regular expression string and returns a new regular expression.\n*\n* @param {string} str - regular expression string\n* @throws {TypeError} must provide a regular expression string\n* @returns {(RegExp|null)} regular expression or null\n*\n* @example\n* var re = reFromString( '/beep/' );\n* // returns /beep/\n*/\nfunction reFromString( str ) {\n\tif ( !isString( str ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a regular expression string. Value: `%s`.', str ) );\n\t}\n\t// Capture the regular expression pattern and any flags:\n\tstr = reRegExp().exec( str );\n\n\t// Create a new regular expression:\n\treturn ( str ) ? new RegExp( str[1], str[2] ) : null;\n}\n\n\n// EXPORTS //\n\nexport default reFromString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArray from '@stdlib/assert/is-array';\nimport { isPrimitive as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\nimport format from '@stdlib/string/format';\nimport PINF from '@stdlib/constants/float64/pinf';\nimport deepCopy from './deep_copy.js';\n\n\n// MAIN //\n\n/**\n* Copies or deep clones a value to an arbitrary depth.\n*\n* @param {*} value - value to copy\n* @param {NonNegativeInteger} [level=+infinity] - copy depth\n* @throws {TypeError} second argument must be a nonnegative integer\n* @returns {*} value copy\n*\n* @example\n* var out = copy( 'beep' );\n* // returns 'beep'\n*\n* @example\n* var value = [\n* {\n* 'a': 1,\n* 'b': true,\n* 'c': [ 1, 2, 3 ]\n* }\n* ];\n* var out = copy( value );\n* // returns [ { 'a': 1, 'b': true, 'c': [ 1, 2, 3 ] } ]\n*\n* var bool = ( value[0].c === out[0].c );\n* // returns false\n*/\nfunction copy( value, level ) {\n\tvar out;\n\tif ( arguments.length > 1 ) {\n\t\tif ( !isNonNegativeInteger( level ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Second argument must be a nonnegative integer. Value: `%s`.', level ) );\n\t\t}\n\t\tif ( level === 0 ) {\n\t\t\treturn value;\n\t\t}\n\t} else {\n\t\tlevel = PINF;\n\t}\n\tout = ( isArray( value ) ) ? new Array( value.length ) : {}; // eslint-disable-line stdlib/no-new-array\n\treturn deepCopy( value, out, [value], [out], level );\n}\n\n\n// EXPORTS //\n\nexport default copy;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2025 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from './../../has-own-property';\nimport Symbol from '@stdlib/symbol/ctor';\n\n\n// MAIN //\n\n/**\n* Tests for native `Symbol.hasInstance` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol.hasInstance` support\n*\n* @example\n* var bool = hasHasInstanceSymbolSupport();\n* // returns \n*/\nfunction hasHasInstanceSymbolSupport() { // eslint-disable-line id-length\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol' &&\n\t\thasOwnProp( Symbol, 'hasInstance' ) &&\n\t\ttypeof Symbol.hasInstance === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasHasInstanceSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2025 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasHasInstanceSymbolSupport from '@stdlib/assert/has-has-instance-symbol-support'; // eslint-disable-line id-length\n\n\n// MAIN //\n\n/**\n* Has instance symbol.\n*\n* @name HasInstanceSymbol\n* @constant\n* @type {(symbol|null)}\n*\n* @example\n* import isArray from '@stdlib/assert/is-array';\n*\n* function ArrayLike() {\n* return {\n* 'length': 3,\n* '0': 1,\n* '1': 2,\n* '2': 3\n* };\n* };\n*\n* ArrayLike[ HasInstanceSymbol ] = isArray;\n*/\nvar HasInstanceSymbol = ( hasHasInstanceSymbolSupport() ) ? Symbol.hasInstance : null; // eslint-disable-line max-len\n\n\n// EXPORTS //\n\nexport default HasInstanceSymbol;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasHasInstanceSymbolSupport from './../../has-has-instance-symbol-support'; // eslint-disable-line id-length\nimport HasInstanceSymbol from '@stdlib/symbol/has-instance';\nimport format from '@stdlib/string/format';\n\n\n// VARIABLES //\n\nvar hasSupport = hasHasInstanceSymbolSupport();\n\n\n// MAIN //\n\n/**\n* Tests whether a value has in its prototype chain a specified constructor as a prototype property.\n*\n* @param {*} value - value to test\n* @param {Function} constructor - constructor to test against\n* @throws {TypeError} constructor must be callable\n* @returns {boolean} boolean indicating whether a value is an instance of a provided constructor\n*\n* @example\n* var bool = instanceOf( [], Array );\n* // returns true\n*\n* @example\n* var bool = instanceOf( {}, Object ); // exception\n* // returns true\n*\n* @example\n* var bool = instanceOf( 'beep', String );\n* // returns false\n*\n* @example\n* var bool = instanceOf( null, Object );\n* // returns false\n*\n* @example\n* var bool = instanceOf( 5, Object );\n* // returns false\n*/\nfunction instanceOf( value, constructor ) {\n\t// TODO: replace with `isCallable` check\n\tif (\n\t\ttypeof constructor !== 'function' &&\n\t\t!(\n\t\t\thasSupport &&\n\t\t\ttypeof constructor === 'object' &&\n\t\t\ttypeof constructor[ HasInstanceSymbol ] === 'function'\n\t\t)\n\t) {\n\t\tthrow new TypeError( format( 'invalid argument. Second argument must be callable. Value: `%s`.', constructor ) );\n\t}\n\treturn ( value instanceof constructor );\n}\n\n\n// EXPORTS //\n\nexport default instanceOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar CTORS = [\n\t[ TypeError, 'TypeError' ],\n\t[ SyntaxError, 'SyntaxError' ],\n\t[ ReferenceError, 'ReferenceError' ],\n\t[ RangeError, 'RangeError' ],\n\t[ URIError, 'URIError' ],\n\t[ EvalError, 'EvalError' ],\n\t[ Error, 'Error' ]\n];\n\n\n// EXPORTS //\n\nexport default CTORS;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n/*\n* The following modules are intentionally not exported: tools\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-read-only-property';\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace ns\n*/\nvar ns = {};\n\n/**\n* @name reviveError\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/error/reviver}\n*/\nimport reviveError from './../reviver';\nsetReadOnly( ns, 'reviveError', reviveError );\n\n/**\n* @name error2json\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/error/to-json}\n*/\nimport error2json from './../to-json';\nsetReadOnly( ns, 'error2json', error2json );\n\n\n// EXPORTS //\n\nexport default ns;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport objectKeys from '@stdlib/utils/keys';\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport ctors from './ctors.js';\n\n\n// MAIN //\n\n/**\n* Revives a JSON-serialized error object.\n*\n* @param {string} key - key\n* @param {*} value - value\n* @returns {(*|Error|SyntaxError|URIError|EvalError|ReferenceError|RangeError|TypeError)} value or error object\n*\n* @example\n* import parseJSON from '@stdlib/utils/parse-json';\n*\n* var str = '{\"type\":\"TypeError\",\"message\":\"beep\"}';\n* var err = parseJSON( str, reviveError );\n* // returns \n*/\nfunction reviveError( key, value ) {\n\tvar hasStack;\n\tvar ctor;\n\tvar keys;\n\tvar err;\n\tvar k;\n\tvar i;\n\tif (\n\t\tvalue &&\n\t\tvalue.type &&\n\t\tisString( value.message )\n\t) {\n\t\tctor = ctors[ value.type ];\n\t\tif ( ctor ) {\n\t\t\terr = new ctor( value.message );\n\t\t\tkeys = objectKeys( value );\n\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\tk = keys[ i ];\n\t\t\t\tif (\n\t\t\t\t\tk === 'type' ||\n\t\t\t\t\tk === 'message' ||\n\t\t\t\t\tk === 'name' // read-only for built-ins\n\t\t\t\t) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif ( k === 'stack' ) {\n\t\t\t\t\tif ( !isString( value[k] ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\thasStack = true;\n\t\t\t\t}\n\t\t\t\terr[ k ] = value[ k ];\n\t\t\t}\n\t\t\tif ( !hasStack && isString( err.stack ) ) {\n\t\t\t\terr.stack = '';\n\t\t\t}\n\t\t\treturn err;\n\t\t}\n\t}\n\treturn value;\n}\n\n\n// EXPORTS //\n\nexport default reviveError;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport objectKeys from '@stdlib/utils/keys';\nimport copy from '@stdlib/utils/copy';\nimport isError from '@stdlib/assert/is-error';\nimport format from '@stdlib/string/format';\nimport typeName from './type.js';\n\n\n// MAIN //\n\n/**\n* Returns a JSON representation of an error object.\n*\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} err - error to serialize\n* @throws {TypeError} must provide an error object\n* @returns {Object} JSON representation\n*\n* @example\n* var err = new Error( 'beep' );\n* var json = error2json( err );\n* // returns {...}\n*/\nfunction error2json( err ) {\n\tvar keys;\n\tvar out;\n\tvar i;\n\tif ( !isError( err ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide an error object. Value: `%s`.', err ) );\n\t}\n\tout = {};\n\n\t// Guaranteed properties:\n\tout.type = typeName( err );\n\tout.message = err.message;\n\n\t// Possible general error properties...\n\tif ( err.name ) {\n\t\tout.name = err.name;\n\t}\n\tif ( err.stack ) {\n\t\tout.stack = err.stack;\n\t}\n\t// Possible Node.js (system error) properties...\n\tif ( err.code ) {\n\t\tout.code = err.code;\n\t}\n\tif ( err.errno ) {\n\t\tout.errno = err.errno;\n\t}\n\tif ( err.syscall ) {\n\t\tout.syscall = err.syscall;\n\t}\n\t// Any enumerable properties...\n\tkeys = objectKeys( err );\n\tfor ( i = 0; i < keys.length; i++ ) {\n\t\tout[ keys[i] ] = copy( err[ keys[i] ] );\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default error2json;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport instanceOf from '@stdlib/assert/instance-of';\nimport ctorName from '@stdlib/utils/constructor-name';\nimport getPrototypeOf from '@stdlib/utils/get-prototype-of';\nimport CTORS from './ctors.js';\n\n\n// MAIN //\n\n/**\n* Returns the error type.\n*\n* @private\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error - input error\n* @returns {(string|void)} error type\n*\n* @example\n* var err = new TypeError();\n* var out = typeName( err );\n* // returns 'TypeError'\n*/\nfunction typeName( error ) {\n\tvar v;\n\tvar i;\n\n\t// Check for error objects from the same realm (same Node.js `vm` or same `Window` object)...\n\tfor ( i = 0; i < CTORS.length; i++ ) {\n\t\tif ( instanceOf( error, CTORS[ i ][ 0 ] ) ) {\n\t\t\treturn CTORS[ i ][ 1 ];\n\t\t}\n\t}\n\t// Walk the prototype tree until we find an object having a desired native class...\n\twhile ( error ) {\n\t\tv = ctorName( error );\n\t\tfor ( i = 0; i < CTORS.length; i++ ) {\n\t\t\tif ( v === CTORS[ i ][ 1 ] ) {\n\t\t\t\treturn CTORS[ i ][ 1 ];\n\t\t\t}\n\t\t}\n\t\terror = getPrototypeOf( error );\n\t}\n}\n\n\n// EXPORTS //\n\nexport default typeName;\n"],"names":["main","Object","defineProperty","isNumber","value","zeros","n","i","out","zeroPad","str","width","right","negative","pad","length","startsWithMinus","substr","lowercase","String","prototype","toLowerCase","uppercase","toUpperCase","formatInteger","token","base","specifier","arg","parseInt","isFinite","Error","toString","precision","padRight","sign","alternate","call","charAt","abs","Math","replace","RE_EXP_POS_DIGITS","RE_EXP_NEG_DIGITS","RE_ONLY_DIGITS","RE_DIGITS_BEFORE_EXP","RE_TRAILING_PERIOD_ZERO","RE_PERIOD_ZERO_EXP","RE_ZERO_BEFORE_EXP","formatDouble","f","digits","toExponential","toFixed","toPrecision","spaces","fromCharCode","isArray","Array","isnan","initialize","flags","mapping","formatInterpolate","tokens","hasPeriod","flag","num","pos","j","TypeError","padZeros","indexOf","arguments","maxWidth","parseFloat","substring","RE","parse","match","formatTokenize","content","prev","exec","slice","lastIndex","push","format","args","tokenize","interpolate","apply","objectProtoype","toStr","defineGetter","__defineGetter__","defineSetter","__defineSetter__","lookupGetter","__lookupGetter__","lookupSetter","__lookupSetter__","err","hasDefinePropertySupport","builtin","obj","prop","descriptor","hasValue","hasGet","hasSet","__proto__","get","set","defineProperty$1","setReadOnly","configurable","enumerable","writable","keys","bool","FLG","Symbol","hasToStringTagSupport","toStringTag","has","hasOwnProperty","hasOwnProp","property","Sym","toStrTag","nativeClass","hasToStringTag","v","isOwn","tag","isArguments","bool$8","detect","hasArgumentsClass","setNonEnumerableReadOnly","isString","valueOf","test","isPrimitive","isObject","main$f","Number","x","isNan","FLOAT64_PINF","POSITIVE_INFINITY","FLOAT64_NINF","NEGATIVE_INFINITY","floor","isInteger","PINF","NINF","isInt","isEnumerableProperty","propertyIsEnumerable","hasStringEnumBug","isEnum","main$e","UINT32_MAX","isArguments$1","MAX_LENGTH","isObjectLike","predicate","len","arrayfun","MAX_TYPED_ARRAY_LENGTH","arr","searchElement","fromIndex","isBoolean","Bool","Boolean","self","window","globalThis","root","codegen","Function","GlobalThis","Self","Win","getGlobal","nodeList","document","childNodes","typedarray","Int8Array","reFunctionName","RE_FUNCTION_NAME","isBuffer","_isBuffer","constructor","constructorName","name","ctor","REGEXP","ctorName","type","isConstructorPrototype","w","hasAutomationEqualityBug","k","typeOf","win","EXCLUDED_KEYS","check","HAS_BUILTIN","skipConstructor","skipPrototype","isFcn","p","HAS_ENUM_PROTO_BUG","HAS_NON_ENUM_PROPS_BUG","HAS_WINDOW","error","NON_ENUMERABLE","main$c","CTORS","SyntaxError","ReferenceError","URIError","EvalError","RangeError","isNonNegativeInteger","Obj","isFunction","getProto","getPrototypeOf","proto","getProto$1","isError","reRegExp","getOwnPropertyNames","propertyNames","getOwnPropertyDescriptor","propertyDescriptor","desc","Buffer","b","GlobalBuffer","from","hasNodeBufferSupport","copyBuffer$1","buffer","hasInt8Array","GlobalInt8Array","INT8_MAX","hasInt8ArraySupport","Int8Array$1","hasUint8Array","Uint8Array","GlobalUint8Array","UINT8_MAX","hasUint8ArraySupport","Uint8Array$1","hasUint8ClampedArray","Uint8ClampedArray","GlobalUint8ClampedArray","hasUint8ClampedArraySupport","Uint8ClampedArray$1","hasInt16Array","Int16Array","GlobalInt16Array","INT16_MAX","hasInt16ArraySupport","Int16Array$1","hasUint16Array","Uint16Array","GlobalUint16Array","UINT16_MAX","hasUint16ArraySupport","Uint16Array$1","hasInt32Array","Int32Array","GlobalInt32Array","INT32_MAX","hasInt32ArraySupport","Int32Array$1","hasUint32Array","Uint32Array","GlobalUint32Array","hasUint32ArraySupport","Uint32Array$1","hasFloat32Array","Float32Array","GlobalFloat32Array","hasFloat32ArraySupport","Float32Array$1","hasFloat64Array","Float64Array","GlobalFloat64Array","NaN","hasFloat64ArraySupport","Float64Array$1","int8array","uint8array","uint8clampedarray","int16array","uint16array","int32array","uint32array","float32array","float64array","typedArrays","deepCopy","val","copy","cache","refs","level","parent","key","ref","copyBuffer","tmp","message","stack","code","errno","syscall","objectKeys","copyError","Date","RegExp","regexp","Set","Map","freeze","names","create","isExtensible","preventExtensions","isSealed","seal","isFrozen","cloneInstance","hasHasInstanceSymbolSupport","hasInstance","HasInstanceSymbol","hasSupport","instanceOf","ns","hasStack","ctors","typeName"],"mappings":";mOAsBA,IAAIA,EAA0C,mBAA1BC,OAAOC,eAAkCD,OAAOC,eAAiB,KCiCrF,IAAIA,EAAiBD,OAAOC,eCjB5B,SAASC,EAAUC,GAClB,MAA0B,iBAAVA,CACjB,CCAA,SAASC,EAAOC,GACf,IACIC,EADAC,EAAM,GAEV,IAAMD,EAAI,EAAGA,EAAID,EAAGC,IACnBC,GAAO,IAER,OAAOA,CACR,CAcA,SAASC,EAASC,EAAKC,EAAOC,GAC7B,IAAIC,GAAW,EACXC,EAAMH,EAAQD,EAAIK,OACtB,OAAKD,EAAM,IAnCZ,SAA0BJ,GACzB,MAAoB,MAAbA,EAAK,EACb,CAoCMM,CAAiBN,KACrBG,GAAW,EACXH,EAAMA,EAAIO,OAAQ,IAEnBP,EAAM,EACLA,EAAML,EAAOS,GACbT,EAAOS,GAAQJ,EACXG,IACJH,EAAM,IAAMA,IAVLA,CAaT,CCpDA,IAAIQ,EAAYC,OAAOC,UAAUC,YAC7BC,EAAYH,OAAOC,UAAUG,YAajC,SAASC,EAAeC,GACvB,IAAIC,EACAlB,EACAD,EAEJ,OAASkB,EAAME,WACf,IAAK,IAEJD,EAAO,EACP,MACD,IAAK,IAEJA,EAAO,EACP,MACD,IAAK,IACL,IAAK,IAEJA,EAAO,GACP,MAID,QAECA,EAAO,GAKR,GAFAlB,EAAMiB,EAAMG,IACZrB,EAAIsB,SAAUrB,EAAK,KACbsB,SAAUvB,GAAM,CACrB,IAAMJ,EAAUK,GACf,MAAM,IAAIuB,MAAO,2BAA6BvB,GAE/CD,EAAI,CACJ,CAkCD,OAjCKA,EAAI,IAA2B,MAApBkB,EAAME,WAA8B,KAATD,KAC1CnB,EAAI,WAAaA,EAAI,GAEjBA,EAAI,GACRC,IAASD,GAAIyB,SAAUN,GAClBD,EAAMQ,YACVzB,EAAMC,EAASD,EAAKiB,EAAMQ,UAAWR,EAAMS,WAE5C1B,EAAM,IAAMA,IAEZA,EAAMD,EAAEyB,SAAUN,GACZnB,GAAMkB,EAAMQ,UAENR,EAAMQ,YACjBzB,EAAMC,EAASD,EAAKiB,EAAMQ,UAAWR,EAAMS,WAF3C1B,EAAM,GAIFiB,EAAMU,OACV3B,EAAMiB,EAAMU,KAAO3B,IAGP,KAATkB,IACCD,EAAMW,YACV5B,EAAM,KAAOA,GAEdA,EAAQiB,EAAME,YAAcL,EAAUe,KAAMZ,EAAME,WACjDL,EAAUe,KAAM7B,GAChBU,EAAUmB,KAAM7B,IAEJ,IAATkB,GACCD,EAAMW,WAAiC,MAApB5B,EAAI8B,OAAQ,KACnC9B,EAAM,IAAMA,GAGPA,CACR,CCtFA,IAAI+B,EAAMC,KAAKD,IACXrB,EAAYC,OAAOC,UAAUC,YAC7BC,EAAYH,OAAOC,UAAUG,YAC7BkB,EAAUtB,OAAOC,UAAUqB,QAK3BC,EAAoB,WACpBC,EAAoB,UACpBC,EAAiB,UACjBC,EAAuB,UACvBC,EAA0B,OAC1BC,EAAqB,QACrBC,EAAqB,gBAczB,SAASC,EAAcC,EAAGzB,GACzB,IAAI0B,EACA3C,EAEJ,OAASiB,EAAME,WACf,IAAK,IACL,IAAK,IACJnB,EAAM0C,EAAEE,cAAe3B,EAAMQ,WAC7B,MACD,IAAK,IACL,IAAK,IACJzB,EAAM0C,EAAEG,QAAS5B,EAAMQ,WACvB,MACD,IAAK,IACL,IAAK,IACCM,EAAKW,GAAM,OACfC,EAAS1B,EAAMQ,WACD,IACbkB,GAAU,GAEX3C,EAAM0C,EAAEE,cAAeD,IAEvB3C,EAAM0C,EAAEI,YAAa7B,EAAMQ,WAEtBR,EAAMW,YACX5B,EAAMiC,EAAQJ,KAAM7B,EAAKwC,EAAoB,OAC7CxC,EAAMiC,EAAQJ,KAAM7B,EAAKuC,EAAoB,KAC7CvC,EAAMiC,EAAQJ,KAAM7B,EAAKsC,EAAyB,KAEnD,MACD,QACC,MAAM,IAAIf,MAAO,mCAAqCN,EAAME,WAc7D,OAZAnB,EAAMiC,EAAQJ,KAAM7B,EAAKkC,EAAmB,SAC5ClC,EAAMiC,EAAQJ,KAAM7B,EAAKmC,EAAmB,SACvClB,EAAMW,YACV5B,EAAMiC,EAAQJ,KAAM7B,EAAKoC,EAAgB,OACzCpC,EAAMiC,EAAQJ,KAAM7B,EAAKqC,EAAsB,SAE3CK,GAAK,GAAKzB,EAAMU,OACpB3B,EAAMiB,EAAMU,KAAO3B,GAEpBA,EAAQiB,EAAME,YAAcL,EAAUe,KAAMZ,EAAME,WACjDL,EAAUe,KAAM7B,GAChBU,EAAUmB,KAAM7B,EAElB,CCpEA,SAAS+C,EAAQjD,GAChB,IACIC,EADAC,EAAM,GAEV,IAAMD,EAAI,EAAGA,EAAID,EAAGC,IACnBC,GAAO,IAER,OAAOA,CACR,CCJA,IAAIgD,EAAerC,OAAOqC,aACtBC,EAAUC,MAAMD,QAoBpB,SAASE,EAAOvD,GACf,OAASA,GAAUA,CACpB,CASA,SAASwD,EAAYnC,GACpB,IAAIjB,EAAM,CAAA,EAMV,OALAA,EAAImB,UAAYF,EAAME,UACtBnB,EAAIyB,eAAkC,IAApBR,EAAMQ,UAAyB,EAAIR,EAAMQ,UAC3DzB,EAAIG,MAAQc,EAAMd,MAClBH,EAAIqD,MAAQpC,EAAMoC,OAAS,GAC3BrD,EAAIsD,QAAUrC,EAAMqC,QACbtD,CACR,CAmBA,SAASuD,EAAmBC,GAC3B,IAAIC,EACAJ,EACApC,EACAyC,EACAC,EACA3D,EACA4D,EACAlB,EACA3C,EACA8D,EDnDc3D,EAAKC,EAAOC,EAC1BE,ECoDJ,IAAM2C,EAASO,GACd,MAAM,IAAIM,UAAW,8DAAgEN,EAAS,MAI/F,IAFAxD,EAAM,GACN4D,EAAM,EACA7D,EAAI,EAAGA,EAAIyD,EAAOjD,OAAQR,IAE/B,GADAkB,EAAQuC,EAAQzD,GC1ES,iBD2EVkB,EACdjB,GAAOiB,MACD,CAGN,GAFAwC,OAAgC,IAApBxC,EAAMQ,YAClBR,EAAQmC,EAAYnC,IACRE,UACX,MAAM,IAAI2C,UAAW,oEAAqE/D,EAAG,cAAgBkB,EAAQ,MAMtH,IAJKA,EAAMqC,UACVM,EAAM3C,EAAMqC,SAEbD,EAAQpC,EAAMoC,MACRQ,EAAI,EAAGA,EAAIR,EAAM9C,OAAQsD,IAE9B,OADAH,EAAOL,EAAMvB,OAAQ+B,IAErB,IAAK,IACJ5C,EAAMU,KAAO,IACb,MACD,IAAK,IACJV,EAAMU,KAAO,IACb,MACD,IAAK,IACJV,EAAMS,UAAW,EACjBT,EAAM8C,UAAW,EACjB,MACD,IAAK,IACJ9C,EAAM8C,SAAWV,EAAMW,QAAS,KAAQ,EACxC,MACD,IAAK,IACJ/C,EAAMW,WAAY,EAClB,MACD,QACC,MAAM,IAAIL,MAAO,iBAAmBmC,GAGtC,GAAqB,MAAhBzC,EAAMd,MAAgB,CAG1B,GAFAc,EAAMd,MAAQkB,SAAU4C,UAAWL,GAAO,IAC1CA,GAAO,EACFT,EAAOlC,EAAMd,OACjB,MAAM,IAAI2D,UAAW,wCAA0CF,EAAM,6BAA+B3C,EAAMd,MAAQ,MAE9Gc,EAAMd,MAAQ,IAClBc,EAAMS,UAAW,EACjBT,EAAMd,OAASc,EAAMd,MAEtB,CACD,GAAKsD,GACqB,MAApBxC,EAAMQ,UAAoB,CAG9B,GAFAR,EAAMQ,UAAYJ,SAAU4C,UAAWL,GAAO,IAC9CA,GAAO,EACFT,EAAOlC,EAAMQ,WACjB,MAAM,IAAIqC,UAAW,4CAA8CF,EAAM,6BAA+B3C,EAAMQ,UAAY,MAEtHR,EAAMQ,UAAY,IACtBR,EAAMQ,UAAY,EAClBgC,GAAY,EAEb,CAGF,OADAxC,EAAMG,IAAM6C,UAAWL,GACd3C,EAAME,WACf,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IAECsC,IACJxC,EAAM8C,UAAW,GAElB9C,EAAMG,IAAMJ,EAAeC,GAC3B,MACD,IAAK,IAEJA,EAAMiD,SAAW,EAAgBjD,EAAMQ,WAAa,EACpDR,EAAMG,IAAMT,OAAQM,EAAMG,KAC1B,MACD,IAAK,IAEJ,IAAM+B,EAAOlC,EAAMG,KAAQ,CAE1B,IADAuC,EAAMtC,SAAUJ,EAAMG,IAAK,KAChB,GAAKuC,EAAM,IACrB,MAAM,IAAIpC,MAAO,kCAAoCN,EAAMG,KAE5DH,EAAMG,IAAQ+B,EAAOQ,GAAUhD,OAAQM,EAAMG,KAAQ4B,EAAcW,EACnE,CACD,MACD,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IAMJ,GAJMF,IACLxC,EAAMQ,UAAY,GAEnBiB,EAAIyB,WAAYlD,EAAMG,MAChBE,SAAUoB,GAAM,CACrB,IAAM/C,EAAUsB,EAAMG,KACrB,MAAM,IAAIG,MAAO,yCAA2CvB,GAG7D0C,EAAIzB,EAAMG,IACVH,EAAM8C,UAAW,CACjB,CACD9C,EAAMG,IAAMqB,EAAcC,EAAGzB,GAC7B,MACD,QACC,MAAM,IAAIM,MAAO,sBAAwBN,EAAME,WAG3CF,EAAMiD,UAAY,GAAKjD,EAAMG,IAAIb,OAASU,EAAMiD,WACpDjD,EAAMG,IAAMH,EAAMG,IAAIgD,UAAW,EAAGnD,EAAMiD,WAEtCjD,EAAM8C,SACV9C,EAAMG,IAAMnB,EAASgB,EAAMG,IAAKH,EAAMd,OAASc,EAAMQ,UAAWR,EAAMS,UAC3DT,EAAMd,QACjBc,EAAMG,KDpLSlB,ECoLOe,EAAMG,IDpLRjB,ECoLac,EAAMd,MDpLZC,ECoLmBa,EAAMS,SDnLnDpB,YAAMH,EAAQD,EAAIK,QACX,EACHL,EAERA,EAAM,EACLA,EAAM6C,EAAQzC,GACdyC,EAAQzC,GAAQJ,IC+KfF,GAAOiB,EAAMG,KAAO,GACpBwC,GAAO,CACP,CAEF,OAAO5D,CACR,CEvNA,IAAIqE,EAAK,6EAYT,SAASC,EAAOC,GACf,IAAItD,EAAQ,CACXqC,QAAaiB,EAAO,GAAQlD,SAAUkD,EAAO,GAAK,SAAO,EACzDlB,MAASkB,EAAO,GAChBpE,MAASoE,EAAO,GAChB9C,UAAa8C,EAAO,GACpBpD,UAAaoD,EAAO,IAKrB,MAHoB,MAAfA,EAAO,SAA8B,IAAfA,EAAO,KACjCtD,EAAMQ,UAAY,KAEZR,CACR,CAeA,SAASuD,EAAgBtE,GACxB,IAAIuE,EACAjB,EACAe,EACAG,EAKJ,IAHAlB,EAAS,GACTkB,EAAO,EACPH,EAAQF,EAAGM,KAAMzE,GACTqE,IACPE,EAAUvE,EAAI0E,MAAOF,EAAML,EAAGQ,UAAYN,EAAO,GAAIhE,SACxCA,QACZiD,EAAOsB,KAAML,GAGM,MAAfF,EAAO,GACXf,EAAOsB,KAAM,KAEbtB,EAAOsB,KAAMR,EAAOC,IAErBG,EAAOL,EAAGQ,UACVN,EAAQF,EAAGM,KAAMzE,GAMlB,OAJAuE,EAAUvE,EAAI0E,MAAOF,IACRnE,QACZiD,EAAOsB,KAAML,GAEPjB,CACR,CC3CA,SAASuB,EAAQ7E,GAChB,IAAI8E,EACAjF,EAEJ,GCf0B,iBDeVG,EACf,MAAM,IAAI4D,UAAWiB,EAAQ,kEAAmE7E,IAGjG,IADA8E,EAAO,CAAEC,EAAU/E,IACbH,EAAI,EAAGA,EAAIkE,UAAU1D,OAAQR,IAClCiF,EAAKF,KAAMb,UAAWlE,IAEvB,OAAOmF,EAAYC,MAAO,KAAMH,EACjC,CE7BA,ICkBItF,EDlBA0F,EAAiB3F,OAAOmB,UACxByE,EAAQD,EAAe5D,SACvB8D,EAAeF,EAAeG,iBAC9BC,EAAeJ,EAAeK,iBAC9BC,EAAeN,EAAeO,iBAC9BC,EAAeR,EAAeS,iBCiBjCnG,ECdD,WAEC,IAEC,OADAA,EAAgB,CAAE,EAAE,IAAK,CAAA,IAClB,CACP,CAAC,MAAQoG,GACT,OAAO,CACP,CACF,CDGKC,GACaC,EDqBlB,SAAyBC,EAAKC,EAAMC,GACnC,IAAIvF,EACAwF,EACAC,EACAC,EAEJ,GAAoB,iBAARL,GAA4B,OAARA,GAAsC,mBAAtBZ,EAAMxD,KAAMoE,GAC3D,MAAM,IAAInC,UAAWiB,EAAQ,mEAAoEkB,IAElG,GAA2B,iBAAfE,GAA0C,OAAfA,GAAoD,mBAA7Bd,EAAMxD,KAAMsE,GACzE,MAAM,IAAIrC,UAAWiB,EAAQ,wEAAyEoB,IAyBvG,IAvBAC,EAAa,UAAWD,KAGtBT,EAAa7D,KAAMoE,EAAKC,IACxBN,EAAa/D,KAAMoE,EAAKC,IAGxBtF,EAAYqF,EAAIM,UAChBN,EAAIM,UAAYnB,SAGTa,EAAKC,GACZD,EAAKC,GAASC,EAAWvG,MAGzBqG,EAAIM,UAAY3F,GAEhBqF,EAAKC,GAASC,EAAWvG,OAG3ByG,EAAW,QAASF,EACpBG,EAAW,QAASH,EAEfC,IAAcC,GAAUC,GAC5B,MAAM,IAAI/E,MAAO,wHASlB,OANK8E,GAAUf,GACdA,EAAazD,KAAMoE,EAAKC,EAAMC,EAAWK,KAErCF,GAAUd,GACdA,EAAa3D,KAAMoE,EAAKC,EAAMC,EAAWM,KAEnCR,CACR,EC3DA,IAAAS,EAAehH,EEZf,SAASiH,EAAaV,EAAKC,EAAMtG,GAChCF,EAAgBuG,EAAKC,EAAM,CAC1BU,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,GAEX,CCVA,SAASmH,EAAMnH,GACd,OAAOH,OAAOsH,KAAMtH,OAAQG,GAC7B,CCtBA,IAAIoH,OAAgC,IAAhBvH,OAAOsH,KCK3B,IAAIE,ECMgB,mBAAXC,QACoB,iBAApBA,OAAQ,ODOjB,SAASC,IACR,OAASF,GAAqC,iBAAvBC,OAAOE,WAC/B,CErBA,IAAI/B,EAAQ5F,OAAOmB,UAAUY,SCA7B,IAAI6F,EAAM5H,OAAOmB,UAAU0G,eA4B3B,SAASC,EAAY3H,EAAO4H,GAC3B,OACC5H,SAKMyH,EAAIxF,KAAMjC,EAAO4H,EACzB,CCpCA,IAAIC,EAA0B,mBAAXP,OAA0BA,YAAS,ECKlDQ,EAA+B,mBAAXR,EAA0BA,EAAOE,YAAc,GCiCvE,ICjCIJ,EDiCJW,EATKC,IEDL,SAAsBC,GACrB,IAAIC,EACAC,EACA/H,EAEJ,GAAK6H,QACJ,OAAOxC,EAAMxD,KAAMgG,GAEpBE,EAAMF,EAAGT,GACTU,EAAQP,EAAYM,EAAGT,GAGvB,IACCS,EAAGT,QAAgB,CACnB,CAAC,MAAQtB,GACT,OAAOT,EAAMxD,KAAMgG,EACnB,CAQD,OAPA7H,EAAMqF,EAAMxD,KAAMgG,GAEbC,EACJD,EAAGT,GAAgBW,SAEZF,EAAGT,GAEJpH,CACR,EC3BA,SAAsB6H,GACrB,OAAOxC,EAAMxD,KAAMgG,EACpB,ECJA,SAASG,EAAapI,GACrB,MAAkC,uBAAzB+H,EAAa/H,EACvB,CHCIqI,EAPJ,WACC,OAAOD,EAAa/D,UACrB,CAKOiE,GAKP,IAAAC,EAAenB,EITf,SAASoB,EAA0BnC,EAAKC,EAAMtG,GAC7CF,EAAgBuG,EAAKC,EAAM,CAC1BU,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,GAEX,CClBA,SAASyI,EAAUzI,GAClB,MAA0B,iBAAVA,CACjB,CCfA,IAAI0I,GAAU3H,OAAOC,UAAU0H,QCQ/B,IAAIrB,GAAMW,IAmBV,SAASS,GAAUzI,GAClB,MAAsB,iBAAVA,IACNA,aAAiBe,SAGjBsG,GCnBP,SAAerH,GACd,IAEC,OADA0I,GAAQzG,KAAMjC,IACP,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDaUyC,CAAM3I,GAEoB,oBAAzB+H,EAAa/H,IAGxB,CEjBA,SAASyI,GAAUzI,GAClB,OAAS4I,EAAa5I,IAAW6I,GAAU7I,EAC5C,CCNA,SAASD,GAAUC,GAClB,MAA0B,iBAAVA,CACjB,CC0BA+G,EAAAnH,GAAA,cAAAgJ,GACA7B,EAAAnH,GAAA,WAAAiJ,IC7CA,IAAAC,GAAeC,OCMXnH,GAAWmH,GAAO/H,UAAUY,SCEhC,IAAIyF,GAAMW,IAmBV,SAASjI,GAAUC,GAClB,MAAsB,iBAAVA,IACNA,aAAiB+I,KAGjB1B,GCpBP,SAAerH,GACd,IAEC,OADA4B,GAASK,KAAMjC,IACR,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDcUyC,CAAM3I,GAEoB,oBAAzB+H,EAAa/H,IAGxB,CEVA,SAASD,GAAUC,GAClB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CChBA,SAASuD,GAAOyF,GACf,OAASA,GAAMA,CAChB,CCQA,SAASzF,GAAOvD,GACf,OACCD,GAAUC,IACViJ,GAAOjJ,EAET,CCTA,SAASuD,GAAOvD,GACf,OACCD,GAAUC,IACViJ,GAAOjJ,EAAM0I,UAEf,CCGA,SAASnF,GAAOvD,GACf,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCoBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICDA9B,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICvBA,IAAIK,GAAeH,OAAOI,kBCItBC,GAAeL,GAAOM,kBCVtBC,GAAQlH,KAAKkH,MCHjB,SAASC,GAAWP,GACnB,OAAQM,GAAMN,KAAOA,CACtB,CCPA,SAASO,GAAWvJ,GACnB,OACCA,EAAQwJ,IACRxJ,EAAQyJ,IACRC,GAAO1J,EAET,CCAA,SAASuJ,GAAWvJ,GACnB,OACCD,GAAUC,IACV0J,GAAO1J,EAET,CCLA,SAASuJ,GAAWvJ,GACnB,OACCD,GAAUC,IACV0J,GAAO1J,EAAM0I,UAEf,CCGA,SAASa,GAAWvJ,GACnB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCmBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICxBA,IAAIc,GAAuB9J,OAAOmB,UAAU4I,qBCE5C,IAAAC,IAXSC,GAAO7H,KAAM,OAAQ,KCe9B,SAAS0H,GAAsB3J,EAAO4H,GACrC,IAAIR,EACJ,OACCpH,YAKDoH,EAAO0C,GAAO7H,KAAMjC,EAAO4H,KACbiC,IAAoBpB,GAAUzI,IAIzCuD,GAFFqE,GAAYA,IAGX2B,GAAW3B,IACXA,GAAY,GACZA,EAAW5H,EAAMW,OAGZyG,EACR,CCZA,IAAA2C,GATKzG,MAAMD,QACNC,MAAMD,QARX,SAAkBrD,GACjB,MAAkC,mBAAzB+H,EAAa/H,EACvB,ECOIgK,GAAa,WCGjB,IAAAC,GATK1B,EACU3I,ECAf,SAAsBI,GACrB,OACW,OAAVA,GACiB,iBAAVA,IACNqD,GAASrD,IACc,iBAAjBA,EAAMW,QACb4I,GAAWvJ,EAAMW,SACjBX,EAAMW,QAAU,GAChBX,EAAMW,QAAUuJ,IAChBvC,EAAY3H,EAAO,YAClB2J,GAAsB3J,EAAO,SAEhC,EClCIgF,GAAQ1B,MAAMtC,UAAUgE,MCU5B,SAASmF,GAAcnK,GACtB,OACW,OAAVA,GACiB,iBAAVA,CAET,CCkBA+G,EAAAnH,GAAA,oBCZA,SAAmBwK,GAClB,GAA0B,mBAAdA,EACX,MAAM,IAAIlG,UAAWiB,EAAQ,0DAA2DiF,IAEzF,OASA,SAAgBpK,GACf,IAAIqK,EACAlK,EACJ,IAAMkD,GAASrD,GACd,OAAO,EAGR,GAAa,KADbqK,EAAMrK,EAAMW,QAEX,OAAO,EAER,IAAMR,EAAI,EAAGA,EAAIkK,EAAKlK,IACrB,IAAiC,IAA5BiK,EAAWpK,EAAOG,IACtB,OAAO,EAGT,OAAO,CACP,CACF,CDvBAmK,CAAA1K,KE3BA,IAAIwH,GAAOuC,ICFX,WAEA,GDAuC,aEMnCvC,IAAQuC,GARF,CACT/H,SAAY,MAO0B,YCQnC2I,GAAyB,iBCyC7B,SAASnG,GAASoG,EAAKC,EAAeC,GACrC,IAAIL,EACAlK,EC5CkBH,ED6CtB,KC7CsBA,ED6CFwK,EC3CF,iBAAVxK,GACG,OAAVA,GACwB,iBAAjBA,EAAMW,QACb4I,GAAWvJ,EAAMW,SACjBX,EAAMW,QAAU,GAChBX,EAAMW,QAAUuJ,IDsCazB,EAAU+B,IACvC,MAAM,IAAItG,UAAWiB,EAAQ,8EAA+EqF,IAG7G,GAAa,KADbH,EAAMG,EAAI7J,QAET,OAAQ,EAET,GAA0B,IAArB0D,UAAU1D,OAAe,CAC7B,IAAM4I,GAAWmB,GAChB,MAAM,IAAIxG,UAAWiB,EAAQ,oEAAqEuF,IAEnG,GAAKA,GAAa,EAAI,CACrB,GAAKA,GAAaL,EACjB,OAAQ,EAETlK,EAAIuK,CACP,MACGvK,EAAIkK,EAAMK,GACD,IACRvK,EAAI,EAGR,MACEA,EAAI,EAGL,GAAKoD,GAAOkH,IACX,KAAQtK,EAAIkK,EAAKlK,IAChB,GAAKoD,GAAOiH,EAAIrK,IACf,OAAOA,OAIT,KAAQA,EAAIkK,EAAKlK,IAChB,GAAKqK,EAAKrK,KAAQsK,EACjB,OAAOtK,EAIV,OAAQ,CACT,CE3GA,IAAIsE,GAAK,ICoBT,SAASkG,GAAW3K,GACnB,MAA0B,kBAAVA,CACjB,CCGA,IAAI4K,GAAOC,QCxBPjJ,GAAWiJ,QAAQ7J,UAAUY,SCSjC,IAAIyF,GAAMW,IAqBV,SAAS2C,GAAW3K,GACnB,MAAsB,iBAAVA,IACNA,aAAiB6K,KAGjBxD,GCtBP,SAAerH,GACd,IAEC,OADA4B,GAASK,KAAMjC,IACR,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDgBUyC,CAAM3I,GAEoB,qBAAzB+H,EAAa/H,IAGxB,CERA,SAAS2K,GAAW3K,GACnB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCUA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,IC7CA,IAAIxC,GAAwB,iBAATyE,KAAsBA,KAAO,KCA5CzE,GAA0B,iBAAX0E,OAAwBA,OAAS,KCAhD1E,GAA8B,iBAAf2E,WAA4BA,WAAa,KCK5D,IAAIC,GCsBJ,SAAoBC,GACnB,GAAK7G,UAAU1D,OAAS,CACvB,IAAMgK,GAAWO,GAChB,MAAM,IAAIhH,UAAWiB,EAAQ,yDAA0D+F,IAExF,GAAKA,EACJ,OC1BK,IAAIC,SAAU,eAAd,ED6BN,CAED,GAAKC,GACJ,OAAOA,GAGR,GAAKC,GACJ,OAAOA,GAGR,GAAKC,GACJ,OAAOA,GAGR,MAAM,IAAI3J,MAAO,qDAClB,CD9CW4J,GACPC,GAAWP,GAAKQ,UAAYR,GAAKQ,SAASC,WGR1CC,GAAaC,UC0BjB,SAASC,KACR,MAAO,yBACR,CCMA,IAAIC,GDPI,0BEER,SAASC,GAAU/L,GAClB,OACCmK,GAAcnK,KAGbA,EAAMgM,WAELhM,EAAMiM,aAGgC,mBAA/BjM,EAAMiM,YAAYF,UACzB/L,EAAMiM,YAAYF,SAAU/L,GAIhC,CCTA,SAASkM,GAAiBjE,GACzB,IAAItD,EACAwH,EACAC,EAEJ,IAAe,YADfD,EAAOpE,EAAaE,GAAIjD,MAAO,GAAI,KACC,UAATmH,IAAqBlE,EAAEgE,YAAc,CAE/D,GAA0B,iBAD1BG,EAAOnE,EAAEgE,aACQE,KAChB,OAAOC,EAAKD,KAGb,GADAxH,EAAQF,GAAGM,KAAMqH,EAAKxK,YAErB,OAAO+C,EAAO,EAEf,CACD,OAAKoH,GAAU9D,GACP,SAEDkE,CACR,CCnBApF,EAAAnH,GAAA,SAAAyM,ICXA,IAAIzM,GCNY,mBAAP6E,IAGe,iBAAfkH,IAGa,mBAAbH,GCXT,SAAiBvD,GAChB,OAAOqE,GAAUrE,GAAIhH,aACtB,ECqBA,SAAiBgH,GAChB,IAAIsE,EAGJ,OAAW,OAANtE,EACG,OAKM,YAHdsE,SAActE,GAINqE,GAAUrE,GAAIhH,cAEfsL,CACR,ECzCA,SAASC,GAAwBxM,GAChC,OAASA,EAAMiM,aAAejM,EAAMiM,YAAYjL,YAAchB,CAC/D,6PCTIyM,GAAwB,oBAAX1B,YAA2B,EAASA,OCqDrD,IAAA2B,GA9BA,WACC,IAAIC,EACJ,GAAuB,cAAlBC,GAAQC,IACZ,OAAO,EAER,IAAMF,KAAKE,GACV,KAEmC,IAAjCzI,GAAS0I,GAAeH,IACxBhF,EAAYkF,GAAKF,IACJ,OAAbE,GAAKF,IACkB,WAAvBC,GAAQC,GAAKF,KAEbH,GAAwBK,GAAKF,GAE9B,CAAC,MAAQzG,GACT,OAAO,CACP,CAEF,OAAO,CACR,CAKO6G,GChDH3F,GAA2B,oBAAX2D,WC0BhB5D,oHAKFA,GAJG6F,EChBL,WACC,OAA8C,KAArC7F,EAAM9C,YAAe,IAAK1D,MACpC,CAgBQgI,CAAM,EAAG,GvCFjB,SAAe3I,GACd,OAAKoI,GAAapI,GACVoG,EAASpB,GAAM/C,KAAMjC,IAEtBoG,EAASpG,EACjB,EsCDSoG,EEJT,SAAepG,GACd,IAAIiN,EACAC,EACAC,EACA/M,EACAuM,EACAS,EACAjN,EAGJ,GADAC,EAAM,GACDgI,GAAapI,GAAU,CAE3B,IAAMG,EAAI,EAAGA,EAAIH,EAAMW,OAAQR,IAC9BC,EAAI8E,KAAM/E,EAAEyB,YAGb,OAAOxB,CACP,CACD,GAAsB,iBAAVJ,GAEX,GAAKA,EAAMW,OAAS,IAAMgH,EAAY3H,EAAO,KAC5C,IAAMG,EAAI,EAAGA,EAAIH,EAAMW,OAAQR,IAC9BC,EAAI8E,KAAM/E,EAAEyB,gBAGR,CAEN,IAAe,IADfuL,EAA2B,mBAAVnN,KACQmK,GAAcnK,GACtC,OAAOI,EAER8M,EAAkBG,IAAsBF,CACxC,CACD,IAAMR,KAAK3M,EACFkN,GAAuB,cAANP,IAAuBhF,EAAY3H,EAAO2M,IAClEvM,EAAI8E,KAAMnE,OAAQ4L,IAGpB,GAAKW,GAEJ,IADAL,ECnDF,SAAkBjN,GACjB,IAAoB,IAAfuN,KAAyBb,GAC7B,OAAOF,GAAwBxM,GAEhC,IACC,OAAOwM,GAAwBxM,EAC/B,CAAC,MAAQwN,GACT,OAAO,CACP,CACF,CD0CoBhB,CAAwBxM,GACpCG,EAAI,EAAGA,EAAIsN,GAAe9M,OAAQR,IACvCiN,EAAIK,GAAgBtN,GACZ8M,GAAyB,gBAANG,IAAyBzF,EAAY3H,EAAOoN,IACtEhN,EAAI8E,KAAMnE,OAAQqM,IAIrB,OAAOhN,CACR,EFlCA,IAAAsN,GAAevG,GIxCXwG,GAAQ,CACXhM,MAASA,MACTuC,UAAaA,UACb0J,YAAeA,YACfC,eAAkBA,eAClBC,SAAYA,SACZC,UAAaA,UACbC,WAAcA,YCYf,SAASC,GAAsBjO,GAC9B,OACCuJ,GAAWvJ,IACXA,GAAS,CAEX,CCLA,SAASiO,GAAsBjO,GAC9B,OACCuJ,GAAWvJ,IACXA,EAAM0I,WAAa,CAErB,CCQA,SAASuF,GAAsBjO,GAC9B,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCgBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICrBA,IAAIqF,GAAMrO,OCXV,SAASsO,GAAYnO,GAEpB,MAA6B,aAApB4M,GAAQ5M,EAClB,CCtBA,ICOIoO,GDPAA,GAAWvO,OAAOwO,eCSrBD,GADID,GAAYtO,OAAOwO,gBACZjI,GCKZ,SAAyBC,GACxB,IAAIiI,ECVL,SAAmBjI,GAElB,OAAOA,EAAIM,SACZ,CDOayH,CAAU/H,GACtB,OAAKiI,GAAmB,OAAVA,EACNA,EAEgC,sBAAnCvG,EAAa1B,EAAI4F,aAEd5F,EAAI4F,YAAYjL,UAEnBqF,aAAexG,GACZA,GAAOmB,UAGR,IACR,EDXA,IAAAuN,GAAeH,GGDf,SAASC,GAAgBrO,GACxB,OACCA,QAGO,MAGRA,EAAQH,GAAQG,GAEToO,GAAUpO,GAClB,CCPA,SAASwO,GAASxO,GACjB,GAAsB,iBAAVA,GAAgC,OAAVA,EACjC,OAAO,EAGR,GAAKA,aAAiB2B,MACrB,OAAO,EAGR,KAAQ3B,GAAQ,CACf,GAA8B,mBAAzB+H,EAAa/H,GACjB,OAAO,EAERA,EAAQqO,GAAgBrO,EACxB,CACD,OAAO,CACR,CCtBA,SAASyO,KACR,MAAO,kCACR,CCgBA1H,EAAAnH,GAAA,SDjBQ,oCEfR,IAAIwH,QAA+C,IAA/BvH,OAAO6O,oBCKvBC,GAAgB9O,GAAO6O,oBC2B3B,IAAAC,GATK3B,GDOL,SAA8BhN,GAC7B,OAAO2O,GAAe9O,GAAQG,GAC/B,EELA,SAA8BA,GAC7B,OAAOmH,GAAMtH,GAAQG,GACtB,EC7BIoH,QAAoD,IAApCvH,OAAO+O,yBCAvBC,GAAqBhP,OAAO+O,yBCkChC,IAAAC,GATK7B,GDEL,SAAmChN,EAAO4H,GACzC,IAAIkH,EACJ,OAAK9O,cAIa,KADlB8O,EAAOD,GAAoB7O,EAAO4H,IAF1B,KAG4BkH,CACrC,EENA,SAAmC9O,EAAO4H,GACzC,OAAKD,EAAY3H,EAAO4H,GAChB,CACNZ,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,EAAO4H,IAGX,IACR,iirBCtCIhI,GAA0CmP,0cCmB1C3C,GCnBAA,UAA2B2C,ODuB9B3C,GERD,WACC,IAAIhF,EACA4H,EAEJ,GAA6B,mBAAjBC,GACX,OAAO,EAGR,IAMC7H,EACC2E,GALAiD,EADiC,mBAAtBC,GAAaC,KACpBD,GAAaC,KAAM,CAAE,EAAG,EAAG,EAAG,IAE9B,IAAID,GAAc,CAAE,EAAG,EAAG,EAAG,MAItB,IAAXD,EAAG,IACQ,IAAXA,EAAG,IACQ,IAAXA,EAAG,IACQ,IAAXA,EAAG,EAEJ,CAAC,MAAQ9I,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CFpBK+H,GACGvP,GGdR,WACC,MAAM,IAAI+B,MAAO,kBAClB,EHoBA,IAAAoN,GAAe3C,GIIf,IAAAgD,GC3BWjB,GAAYY,GAAOG,MCiB9B,SAAqBG,GACpB,IAAMtD,GAAUsD,GACf,MAAM,IAAInL,UAAWiB,EAAQ,wDAAyDkK,IAEvF,OAAON,GAAOG,KAAMG,EACrB,ECLA,SAAqBA,GACpB,IAAMtD,GAAUsD,GACf,MAAM,IAAInL,UAAWiB,EAAQ,wDAAyDkK,IAEvF,OAAO,IAAIN,GAAQM,EACpB,ECvBIC,GAAsC,mBAAd1D,UC4B5B,ICjCIhM,GAA8B,mBAAdgM,UAA6BA,UAAY,KCA7D,ICmBIQ,GDnBAA,GAA8B,mBAAdR,UAA6BA,eAAY,ECuB5DQ,GCND,WACC,IAAIhF,EACAoD,ELOiBxK,EKLrB,GAAgC,mBAApBuP,GACX,OAAO,EAGR,IACC/E,EAAM,IAAI+E,GAAiB,CAAE,EAAG,MAAO,KAAMC,MLAzBxP,EKENwK,EADdpD,GLCEkI,IAAgBtP,aAAiB4L,WACV,uBAAzB7D,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEO,MDDZA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBKqI,GACGrJ,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAA+N,GAAetD,GIxBXuD,GAAwC,mBAAfC,WC4B7B,ICjCIhQ,GAA+B,mBAAfgQ,WAA8BA,WAAa,KCA/D,ICmBIxD,GDnBAA,GAA+B,mBAAfwD,WAA8BA,gBAAa,ECuB9DxD,GCPD,WACC,IAAIhF,EACAoD,ELQkBxK,EKNtB,GAAiC,mBAArB6P,GACX,OAAO,EAGR,IAECrF,EAAM,IAAIqF,GADVrF,EAAM,CAAE,EAAG,MAAO,KAAMsF,IAAaA,MLChB9P,EKENwK,EADfpD,GLCEuI,IAAiB3P,aAAiB4P,YACX,wBAAzB7H,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQsF,MAAbtF,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBK2I,GACG3J,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAqO,GAAe5D,GGxBX6D,GAAsD,mBAAtBC,kBCLpC,IAAItQ,GAAsC,mBAAtBsQ,kBAAqCA,kBAAoB,KCA7E,ICmBI9D,GDnBAA,GAAsC,mBAAtB8D,kBAAqCA,uBAAoB,ECuB5E9D,GCRD,WACC,IAAIhF,EACAoD,EJSyBxK,EIP7B,GAAwC,mBAA5BmQ,GACX,OAAO,EAGR,IACC3F,EAAM,IAAI2F,GAAyB,EAAG,EAAG,EAAG,EAAG,KAAM,KAAM,IAAK,MJEpCnQ,EIANwK,EADtBpD,GJGE6I,IAAwBjQ,aAAiBkQ,mBAClB,+BAAzBnI,EAAa/H,KIFC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,MAAbA,EAAK,IACQ,MAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBKgJ,GACGhK,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAA0O,GAAejE,GGxBXkE,GAAwC,mBAAfC,WC4B7B,ICjCI3Q,GAA+B,mBAAf2Q,WAA8BA,WAAa,KCA/D,ICmBInE,GDnBAA,GAA+B,mBAAfmE,WAA8BA,gBAAa,ECuB9DnE,GCND,WACC,IAAIhF,EACAoD,ELOkBxK,EKLtB,GAAiC,mBAArBwQ,GACX,OAAO,EAGR,IACChG,EAAM,IAAIgG,GAAkB,CAAE,EAAG,MAAO,KAAMC,QLAzBzQ,EKENwK,EADfpD,GLCEkJ,IAAiBtQ,aAAiBuQ,YACX,wBAAzBxI,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,QDDbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBKsJ,GACGtK,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAAgP,GAAevE,GIxBXwE,GAA0C,mBAAhBC,YC4B9B,ICjCIjR,GAAgC,mBAAhBiR,YAA+BA,YAAc,KCAjE,ICmBIzE,GDnBAA,GAAgC,mBAAhByE,YAA+BA,iBAAc,ECuBhEzE,GCPD,WACC,IAAIhF,EACAoD,ELQmBxK,EKNvB,GAAkC,mBAAtB8Q,GACX,OAAO,EAGR,IAECtG,EAAM,IAAIsG,GADVtG,EAAM,CAAE,EAAG,MAAO,KAAMuG,MAAcA,QLChB/Q,EKENwK,EADhBpD,GLCEwJ,IAAkB5Q,aAAiB6Q,aACZ,yBAAzB9I,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQuG,QAAbvG,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBK4J,GACG5K,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAsP,GAAe7E,GGxBX8E,GAAwC,mBAAfC,WC4B7B,ICjCIvR,GAA+B,mBAAfuR,WAA8BA,WAAa,KCA/D,ICmBI/E,GDnBAA,GAA+B,mBAAf+E,WAA8BA,gBAAa,ECuB9D/E,GCND,WACC,IAAIhF,EACAoD,ELOkBxK,EKLtB,GAAiC,mBAArBoR,GACX,OAAO,EAGR,IACC5G,EAAM,IAAI4G,GAAkB,CAAE,EAAG,MAAO,KAAMC,aLAzBrR,EKENwK,EADfpD,GLCE8J,IAAiBlR,aAAiBmR,YACX,wBAAzBpJ,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,aDDbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBKkK,GACGlL,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAA4P,GAAenF,GIxBXoF,GAA0C,mBAAhBC,YCL9B,IAAI7R,GAAgC,mBAAhB6R,YAA+BA,YAAc,KCAjE,ICmBIrF,GDnBAA,GAAgC,mBAAhBqF,YAA+BA,iBAAc,ECuBhErF,GCPD,WACC,IAAIhF,EACAoD,EJQmBxK,EINvB,GAAkC,mBAAtB0R,GACX,OAAO,EAGR,IAEClH,EAAM,IAAIkH,GADVlH,EAAM,CAAE,EAAG,MAAO,KAAMR,WAAcA,aJChBhK,EIENwK,EADhBpD,GJCEoK,IAAkBxR,aAAiByR,aACZ,yBAAzB1J,EAAa/H,KIAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQR,aAAbQ,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBKuK,GACGvL,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAiQ,GAAexF,GGxBXyF,GAA4C,mBAAjBC,aCL/B,IAAIlS,GAAiC,mBAAjBkS,aAAgCA,aAAe,KCAnE,ICmBI1F,GDnBAA,GAAiC,mBAAjB0F,aAAgCA,kBAAe,ECuBlE1F,GCPD,WACC,IAAIhF,EACAoD,EJQoBxK,EINxB,GAAmC,mBAAvB+R,GACX,OAAO,EAGR,IACCvH,EAAM,IAAIuH,GAAoB,CAAE,EAAK,MAAO,KAAM,OJC3B/R,EICNwK,EADjBpD,GJEEyK,IAAmB7R,aAAiB8R,cACb,0BAAzB/J,EAAa/H,KIDC,IAAbwK,EAAK,IACQ,oBAAbA,EAAK,KACS,oBAAdA,EAAK,IACLA,EAAK,KAAQhB,EAEd,CAAC,MAAQtD,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDjBK4K,GACG5L,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAsQ,GAAe7F,GGxBX8F,GAA4C,mBAAjBC,aCL/B,IAAIvS,GAAiC,mBAAjBuS,aAAgCA,aAAe,KCAnE,ICmBI/F,GDnBAA,GAAiC,mBAAjB+F,aAAgCA,kBAAe,ECuBlE/F,GCRD,WACC,IAAIhF,EACAoD,EJSoBxK,EIPxB,GAAmC,mBAAvBoS,GACX,OAAO,EAGR,IACC5H,EAAM,IAAI4H,GAAoB,CAAE,EAAK,MAAO,KAAMC,MJE3BrS,EIANwK,EADjBpD,GJGE8K,IAAmBlS,aAAiBmS,cACb,0BAAzBpK,EAAa/H,KIFC,IAAbwK,EAAK,IACQ,OAAbA,EAAK,KACS,OAAdA,EAAK,IACLA,EAAK,IAAQA,EAAK,EAEnB,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDhBKkL,GACGlM,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAA4Q,GAAenG,GGJf,SAASoG,GAAWhI,GACnB,OAAO,IAAIoB,GAAWpB,EACvB,CASA,SAASiI,GAAYjI,GACpB,OAAO,IAAIoF,GAAYpF,EACxB,CASA,SAASkI,GAAmBlI,GAC3B,OAAO,IAAI0F,GAAmB1F,EAC/B,CASA,SAASmI,GAAYnI,GACpB,OAAO,IAAI+F,GAAY/F,EACxB,CASA,SAASoI,GAAapI,GACrB,OAAO,IAAIqG,GAAarG,EACzB,CASA,SAASqI,GAAYrI,GACpB,OAAO,IAAI2G,GAAY3G,EACxB,CASA,SAASsI,GAAatI,GACrB,OAAO,IAAIiH,GAAajH,EACzB,CASA,SAASuI,GAAcvI,GACtB,OAAO,IAAIsH,GAActH,EAC1B,CASA,SAASwI,GAAcxI,GACtB,OAAO,IAAI2H,GAAc3H,EAC1B,CA+BA,IAAAyI,GAtBW,CACTT,UAAaA,GACbC,WAAcA,GACdC,kBAAqBA,GACrBC,WAAcA,GACdC,YAAeA,GACfC,WAAcA,GACdC,YAAeA,GACfC,aAAgBA,GAChBC,aAAgBA,ICOlB,SAASE,GAAUC,EAAKC,EAAMC,EAAOC,EAAMC,GAC1C,IAAIC,EACArM,EACAgF,EACA2C,EACA1C,EACAqH,EACAC,EACA1K,EACA7I,EACA8D,EAKJ,GAHAsP,GAAS,EAIO,iBAARJ,GACC,OAARA,EAEA,OAAOA,EAER,GAAKpH,GAAUoH,GACd,OAAOQ,GAAYR,GAEpB,GAAK3E,GAAS2E,GACb,OAnFF,SAAoB3F,GACnB,IAEIrG,EACA2H,EACA8E,EACAH,EACAvN,EACA/F,EAPAkT,EAAQ,GACRC,EAAO,GA8BX,IArBApN,EAAM,IAAIsH,EAAMvB,YAAauB,EAAMqG,SAEnCR,EAAMnO,KAAMsI,GACZ8F,EAAKpO,KAAMgB,GAGNsH,EAAMsG,QACV5N,EAAI4N,MAAQtG,EAAMsG,OAGdtG,EAAMuG,OACV7N,EAAI6N,KAAOvG,EAAMuG,MAEbvG,EAAMwG,QACV9N,EAAI8N,MAAQxG,EAAMwG,OAEdxG,EAAMyG,UACV/N,EAAI+N,QAAUzG,EAAMyG,SAGrB9M,EAAO+M,GAAY1G,GACbrN,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAC7BsT,EAAMtM,EAAMhH,GAEPwH,EADLmH,EAAOD,GAAoBrB,EAAOiG,GACX,WACtBG,EAAQvQ,GAASmK,EAAOiG,IAAY,GAAK,GACzC3E,EAAK9O,MAAQkT,GAAU1F,EAAOiG,GAAOG,EAAKP,EAAOC,GAAO,IAEzDxT,EAAgBoG,EAAKuN,EAAK3E,GAE3B,OAAO5I,CACR,CAyCSiO,CAAWhB,GAKnB,GAAc,UAFdhH,EAAOS,GAAQuG,IAGd,OAAO,IAAIiB,MAAOjB,GAEnB,GAAc,WAAThH,EACJ,OC5JF,SAAuB7L,GACtB,IAAMmI,EAAUnI,GACf,MAAM,IAAI4D,UAAWiB,EAAQ,2EAA4E7E,IAM1G,OAHAA,EnFRO,mCmFQUyE,KAAMzE,IAGN,IAAI+T,OAAQ/T,EAAI,GAAIA,EAAI,IAAO,IACjD,CDmJSgU,CAAQnB,EAAIvR,YAEpB,GAAc,QAATuK,EACJ,OAAO,IAAIoI,IAAKpB,GAEjB,GAAc,QAAThH,EACJ,OAAO,IAAIqI,IAAKrB,GAEjB,GACU,WAAThH,GACS,YAATA,GACS,WAATA,EAGA,OAAOgH,EAAIzK,UAGZ,GADA0D,EAAO6G,GAAa9G,GAEnB,OAAOC,EAAM+G,GAGd,GACU,UAAThH,GACS,WAATA,EAGA,MAA8B,mBAAlBtM,OAAO4U,OA1KrB,SAAwBtB,GACvB,IAAIE,EACAqB,EACAvI,EACAmH,EACAxE,EACA8E,EACAF,EACAvT,EAUJ,IARAkT,EAAQ,GACRC,EAAO,GAEPI,EAAM7T,OAAO8U,OAAQtG,GAAgB8E,IACrCE,EAAMnO,KAAMiO,GACZG,EAAKpO,KAAMwO,GAEXgB,EAAQ/F,GAAewE,GACjBhT,EAAI,EAAGA,EAAIuU,EAAM/T,OAAQR,IAC9BgM,EAAOuI,EAAOvU,GAETwH,EADLmH,EAAOD,GAAoBsE,EAAKhH,GACT,WACtByH,EAAQvQ,GAAS8P,EAAIhH,IAAY,GAAK,GACtC2C,EAAK9O,MAAQkT,GAAUC,EAAIhH,GAAOyH,EAAKP,EAAOC,GAAO,IAEtDxT,EAAgB4T,EAAKvH,EAAM2C,GAW5B,OATMjP,OAAO+U,aAAczB,IAC1BtT,OAAOgV,kBAAmBnB,GAEtB7T,OAAOiV,SAAU3B,IACrBtT,OAAOkV,KAAMrB,GAET7T,OAAOmV,SAAU7B,IACrBtT,OAAO4U,OAAQf,GAETA,CACR,CAsIUuB,CAAe9B,GAEhB,GAIR,GADAhM,EAAO+M,GAAYf,GACdI,EAAQ,EAEZ,IADAC,EAASrH,EACHlI,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAE7B+E,EAAImK,EADJM,EAAMtM,EAAMlD,IAIZkI,EAAOS,GAAQ5D,GAED,iBAANA,GACD,OAANA,GAEU,UAATmD,GACS,WAATA,GAEDJ,GAAU/C,GAEM,WAAXwK,GAEC7L,EADLmH,EAAOD,GAAoBsE,EAAKM,GACT,WACtB3E,EAAK9O,MAAQkT,GAAUlK,IAExBlJ,EAAgBsT,EAAMK,EAAK3E,IAE3BsE,EAAMK,GAAQP,GAAUlK,IAMd,KADZ7I,EAAIiE,GAASiP,EAAOrK,KAMpB0K,EAAQrQ,GAAS2F,GAAQ,IAAI1F,MAAO0F,EAAErI,QAAW,GACjD0S,EAAMnO,KAAM8D,GACZsK,EAAKpO,KAAMwO,GACK,UAAXF,EACJJ,EAAMK,GAAQP,GAAUlK,EAAG0K,EAAKL,EAAOC,EAAMC,IAGxC5L,EADLmH,EAAOD,GAAoBsE,EAAKM,GACT,WACtB3E,EAAK9O,MAAQkT,GAAUlK,EAAG0K,EAAKL,EAAOC,EAAMC,IAE7CzT,EAAgBsT,EAAMK,EAAK3E,KAd3BsE,EAAMK,GAAQH,EAAMnT,QAiBhB,GAAc,UAATgM,EACX,IAAMlI,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAE7BmP,EADAK,EAAMtM,EAAMlD,IACEkP,EAAKM,QAGpB,IAAMxP,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAC7BwP,EAAMtM,EAAMlD,GACZ6K,EAAOD,GAAoBsE,EAAKM,GAChC3T,EAAgBsT,EAAMK,EAAK3E,GAY7B,OATMjP,OAAO+U,aAAczB,IAC1BtT,OAAOgV,kBAAmBzB,GAEtBvT,OAAOiV,SAAU3B,IACrBtT,OAAOkV,KAAM3B,GAETvT,OAAOmV,SAAU7B,IACrBtT,OAAO4U,OAAQrB,GAETA,CACR,CElPA,SAASA,GAAMpT,EAAOuT,GACrB,IAAInT,EACJ,GAAKiE,UAAU1D,OAAS,EAAI,CAC3B,IAAMsN,GAAsBsF,GAC3B,MAAM,IAAIrP,UAAWiB,EAAQ,gFAAiFoO,IAE/G,GAAe,IAAVA,EACJ,OAAOvT,CAEV,MACEuT,EAAQ/J,GAGT,OAAO0J,GAAUlT,EADjBI,EAAQiD,GAASrD,GAAY,IAAIsD,MAAOtD,EAAMW,QAAW,GAC5B,CAACX,GAAQ,CAACI,GAAMmT,EAC9C,CClCA,SAAS2B,KACR,MACmB,mBAAX5N,GACoB,iBAApBA,EAAQ,QACfK,EAAYL,EAAQ,gBACU,iBAAvBA,EAAO6N,WAEhB,CCIA,IAAIC,GAAsBF,KAAkC5N,OAAO6N,YAAc,KCnB7EE,GAAaH,KAiCjB,SAASI,GAAYtV,EAAOiM,GAE3B,GACwB,mBAAhBA,KAENoJ,IACuB,iBAAhBpJ,GACqC,mBAArCA,EAAamJ,KAGrB,MAAM,IAAIlR,UAAWiB,EAAQ,mEAAoE8G,IAElG,OAASjM,aAAiBiM,CAC3B,CCrDA,IAAI0B,GAAQ,CACX,CAAEzJ,UAAW,aACb,CAAE0J,YAAa,eACf,CAAEC,eAAgB,kBAClB,CAAEG,WAAY,cACd,CAAEF,SAAU,YACZ,CAAEC,UAAW,aACb,CAAEpM,MAAO,UCWN,IAAA4T,GAAK,CAAG,SAUZxO,EAAawO,GAAI,eCPjB,SAAsB9B,EAAKzT,GAC1B,IAAIwV,EACApJ,EACAjF,EACAjB,EACAyG,EACAxM,EACJ,GACCH,GACAA,EAAMuM,MACN9D,EAAUzI,EAAM6T,WAEhBzH,EAAOqJ,GAAOzV,EAAMuM,OACR,CAGX,IAFArG,EAAM,IAAIkG,EAAMpM,EAAM6T,SACtB1M,EAAO+M,GAAYlU,GACbG,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAE7B,GACO,UAFPwM,EAAIxF,EAAMhH,KAGH,YAANwM,GACM,SAANA,EAHD,CAOA,GAAW,UAANA,EAAgB,CACpB,IAAMlE,EAAUzI,EAAM2M,IACrB,SAED6I,GAAW,CACX,CACDtP,EAAKyG,GAAM3M,EAAO2M,EAPjB,CAYF,OAHM6I,GAAY/M,EAAUvC,EAAI4N,SAC/B5N,EAAI4N,MAAQ,IAEN5N,CACP,CAEF,OAAOlG,CACR,IDvBA+G,EAAawO,GAAI,cEjBjB,SAAqBrP,GACpB,IAAIiB,EACA/G,EACAD,EACJ,IAAMqO,GAAStI,GACd,MAAM,IAAIhC,UAAWiB,EAAQ,+DAAgEe,IA2B9F,KAzBA9F,EAAM,CAAA,GAGFmM,KCXL,SAAmBiB,GAClB,IAAIvF,EACA9H,EAGJ,IAAMA,EAAI,EAAGA,EAAIwN,GAAMhN,OAAQR,IAC9B,GAAKmV,GAAY9H,EAAOG,GAAOxN,GAAK,IACnC,OAAOwN,GAAOxN,GAAK,GAIrB,KAAQqN,GAAQ,CAEf,IADAvF,EAAIqE,GAAUkB,GACRrN,EAAI,EAAGA,EAAIwN,GAAMhN,OAAQR,IAC9B,GAAK8H,IAAM0F,GAAOxN,GAAK,GACtB,OAAOwN,GAAOxN,GAAK,GAGrBqN,EAAQa,GAAgBb,EACxB,CACF,CDTYkI,CAAUxP,GACrB9F,EAAIyT,QAAU3N,EAAI2N,QAGb3N,EAAIiG,OACR/L,EAAI+L,KAAOjG,EAAIiG,MAEXjG,EAAI4N,QACR1T,EAAI0T,MAAQ5N,EAAI4N,OAGZ5N,EAAI6N,OACR3T,EAAI2T,KAAO7N,EAAI6N,MAEX7N,EAAI8N,QACR5T,EAAI4T,MAAQ9N,EAAI8N,OAEZ9N,EAAI+N,UACR7T,EAAI6T,QAAU/N,EAAI+N,SAGnB9M,EAAO+M,GAAYhO,GACb/F,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAC7BC,EAAK+G,EAAKhH,IAAOiT,GAAMlN,EAAKiB,EAAKhH,KAElC,OAAOC,CACR","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206]} \ No newline at end of file diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts deleted file mode 100644 index 1cf4bf9..0000000 --- a/docs/types/index.d.ts +++ /dev/null @@ -1,66 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/* eslint-disable max-lines */ - -import reviveError = require( './../../reviver' ); -import error2json = require( './../../to-json' ); - -/** -* Interface describing the `error` namespace. -*/ -interface Namespace { - /** - * Revives a JSON-serialized error object. - * - * @param key - key - * @param value - value - * @returns value or error object - * - * @example - * var str = '{"type":"TypeError","message":"beep"}'; - * var err = JSON.parse( str, ns.reviveError ); - * // returns - */ - reviveError: typeof reviveError; - - /** - * Returns a JSON representation of an error object. - * - * @param err - error to serialize - * @returns JSON representation - * - * @example - * var err = new Error( 'beep' ); - * var json = ns.error2json( err ); - * // returns {...} - */ - error2json: typeof error2json; -} - -/** -* Errors. -*/ -declare var ns: Namespace; - - -// EXPORTS // - -export = ns; diff --git a/docs/types/test.ts b/docs/types/test.ts deleted file mode 100644 index c2dd14e..0000000 --- a/docs/types/test.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -/* eslint-disable @typescript-eslint/no-unused-expressions */ - -import ns = require( './index' ); - - -// TESTS // - -// The exported value is the expected interface... -{ - ns; // $ExpectType Namespace -} diff --git a/examples/index.js b/examples/index.js deleted file mode 100644 index c7e940d..0000000 --- a/examples/index.js +++ /dev/null @@ -1,24 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var objectKeys = require( '@stdlib/utils/keys' ); -var ns = require( './../lib' ); - -console.log( objectKeys( ns ) ); diff --git a/index.js b/index.js new file mode 100644 index 0000000..9c4860d --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +// Copyright (c) 2026 The Stdlib Authors. License is Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0 +!function(r,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("buffer")):"function"==typeof define&&define.amd?define(["buffer"],e):(r="undefined"!=typeof globalThis?globalThis:r||self).ns=e(r.require$$0)}(this,(function(r){"use strict";var e="function"==typeof Object.defineProperty?Object.defineProperty:null;var t=Object.defineProperty;function n(r){return"number"==typeof r}function o(r){var e,t="";for(e=0;e0&&(t-=1),n=r.toExponential(t)):n=r.toPrecision(e.precision),e.alternate||(n=p.call(n,w,"$1e"),n=p.call(n,h,"e"),n=p.call(n,b,""));break;default:throw new Error("invalid double notation. Value: "+e.specifier)}return n=p.call(n,y,"e+0$1"),n=p.call(n,v,"e-0$1"),e.alternate&&(n=p.call(n,g,"$1."),n=p.call(n,d,"$1.e")),r>=0&&e.sign&&(n=e.sign+n),n=e.specifier===s.call(e.specifier)?s.call(n):l.call(n)}function E(r){var e,t="";for(e=0;e127)throw new Error("invalid character code. Value: "+o.arg);o.arg=O(u)?String(o.arg):j(u)}break;case"e":case"E":case"f":case"F":case"g":case"G":if(e||(o.precision=6),s=parseFloat(o.arg),!isFinite(s)){if(!n(o.arg))throw new Error("invalid floating-point number. Value: "+f);s=o.arg,o.padZeros=!1}o.arg=m(s,o);break;default:throw new Error("invalid specifier: "+o.specifier)}o.maxWidth>=0&&o.arg.length>o.maxWidth&&(o.arg=o.arg.substring(0,o.maxWidth)),o.padZeros?o.arg=i(o.arg,o.width||o.precision,o.padRight):o.width&&(o.arg=(v=o.arg,g=o.width,d=o.padRight,b=void 0,(b=g-v.length)<0?v:v=d?v+E(b):E(b)+v)),f+=o.arg||"",l+=1}return f}var x=/%(?:([1-9]\d*)\$)?([0 +\-#]*)(\*|\d+)?(?:(\.)(\*|\d+)?)?[hlL]?([%A-Za-z])/g;function U(r){var e={mapping:r[1]?parseInt(r[1],10):void 0,flags:r[2],width:r[3],precision:r[5],specifier:r[6]};return"."===r[4]&&void 0===r[5]&&(e.precision="1"),e}function _(r){var e,t,n,o;for(t=[],o=0,n=x.exec(r);n;)(e=r.slice(o,x.lastIndex-n[0].length)).length&&t.push(e),"%"===n[6]?t.push("%"):t.push(U(n)),o=x.lastIndex,n=x.exec(r);return(e=r.slice(o)).length&&t.push(e),t}function T(r){var e,t;if("string"!=typeof r)throw new TypeError(T("invalid argument. First argument must be a string. Value: `%s`.",r));for(e=[_(r)],t=1;tdr&&hr(r)}function mr(r){return ir(r)&&wr(r)}function Er(r){return fr(r)&&wr(r.valueOf())}function jr(r){return mr(r)||Er(r)}Q(jr,"isPrimitive",mr),Q(jr,"isObject",Er);var Ar=Object.prototype.propertyIsEnumerable;var Or=!Ar.call("beep","0");function Ir(r,e){var t;return null!=r&&(!(t=Ar.call(r,e))&&Or&&or(r)?!pr(e=+e)&&mr(e)&&e>=0&&e=0&&r.length<=xr&&Z(r,"callee")&&!Ir(r,"callee")},_r=Array.prototype.slice;function Tr(r){return null!==r&&"object"==typeof r}Q(Tr,"isObjectLikeArray",function(r){if("function"!=typeof r)throw new TypeError(T("invalid argument. Must provide a function. Value: `%s`.",r));return function(e){var t,n;if(!Sr(e))return!1;if(0===(t=e.length))return!1;for(n=0;n=0&&i.length<=Pr||rr(r)))throw new TypeError(T("invalid argument. First argument must be an array-like object. Value: `%s`.",r));if(0===(n=r.length))return-1;if(3===arguments.length){if(!mr(t))throw new TypeError(T("invalid argument. Third argument must be an integer. Value: `%s`.",t));if(t>=0){if(t>=n)return-1;o=t}else(o=n+t)<0&&(o=0)}else o=0;if(vr(e)){for(;o0&&!Z(r,"0"))for(u=0;u=0}function le(r){return Er(r)&&r.valueOf()>=0}function se(r){return fe(r)||le(r)}Q(se,"isPrimitive",fe),Q(se,"isObject",le);var pe=Object;function ye(r){return"function"===Qr(r)}var ve,ge=Object.getPrototypeOf;ve=ye(Object.getPrototypeOf)?ge:function(r){var e=function(r){return r.__proto__}(r);return e||null===e?e:"[object Function]"===H(r.constructor)?r.constructor.prototype:r instanceof pe?pe.prototype:null};var de=ve;function be(r){return null==r?null:(r=pe(r),de(r))}function he(r){if("object"!=typeof r||null===r)return!1;if(r instanceof Error)return!0;for(;r;){if("[object Error]"===H(r))return!0;r=be(r)}return!1}function we(){return/^\/((?:\\\/|[^\/])+)\/([imgy]*)$/}Q(we,"REGEXP",/^\/((?:\\\/|[^\/])+)\/([imgy]*)$/);var me=void 0!==Object.getOwnPropertyNames,Ee=pe.getOwnPropertyNames;var je=me?function(r){return Ee(pe(r))}:function(r){return ue(pe(r))},Ae=void 0!==Object.getOwnPropertyDescriptor,Oe=Object.getOwnPropertyDescriptor;var Ie=Ae?function(r,e){var t;return null==r||void 0===(t=Oe(r,e))?null:t}:function(r,e){return Z(r,e)?{configurable:!0,enumerable:!0,writable:!0,value:r[e]}:null},Se="function"==typeof Buffer?Buffer:null;var xe,Ue=r.Buffer;xe=function(){var r,e;if("function"!=typeof Se)return!1;try{r=Jr(e="function"==typeof Se.from?Se.from([1,2,3,4]):new Se([1,2,3,4]))&&1===e[0]&&2===e[1]&&3===e[2]&&4===e[3]}catch(e){r=!1}return r}()?Ue:function(){throw new Error("not implemented")};var _e=xe;var Te=ye(_e.from)?function(r){if(!Jr(r))throw new TypeError(T("invalid argument. Must provide a Buffer. Value: `%s`.",r));return _e.from(r)}:function(r){if(!Jr(r))throw new TypeError(T("invalid argument. Must provide a Buffer. Value: `%s`.",r));return new _e(r)},ke="function"==typeof Int8Array;var Fe="function"==typeof Int8Array?Int8Array:null;var Pe,Ve="function"==typeof Int8Array?Int8Array:void 0;Pe=function(){var r,e,t;if("function"!=typeof Fe)return!1;try{e=new Fe([1,3.14,-3.14,128]),t=e,r=(ke&&t instanceof Int8Array||"[object Int8Array]"===H(t))&&1===e[0]&&3===e[1]&&-3===e[2]&&-128===e[3]}catch(e){r=!1}return r}()?Ve:function(){throw new Error("not implemented")};var Re=Pe,Ce="function"==typeof Uint8Array;var $e="function"==typeof Uint8Array?Uint8Array:null;var Be,Ne="function"==typeof Uint8Array?Uint8Array:void 0;Be=function(){var r,e,t;if("function"!=typeof $e)return!1;try{e=new $e(e=[1,3.14,-3.14,256,257]),t=e,r=(Ce&&t instanceof Uint8Array||"[object Uint8Array]"===H(t))&&1===e[0]&&3===e[1]&&253===e[2]&&0===e[3]&&1===e[4]}catch(e){r=!1}return r}()?Ne:function(){throw new Error("not implemented")};var Me=Be,Le="function"==typeof Uint8ClampedArray;var Ge="function"==typeof Uint8ClampedArray?Uint8ClampedArray:null;var ze,We="function"==typeof Uint8ClampedArray?Uint8ClampedArray:void 0;ze=function(){var r,e,t;if("function"!=typeof Ge)return!1;try{e=new Ge([-1,0,1,3.14,4.99,255,256]),t=e,r=(Le&&t instanceof Uint8ClampedArray||"[object Uint8ClampedArray]"===H(t))&&0===e[0]&&0===e[1]&&1===e[2]&&3===e[3]&&5===e[4]&&255===e[5]&&255===e[6]}catch(e){r=!1}return r}()?We:function(){throw new Error("not implemented")};var Xe=ze,Ze="function"==typeof Int16Array;var De="function"==typeof Int16Array?Int16Array:null;var Ye,qe="function"==typeof Int16Array?Int16Array:void 0;Ye=function(){var r,e,t;if("function"!=typeof De)return!1;try{e=new De([1,3.14,-3.14,32768]),t=e,r=(Ze&&t instanceof Int16Array||"[object Int16Array]"===H(t))&&1===e[0]&&3===e[1]&&-3===e[2]&&-32768===e[3]}catch(e){r=!1}return r}()?qe:function(){throw new Error("not implemented")};var He=Ye,Je="function"==typeof Uint16Array;var Ke="function"==typeof Uint16Array?Uint16Array:null;var Qe,rt="function"==typeof Uint16Array?Uint16Array:void 0;Qe=function(){var r,e,t;if("function"!=typeof Ke)return!1;try{e=new Ke(e=[1,3.14,-3.14,65536,65537]),t=e,r=(Je&&t instanceof Uint16Array||"[object Uint16Array]"===H(t))&&1===e[0]&&3===e[1]&&65533===e[2]&&0===e[3]&&1===e[4]}catch(e){r=!1}return r}()?rt:function(){throw new Error("not implemented")};var et=Qe,tt="function"==typeof Int32Array;var nt="function"==typeof Int32Array?Int32Array:null;var ot,it="function"==typeof Int32Array?Int32Array:void 0;ot=function(){var r,e,t;if("function"!=typeof nt)return!1;try{e=new nt([1,3.14,-3.14,2147483648]),t=e,r=(tt&&t instanceof Int32Array||"[object Int32Array]"===H(t))&&1===e[0]&&3===e[1]&&-3===e[2]&&-2147483648===e[3]}catch(e){r=!1}return r}()?it:function(){throw new Error("not implemented")};var at=ot,ut="function"==typeof Uint32Array;var ct="function"==typeof Uint32Array?Uint32Array:null;var ft,lt="function"==typeof Uint32Array?Uint32Array:void 0;ft=function(){var r,e,t;if("function"!=typeof ct)return!1;try{e=new ct(e=[1,3.14,-3.14,4294967296,4294967297]),t=e,r=(ut&&t instanceof Uint32Array||"[object Uint32Array]"===H(t))&&1===e[0]&&3===e[1]&&4294967293===e[2]&&0===e[3]&&1===e[4]}catch(e){r=!1}return r}()?lt:function(){throw new Error("not implemented")};var st=ft,pt="function"==typeof Float32Array;var yt="function"==typeof Float32Array?Float32Array:null;var vt,gt="function"==typeof Float32Array?Float32Array:void 0;vt=function(){var r,e,t;if("function"!=typeof yt)return!1;try{e=new yt([1,3.14,-3.14,5e40]),t=e,r=(pt&&t instanceof Float32Array||"[object Float32Array]"===H(t))&&1===e[0]&&3.140000104904175===e[1]&&-3.140000104904175===e[2]&&e[3]===gr}catch(e){r=!1}return r}()?gt:function(){throw new Error("not implemented")};var dt=vt,bt="function"==typeof Float64Array;var ht="function"==typeof Float64Array?Float64Array:null;var wt,mt="function"==typeof Float64Array?Float64Array:void 0;wt=function(){var r,e,t;if("function"!=typeof ht)return!1;try{e=new ht([1,3.14,-3.14,NaN]),t=e,r=(bt&&t instanceof Float64Array||"[object Float64Array]"===H(t))&&1===e[0]&&3.14===e[1]&&-3.14===e[2]&&e[3]!=e[3]}catch(e){r=!1}return r}()?mt:function(){throw new Error("not implemented")};var Et=wt;function jt(r){return new Re(r)}function At(r){return new Me(r)}function Ot(r){return new Xe(r)}function It(r){return new He(r)}function St(r){return new et(r)}function xt(r){return new at(r)}function Ut(r){return new st(r)}function _t(r){return new dt(r)}function Tt(r){return new Et(r)}var kt={int8array:jt,uint8array:At,uint8clampedarray:Ot,int16array:It,uint16array:St,int32array:xt,uint32array:Ut,float32array:_t,float64array:Tt};function Ft(r,e,t,n,o){var i,a,u,c,f,l,s,p,y,v;if(o-=1,"object"!=typeof r||null===r)return r;if(Jr(r))return Te(r);if(he(r))return function(r){var e,t,n,o,i,a,u=[],c=[];for(i=new r.constructor(r.message),u.push(r),c.push(i),r.stack&&(i.stack=r.stack),r.code&&(i.code=r.code),r.errno&&(i.errno=r.errno),r.syscall&&(i.syscall=r.syscall),e=ue(r),a=0;a0)for(i=u,v=0;v1){if(!fe(e))throw new TypeError(T("invalid argument. Second argument must be a nonnegative integer. Value: `%s`.",e));if(0===e)return r}else e=gr;return Ft(r,t=Sr(r)?new Array(r.length):{},[r],[t],e)}function Vt(){return"function"==typeof D&&"symbol"==typeof D("foo")&&Z(D,"hasInstance")&&"symbol"==typeof D.hasInstance}var Rt=Vt()?Symbol.hasInstance:null,Ct=Vt();function $t(r,e){if("function"!=typeof e&&(!Ct||"object"!=typeof e||"function"!=typeof e[Rt]))throw new TypeError(T("invalid argument. Second argument must be callable. Value: `%s`.",e));return r instanceof e}var Bt=[[TypeError,"TypeError"],[SyntaxError,"SyntaxError"],[ReferenceError,"ReferenceError"],[RangeError,"RangeError"],[URIError,"URIError"],[EvalError,"EvalError"],[Error,"Error"]];var Nt={};return N(Nt,"reviveError",(function(r,e){var t,n,o,i,a,u;if(e&&e.type&&rr(e.message)&&(n=ce[e.type])){for(i=new n(e.message),o=ue(e),u=0;u 0 ) {\n\t\t\t\tdigits -= 1;\n\t\t\t}\n\t\t\tout = f.toExponential( digits );\n\t\t} else {\n\t\t\tout = f.toPrecision( token.precision );\n\t\t}\n\t\tif ( !token.alternate ) {\n\t\t\tout = replace.call( out, RE_ZERO_BEFORE_EXP, '$1e' );\n\t\t\tout = replace.call( out, RE_PERIOD_ZERO_EXP, 'e' );\n\t\t\tout = replace.call( out, RE_TRAILING_PERIOD_ZERO, '' );\n\t\t}\n\t\tbreak;\n\tdefault:\n\t\tthrow new Error( 'invalid double notation. Value: ' + token.specifier );\n\t}\n\tout = replace.call( out, RE_EXP_POS_DIGITS, 'e+0$1' );\n\tout = replace.call( out, RE_EXP_NEG_DIGITS, 'e-0$1' );\n\tif ( token.alternate ) {\n\t\tout = replace.call( out, RE_ONLY_DIGITS, '$1.' );\n\t\tout = replace.call( out, RE_DIGITS_BEFORE_EXP, '$1.e' );\n\t}\n\tif ( f >= 0 && token.sign ) {\n\t\tout = token.sign + out;\n\t}\n\tout = ( token.specifier === uppercase.call( token.specifier ) ) ?\n\t\tuppercase.call( out ) :\n\t\tlowercase.call( out );\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default formatDouble;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\n/**\n* Returns `n` spaces.\n*\n* @private\n* @param {number} n - number of spaces\n* @returns {string} string of spaces\n*/\nfunction spaces( n ) {\n\tvar out = '';\n\tvar i;\n\tfor ( i = 0; i < n; i++ ) {\n\t\tout += ' ';\n\t}\n\treturn out;\n}\n\n\n// MAIN //\n\n/**\n* Pads a token with spaces to the specified width.\n*\n* @private\n* @param {string} str - token argument\n* @param {number} width - token width\n* @param {boolean} [right=false] - boolean indicating whether to pad to the right\n* @returns {string} padded token argument\n*/\nfunction spacePad( str, width, right ) {\n\tvar pad = width - str.length;\n\tif ( pad < 0 ) {\n\t\treturn str;\n\t}\n\tstr = ( right ) ?\n\t\tstr + spaces( pad ) :\n\t\tspaces( pad ) + str;\n\treturn str;\n}\n\n\n// EXPORTS //\n\nexport default spacePad;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport formatInteger from './format_integer.js';\nimport isString from './is_string.js';\nimport isNumber from './is_number.js';\nimport formatDouble from './format_double.js';\nimport spacePad from './space_pad.js';\nimport zeroPad from './zero_pad.js';\n\n\n// VARIABLES //\n\nvar fromCharCode = String.fromCharCode;\nvar isArray = Array.isArray; // NOTE: We use the global `Array.isArray` function here instead of `@stdlib/assert/is-array` to avoid circular dependencies.\n\n\n// FUNCTIONS //\n\n/**\n* Returns a boolean indicating whether a value is `NaN`.\n*\n* @private\n* @param {*} value - input value\n* @returns {boolean} boolean indicating whether a value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 4 );\n* // returns false\n*/\nfunction isnan( value ) { // explicitly define a function here instead of `@stdlib/math/base/assert/is-nan` in order to avoid circular dependencies\n\treturn ( value !== value );\n}\n\n/**\n* Initializes token object with properties of supplied format identifier object or default values if not present.\n*\n* @private\n* @param {Object} token - format identifier object\n* @returns {Object} token object\n*/\nfunction initialize( token ) {\n\tvar out = {};\n\tout.specifier = token.specifier;\n\tout.precision = ( token.precision === void 0 ) ? 1 : token.precision;\n\tout.width = token.width;\n\tout.flags = token.flags || '';\n\tout.mapping = token.mapping;\n\treturn out;\n}\n\n\n// MAIN //\n\n/**\n* Generates string from a token array by interpolating values.\n*\n* @param {Array} tokens - string parts and format identifier objects\n* @param {Array} ...args - variable values\n* @throws {TypeError} first argument must be an array\n* @throws {Error} invalid flags\n* @returns {string} formatted string\n*\n* @example\n* var tokens = [ 'beep ', { 'specifier': 's' } ];\n* var out = formatInterpolate( tokens, 'boop' );\n* // returns 'beep boop'\n*/\nfunction formatInterpolate( tokens ) {\n\tvar hasPeriod;\n\tvar flags;\n\tvar token;\n\tvar flag;\n\tvar num;\n\tvar out;\n\tvar pos;\n\tvar f;\n\tvar i;\n\tvar j;\n\n\tif ( !isArray( tokens ) ) {\n\t\tthrow new TypeError( 'invalid argument. First argument must be an array. Value: `' + tokens + '`.' );\n\t}\n\tout = '';\n\tpos = 1;\n\tfor ( i = 0; i < tokens.length; i++ ) {\n\t\ttoken = tokens[ i ];\n\t\tif ( isString( token ) ) {\n\t\t\tout += token;\n\t\t} else {\n\t\t\thasPeriod = token.precision !== void 0;\n\t\t\ttoken = initialize( token );\n\t\t\tif ( !token.specifier ) {\n\t\t\t\tthrow new TypeError( 'invalid argument. Token is missing `specifier` property. Index: `'+ i +'`. Value: `' + token + '`.' );\n\t\t\t}\n\t\t\tif ( token.mapping ) {\n\t\t\t\tpos = token.mapping;\n\t\t\t}\n\t\t\tflags = token.flags;\n\t\t\tfor ( j = 0; j < flags.length; j++ ) {\n\t\t\t\tflag = flags.charAt( j );\n\t\t\t\tswitch ( flag ) {\n\t\t\t\tcase ' ':\n\t\t\t\t\ttoken.sign = ' ';\n\t\t\t\t\tbreak;\n\t\t\t\tcase '+':\n\t\t\t\t\ttoken.sign = '+';\n\t\t\t\t\tbreak;\n\t\t\t\tcase '-':\n\t\t\t\t\ttoken.padRight = true;\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase '0':\n\t\t\t\t\ttoken.padZeros = flags.indexOf( '-' ) < 0; // NOTE: We use built-in `Array.prototype.indexOf` here instead of `@stdlib/assert/contains` in order to avoid circular dependencies.\n\t\t\t\t\tbreak;\n\t\t\t\tcase '#':\n\t\t\t\t\ttoken.alternate = true;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tthrow new Error( 'invalid flag: ' + flag );\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( token.width === '*' ) {\n\t\t\t\ttoken.width = parseInt( arguments[ pos ], 10 );\n\t\t\t\tpos += 1;\n\t\t\t\tif ( isnan( token.width ) ) {\n\t\t\t\t\tthrow new TypeError( 'the argument for * width at position ' + pos + ' is not a number. Value: `' + token.width + '`.' );\n\t\t\t\t}\n\t\t\t\tif ( token.width < 0 ) {\n\t\t\t\t\ttoken.padRight = true;\n\t\t\t\t\ttoken.width = -token.width;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( hasPeriod ) {\n\t\t\t\tif ( token.precision === '*' ) {\n\t\t\t\t\ttoken.precision = parseInt( arguments[ pos ], 10 );\n\t\t\t\t\tpos += 1;\n\t\t\t\t\tif ( isnan( token.precision ) ) {\n\t\t\t\t\t\tthrow new TypeError( 'the argument for * precision at position ' + pos + ' is not a number. Value: `' + token.precision + '`.' );\n\t\t\t\t\t}\n\t\t\t\t\tif ( token.precision < 0 ) {\n\t\t\t\t\t\ttoken.precision = 1;\n\t\t\t\t\t\thasPeriod = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\ttoken.arg = arguments[ pos ];\n\t\t\tswitch ( token.specifier ) {\n\t\t\tcase 'b':\n\t\t\tcase 'o':\n\t\t\tcase 'x':\n\t\t\tcase 'X':\n\t\t\tcase 'd':\n\t\t\tcase 'i':\n\t\t\tcase 'u':\n\t\t\t\t// Case: %b (binary), %o (octal), %x, %X (hexadecimal), %d, %i (decimal), %u (unsigned decimal)\n\t\t\t\tif ( hasPeriod ) {\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t}\n\t\t\t\ttoken.arg = formatInteger( token );\n\t\t\t\tbreak;\n\t\t\tcase 's':\n\t\t\t\t// Case: %s (string)\n\t\t\t\ttoken.maxWidth = ( hasPeriod ) ? token.precision : -1;\n\t\t\t\ttoken.arg = String( token.arg );\n\t\t\t\tbreak;\n\t\t\tcase 'c':\n\t\t\t\t// Case: %c (character)\n\t\t\t\tif ( !isnan( token.arg ) ) {\n\t\t\t\t\tnum = parseInt( token.arg, 10 );\n\t\t\t\t\tif ( num < 0 || num > 127 ) {\n\t\t\t\t\t\tthrow new Error( 'invalid character code. Value: ' + token.arg );\n\t\t\t\t\t}\n\t\t\t\t\ttoken.arg = ( isnan( num ) ) ? String( token.arg ) : fromCharCode( num ); // eslint-disable-line max-len\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase 'e':\n\t\t\tcase 'E':\n\t\t\tcase 'f':\n\t\t\tcase 'F':\n\t\t\tcase 'g':\n\t\t\tcase 'G':\n\t\t\t\t// Case: %e, %E (scientific notation), %f, %F (decimal floating point), %g, %G (uses the shorter of %e/E or %f/F)\n\t\t\t\tif ( !hasPeriod ) {\n\t\t\t\t\ttoken.precision = 6;\n\t\t\t\t}\n\t\t\t\tf = parseFloat( token.arg );\n\t\t\t\tif ( !isFinite( f ) ) { // NOTE: We use the global `isFinite` function here instead of `@stdlib/math/base/assert/is-finite` in order to avoid circular dependencies.\n\t\t\t\t\tif ( !isNumber( token.arg ) ) {\n\t\t\t\t\t\tthrow new Error( 'invalid floating-point number. Value: ' + out );\n\t\t\t\t\t}\n\t\t\t\t\t// Case: NaN, Infinity, or -Infinity\n\t\t\t\t\tf = token.arg;\n\t\t\t\t\ttoken.padZeros = false;\n\t\t\t\t}\n\t\t\t\ttoken.arg = formatDouble( f, token );\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tthrow new Error( 'invalid specifier: ' + token.specifier );\n\t\t\t}\n\t\t\t// Fit argument into field width...\n\t\t\tif ( token.maxWidth >= 0 && token.arg.length > token.maxWidth ) {\n\t\t\t\ttoken.arg = token.arg.substring( 0, token.maxWidth );\n\t\t\t}\n\t\t\tif ( token.padZeros ) {\n\t\t\t\ttoken.arg = zeroPad( token.arg, token.width || token.precision, token.padRight ); // eslint-disable-line max-len\n\t\t\t} else if ( token.width ) {\n\t\t\t\ttoken.arg = spacePad( token.arg, token.width, token.padRight );\n\t\t\t}\n\t\t\tout += token.arg || '';\n\t\t\tpos += 1;\n\t\t}\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default formatInterpolate;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' ); // NOTE: we inline the `isString.isPrimitive` function from `@stdlib/assert/is-string` in order to avoid circular dependencies.\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// VARIABLES //\n\nvar RE = /%(?:([1-9]\\d*)\\$)?([0 +\\-#]*)(\\*|\\d+)?(?:(\\.)(\\*|\\d+)?)?[hlL]?([%A-Za-z])/g;\n\n\n// FUNCTIONS //\n\n/**\n* Parses a delimiter.\n*\n* @private\n* @param {Array} match - regular expression match\n* @returns {Object} delimiter token object\n*/\nfunction parse( match ) {\n\tvar token = {\n\t\t'mapping': ( match[ 1 ] ) ? parseInt( match[ 1 ], 10 ) : void 0,\n\t\t'flags': match[ 2 ],\n\t\t'width': match[ 3 ],\n\t\t'precision': match[ 5 ],\n\t\t'specifier': match[ 6 ]\n\t};\n\tif ( match[ 4 ] === '.' && match[ 5 ] === void 0 ) {\n\t\ttoken.precision = '1';\n\t}\n\treturn token;\n}\n\n\n// MAIN //\n\n/**\n* Tokenizes a string into an array of string parts and format identifier objects.\n*\n* @param {string} str - input string\n* @returns {Array} tokens\n*\n* @example\n* var tokens = formatTokenize( 'Hello %s!' );\n* // returns [ 'Hello ', {...}, '!' ]\n*/\nfunction formatTokenize( str ) {\n\tvar content;\n\tvar tokens;\n\tvar match;\n\tvar prev;\n\n\ttokens = [];\n\tprev = 0;\n\tmatch = RE.exec( str );\n\twhile ( match ) {\n\t\tcontent = str.slice( prev, RE.lastIndex - match[ 0 ].length );\n\t\tif ( content.length ) {\n\t\t\ttokens.push( content );\n\t\t}\n\t\t// Check for an escaped percent sign `%%`...\n\t\tif ( match[ 6 ] === '%' ) {\n\t\t\ttokens.push( '%' );\n\t\t} else {\n\t\t\ttokens.push( parse( match ) );\n\t\t}\n\t\tprev = RE.lastIndex;\n\t\tmatch = RE.exec( str );\n\t}\n\tcontent = str.slice( prev );\n\tif ( content.length ) {\n\t\ttokens.push( content );\n\t}\n\treturn tokens;\n}\n\n\n// EXPORTS //\n\nexport default formatTokenize;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport interpolate from './../../base/format-interpolate';\nimport tokenize from './../../base/format-tokenize';\nimport isString from './is_string.js';\n\n\n// MAIN //\n\n/**\n* Inserts supplied variable values into a format string.\n*\n* @param {string} str - input string\n* @param {Array} ...args - variable values\n* @throws {TypeError} first argument must be a string\n* @throws {Error} invalid flags\n* @returns {string} formatted string\n*\n* @example\n* var str = format( 'Hello %s!', 'world' );\n* // returns 'Hello world!'\n*\n* @example\n* var str = format( 'Pi: ~%.2f', 3.141592653589793 );\n* // returns 'Pi: ~3.14'\n*/\nfunction format( str ) {\n\tvar args;\n\tvar i;\n\n\tif ( !isString( str ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be a string. Value: `%s`.', str ) );\n\t}\n\targs = [ tokenize( str ) ];\n\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\targs.push( arguments[ i ] );\n\t}\n\treturn interpolate.apply( null, args );\n}\n\n\n// EXPORTS //\n\nexport default format;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' ); // NOTE: we inline the `isString.isPrimitive` function from `@stdlib/assert/is-string` in order to avoid circular dependencies.\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n/* eslint-disable no-underscore-dangle, no-proto */\n\n'use strict';\n\n// MODULES //\n\nimport format from '@stdlib/string/format';\n\n\n// VARIABLES //\n\nvar objectProtoype = Object.prototype;\nvar toStr = objectProtoype.toString;\nvar defineGetter = objectProtoype.__defineGetter__;\nvar defineSetter = objectProtoype.__defineSetter__;\nvar lookupGetter = objectProtoype.__lookupGetter__;\nvar lookupSetter = objectProtoype.__lookupSetter__;\n\n\n// MAIN //\n\n/**\n* Defines (or modifies) an object property.\n*\n* ## Notes\n*\n* - Property descriptors come in two flavors: **data descriptors** and **accessor descriptors**. A data descriptor is a property that has a value, which may or may not be writable. An accessor descriptor is a property described by a getter-setter function pair. A descriptor must be one of these two flavors and cannot be both.\n*\n* @param {Object} obj - object on which to define the property\n* @param {string} prop - property name\n* @param {Object} descriptor - property descriptor\n* @param {boolean} [descriptor.configurable=false] - boolean indicating if property descriptor can be changed and if the property can be deleted from the provided object\n* @param {boolean} [descriptor.enumerable=false] - boolean indicating if the property shows up when enumerating object properties\n* @param {boolean} [descriptor.writable=false] - boolean indicating if the value associated with the property can be changed with an assignment operator\n* @param {*} [descriptor.value] - property value\n* @param {(Function|void)} [descriptor.get=undefined] - function which serves as a getter for the property, or, if no getter, undefined. When the property is accessed, a getter function is called without arguments and with the `this` context set to the object through which the property is accessed (which may not be the object on which the property is defined due to inheritance). The return value will be used as the property value.\n* @param {(Function|void)} [descriptor.set=undefined] - function which serves as a setter for the property, or, if no setter, undefined. When assigning a property value, a setter function is called with one argument (the value being assigned to the property) and with the `this` context set to the object through which the property is assigned.\n* @throws {TypeError} first argument must be an object\n* @throws {TypeError} third argument must be an object\n* @throws {Error} property descriptor cannot have both a value and a setter and/or getter\n* @returns {Object} object with added property\n*\n* @example\n* var obj = {};\n*\n* defineProperty( obj, 'foo', {\n* 'value': 'bar'\n* });\n*\n* var str = obj.foo;\n* // returns 'bar'\n*/\nfunction defineProperty( obj, prop, descriptor ) {\n\tvar prototype;\n\tvar hasValue;\n\tvar hasGet;\n\tvar hasSet;\n\n\tif ( typeof obj !== 'object' || obj === null || toStr.call( obj ) === '[object Array]' ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be an object. Value: `%s`.', obj ) );\n\t}\n\tif ( typeof descriptor !== 'object' || descriptor === null || toStr.call( descriptor ) === '[object Array]' ) {\n\t\tthrow new TypeError( format( 'invalid argument. Property descriptor must be an object. Value: `%s`.', descriptor ) );\n\t}\n\thasValue = ( 'value' in descriptor );\n\tif ( hasValue ) {\n\t\tif (\n\t\t\tlookupGetter.call( obj, prop ) ||\n\t\t\tlookupSetter.call( obj, prop )\n\t\t) {\n\t\t\t// Override `__proto__` to avoid touching inherited accessors:\n\t\t\tprototype = obj.__proto__;\n\t\t\tobj.__proto__ = objectProtoype;\n\n\t\t\t// Delete property as existing getters/setters prevent assigning value to specified property:\n\t\t\tdelete obj[ prop ];\n\t\t\tobj[ prop ] = descriptor.value;\n\n\t\t\t// Restore original prototype:\n\t\t\tobj.__proto__ = prototype;\n\t\t} else {\n\t\t\tobj[ prop ] = descriptor.value;\n\t\t}\n\t}\n\thasGet = ( 'get' in descriptor );\n\thasSet = ( 'set' in descriptor );\n\n\tif ( hasValue && ( hasGet || hasSet ) ) {\n\t\tthrow new Error( 'invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.' );\n\t}\n\n\tif ( hasGet && defineGetter ) {\n\t\tdefineGetter.call( obj, prop, descriptor.get );\n\t}\n\tif ( hasSet && defineSetter ) {\n\t\tdefineSetter.call( obj, prop, descriptor.set );\n\t}\n\treturn obj;\n}\n\n\n// EXPORTS //\n\nexport default defineProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Define (or modify) an object property.\n*\n* @module @stdlib/utils/define-property\n*\n* @example\n* import defineProperty from '@stdlib/utils/define-property';\n*\n* var obj = {};\n* defineProperty( obj, 'foo', {\n* 'value': 'bar',\n* 'writable': false,\n* 'configurable': false,\n* 'enumerable': false\n* });\n* obj.foo = 'boop'; // => throws\n*/\n\n// MODULES //\n\nimport hasDefinePropertySupport from './has_define_property_support.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar defineProperty;\nif ( hasDefinePropertySupport() ) {\n\tdefineProperty = builtin;\n} else {\n\tdefineProperty = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default defineProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './define_property.js';\n\n\n// MAIN //\n\n/**\n* Tests for `Object.defineProperty` support.\n*\n* @private\n* @returns {boolean} boolean indicating if an environment has `Object.defineProperty` support\n*\n* @example\n* var bool = hasDefinePropertySupport();\n* // returns \n*/\nfunction hasDefinePropertySupport() {\n\t// Test basic support...\n\ttry {\n\t\tdefineProperty( {}, 'x', {} );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default hasDefinePropertySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './../../define-property';\n\n\n// MAIN //\n\n/**\n* Defines a read-only property.\n*\n* @param {Object} obj - object on which to define the property\n* @param {(string|symbol)} prop - property name\n* @param {*} value - value to set\n*\n* @example\n* var obj = {};\n*\n* setReadOnly( obj, 'foo', 'bar' );\n*\n* try {\n* obj.foo = 'boop';\n* } catch ( err ) {\n* console.error( err.message );\n* }\n*/\nfunction setReadOnly( obj, prop, value ) {\n\tdefineProperty( obj, prop, {\n\t\t'configurable': false,\n\t\t'enumerable': true,\n\t\t'writable': false,\n\t\t'value': value\n\t});\n}\n\n\n// EXPORTS //\n\nexport default setReadOnly;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.keys()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\treturn Object.keys( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.keys !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasSymbols from './../../has-symbol-support';\n\n\n// VARIABLES //\n\nvar FLG = hasSymbols();\n\n\n// MAIN //\n\n/**\n* Tests for native `Symbol.toStringTag` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol.toStringTag` support\n*\n* @example\n* var bool = hasToStringTagSupport();\n* // returns \n*/\nfunction hasToStringTagSupport() {\n\treturn ( FLG && typeof Symbol.toStringTag === 'symbol' );\n}\n\n\n// EXPORTS //\n\nexport default hasToStringTagSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests for native `Symbol` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol` support\n*\n* @example\n* var bool = hasSymbolSupport();\n* // returns \n*/\nfunction hasSymbolSupport() {\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar toStr = Object.prototype.toString;\n\n\n// EXPORTS //\n\nexport default toStr;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// FUNCTIONS //\n\nvar has = Object.prototype.hasOwnProperty;\n\n\n// MAIN //\n\n/**\n* Tests if an object has a specified property.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object has a specified property\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = hasOwnProp( beep, 'bap' );\n* // returns false\n*/\nfunction hasOwnProp( value, property ) {\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\treturn has.call( value, property );\n}\n\n\n// EXPORTS //\n\nexport default hasOwnProp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar Sym = ( typeof Symbol === 'function' ) ? Symbol : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Sym;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Symbol from '@stdlib/symbol/ctor';\n\n\n// MAIN //\n\nvar toStrTag = ( typeof Symbol === 'function' ) ? Symbol.toStringTag : '';\n\n\n// EXPORTS //\n\nexport default toStrTag;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a string value indicating a specification defined classification of an object.\n*\n* @module @stdlib/utils/native-class\n*\n* @example\n* import nativeClass from '@stdlib/utils/native-class';\n*\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* function Beep() {\n* return this;\n* }\n* str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\n\n// MODULES //\n\nimport hasToStringTag from '@stdlib/assert/has-tostringtag-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( hasToStringTag() ) {\n\tmain = polyfill;\n} else {\n\tmain = builtin;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArguments from './main.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Detects whether an environment returns the expected internal class of the `arguments` object.\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment behaves as expected\n*\n* @example\n* var bool = detect();\n* // returns \n*/\nfunction detect() {\n\treturn isArguments( arguments );\n}\n\n\n// MAIN //\n\nbool = detect();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport toStringTag from './tostringtag.js';\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification of an object in environments supporting `Symbol.toStringTag`.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\tvar isOwn;\n\tvar tag;\n\tvar out;\n\n\tif ( v === null || v === void 0 ) {\n\t\treturn toStr.call( v );\n\t}\n\ttag = v[ toStringTag ];\n\tisOwn = hasOwnProp( v, toStringTag );\n\n\t// Attempt to override the `toStringTag` property. For built-ins having a `Symbol.toStringTag` property (e.g., `JSON`, `Math`, etc), the `Symbol.toStringTag` property is read-only (e.g., , so we need to wrap in a `try/catch`.\n\ttry {\n\t\tv[ toStringTag ] = void 0;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn toStr.call( v );\n\t}\n\tout = toStr.call( v );\n\n\tif ( isOwn ) {\n\t\tv[ toStringTag ] = tag;\n\t} else {\n\t\tdelete v[ toStringTag ];\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toStr from './tostring.js';\n\n\n// MAIN //\n\n/**\n* Returns a string value indicating a specification defined classification (via the internal property `[[Class]]`) of an object.\n*\n* @param {*} v - input value\n* @returns {string} string value indicating a specification defined classification of the input value\n*\n* @example\n* var str = nativeClass( 'a' );\n* // returns '[object String]'\n*\n* @example\n* var str = nativeClass( 5 );\n* // returns '[object Number]'\n*\n* @example\n* function Beep() {\n* return this;\n* }\n* var str = nativeClass( new Beep() );\n* // returns '[object Object]'\n*/\nfunction nativeClass( v ) {\n\treturn toStr.call( v );\n}\n\n\n// EXPORTS //\n\nexport default nativeClass;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// MAIN //\n\n/**\n* Tests whether a value is an `arguments` object.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `arguments` object\n*\n* @example\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* @example\n* var bool = isArguments( [] );\n* // returns false\n*/\nfunction isArguments( value ) {\n\treturn ( nativeClass( value ) === '[object Arguments]' );\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport defineProperty from './../../define-property';\n\n\n// MAIN //\n\n/**\n* Defines a non-enumerable read-only property.\n*\n* @param {Object} obj - object on which to define the property\n* @param {(string|symbol)} prop - property name\n* @param {*} value - value to set\n*\n* @example\n* var obj = {};\n*\n* setNonEnumerableReadOnly( obj, 'foo', 'bar' );\n*\n* try {\n* obj.foo = 'boop';\n* } catch ( err ) {\n* console.error( err.message );\n* }\n*/\nfunction setNonEnumerableReadOnly( obj, prop, value ) {\n\tdefineProperty( obj, prop, {\n\t\t'configurable': false,\n\t\t'enumerable': false,\n\t\t'writable': false,\n\t\t'value': value\n\t});\n}\n\n\n// EXPORTS //\n\nexport default setNonEnumerableReadOnly;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a string primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string primitive\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns false\n*/\nfunction isString( value ) {\n\treturn ( typeof value === 'string' );\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar valueOf = String.prototype.valueOf; // non-generic\n\n\n// EXPORTS //\n\nexport default valueOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport test from './try2valueof.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a string object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a string object\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns false\n*/\nfunction isString( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof String ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object String]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport valueOf from './valueof.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to extract a string value.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a string can be extracted\n*/\nfunction test( value ) {\n\ttry {\n\t\tvalueOf.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a string.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a string\n*\n* @example\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isString( 'beep' );\n* // returns true\n*/\nfunction isString( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a number primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* @example\n* var bool = isNumber( NaN );\n* // returns true\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns false\n*/\nfunction isNumber( value ) {\n\treturn ( typeof value === 'number' );\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a string.\n*\n* @module @stdlib/assert/is-string\n*\n* @example\n* import isString from '@stdlib/assert/is-string';\n*\n* var bool = isString( 'beep' );\n* // returns true\n*\n* bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* bool = isString( 5 );\n* // returns false\n*\n* @example\n* import { isObject as isString } from '@stdlib/assert/is-string';\n*\n* var bool = isString( new String( 'beep' ) );\n* // returns true\n*\n* bool = isString( 'beep' );\n* // returns false\n*\n* @example\n* import { isPrimitive as isString } from '@stdlib/assert/is-string';\n*\n* var bool = isString( 'beep' );\n* // returns true\n*\n* bool = isString( new String( 'beep' ) );\n* // returns false\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// EXPORTS //\n\nexport default Number; // eslint-disable-line stdlib/require-globals\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Number from '@stdlib/number/ctor';\n\n\n// MAIN //\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar toString = Number.prototype.toString; // non-generic\n\n\n// EXPORTS //\n\nexport default toString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport Number from '@stdlib/number/ctor';\nimport test from './try2serialize.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*/\nfunction isNumber( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof Number ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object Number]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toString from './tostring.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to serialize a value to a string.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value can be serialized\n*/\nfunction test( value ) {\n\ttry {\n\t\ttoString.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a number\n*\n* @example\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* @example\n* var bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*\n* @example\n* var bool = isNumber( NaN );\n* // returns true\n*\n* @example\n* var bool = isNumber( null );\n* // returns false\n*/\nfunction isNumber( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isNumber;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests if a double-precision floating-point numeric value is `NaN`.\n*\n* @param {number} x - value to test\n* @returns {boolean} boolean indicating whether the value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 7.0 );\n* // returns false\n*/\nfunction isnan( x ) {\n\treturn ( x !== x );\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isNumber } from './../../is-number';\nimport isNan from '@stdlib/math/base/assert/is-nan';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a `NaN` number primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a `NaN` number primitive\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns false\n*/\nfunction isnan( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisNan( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isNumber } from './../../is-number';\nimport isNan from '@stdlib/math/base/assert/is-nan';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having a value of `NaN`.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having a value of `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns false\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns true\n*/\nfunction isnan( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisNan( value.valueOf() )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is `NaN`.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is `NaN`\n*\n* @example\n* var bool = isnan( NaN );\n* // returns true\n*\n* @example\n* var bool = isnan( new Number( NaN ) );\n* // returns true\n*\n* @example\n* var bool = isnan( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isnan( null );\n* // returns false\n*/\nfunction isnan( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isnan;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a number.\n*\n* @module @stdlib/assert/is-number\n*\n* @example\n* import isNumber from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*\n* bool = isNumber( NaN );\n* // returns true\n*\n* bool = isNumber( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isNumber } from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns true\n*\n* bool = isNumber( NaN );\n* // returns true\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns false\n*\n* @example\n* import { isObject as isNumber } from '@stdlib/assert/is-number';\n*\n* var bool = isNumber( 3.14 );\n* // returns false\n*\n* bool = isNumber( new Number( 3.14 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is `NaN`.\n*\n* @module @stdlib/assert/is-nan\n*\n* @example\n* import isnan from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns true\n*\n* bool = isnan( new Number( NaN ) );\n* // returns true\n*\n* bool = isnan( 3.14 );\n* // returns false\n*\n* bool = isnan( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isnan } from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns true\n*\n* bool = isnan( 3.14 );\n* // returns false\n*\n* bool = isnan( new Number( NaN ) );\n* // returns false\n*\n* @example\n* import { isObject as isnan } from '@stdlib/assert/is-nan';\n*\n* var bool = isnan( NaN );\n* // returns false\n*\n* bool = isnan( new Number( NaN ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Double-precision floating-point positive infinity.\n*\n* @module @stdlib/constants/float64/pinf\n* @type {number}\n*\n* @example\n* import FLOAT64_PINF from '@stdlib/constants/float64/pinf';\n* // returns Infinity\n*/\n\n\n// MAIN //\n\n/**\n* Double-precision floating-point positive infinity.\n*\n* ## Notes\n*\n* Double-precision floating-point positive infinity has the bit sequence\n*\n* ```binarystring\n* 0 11111111111 00000000000000000000 00000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {number}\n* @default Number.POSITIVE_INFINITY\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT64_PINF = Number.POSITIVE_INFINITY; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default FLOAT64_PINF;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Double-precision floating-point negative infinity.\n*\n* @module @stdlib/constants/float64/ninf\n* @type {number}\n*\n* @example\n* import FLOAT64_NINF from '@stdlib/constants/float64/ninf';\n* // returns -Infinity\n*/\n\n// MODULES //\n\nimport Number from '@stdlib/number/ctor';\n\n\n// MAIN //\n\n/**\n* Double-precision floating-point negative infinity.\n*\n* ## Notes\n*\n* Double-precision floating-point negative infinity has the bit sequence\n*\n* ```binarystring\n* 1 11111111111 00000000000000000000 00000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {number}\n* @default Number.NEGATIVE_INFINITY\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT64_NINF = Number.NEGATIVE_INFINITY;\n\n\n// EXPORTS //\n\nexport default FLOAT64_NINF;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: implementation (?)\n\n/**\n* Rounds a double-precision floating-point number toward negative infinity.\n*\n* @param {number} x - input value\n* @returns {number} rounded value\n*\n* @example\n* var v = floor( -4.2 );\n* // returns -5.0\n*\n* @example\n* var v = floor( 9.99999 );\n* // returns 9.0\n*\n* @example\n* var v = floor( 0.0 );\n* // returns 0.0\n*\n* @example\n* var v = floor( NaN );\n* // returns NaN\n*/\nvar floor = Math.floor; // eslint-disable-line stdlib/no-builtin-math\n\n\n// EXPORTS //\n\nexport default floor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport floor from './../../../../base/special/floor';\n\n\n// MAIN //\n\n/**\n* Tests if a finite double-precision floating-point number is an integer.\n*\n* @param {number} x - value to test\n* @returns {boolean} boolean indicating whether the value is an integer\n*\n* @example\n* var bool = isInteger( 1.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( 3.14 );\n* // returns false\n*/\nfunction isInteger( x ) {\n\treturn (floor(x) === x);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport PINF from '@stdlib/constants/float64/pinf';\nimport NINF from '@stdlib/constants/float64/ninf';\nimport isInt from '@stdlib/math/base/assert/is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a number primitive is an integer value.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a number primitive is an integer value\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tvalue < PINF &&\n\t\tvalue > NINF &&\n\t\tisInt( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isNumber } from './../../is-number';\nimport isInt from './integer.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number primitive having an integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive having an integer value\n*\n* @example\n* var bool = isInteger( -3.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( new Number( -3.0 ) );\n* // returns false\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisInt( value )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isNumber } from './../../is-number';\nimport isInt from './integer.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having an integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having an integer value\n*\n* @example\n* var bool = isInteger( 3.0 );\n* // returns false\n*\n* @example\n* var bool = isInteger( new Number( 3.0 ) );\n* // returns true\n*/\nfunction isInteger( value ) {\n\treturn (\n\t\tisNumber( value ) &&\n\t\tisInt( value.valueOf() )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is an integer.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an integer\n*\n* @example\n* var bool = isInteger( 5.0 );\n* // returns true\n*\n* @example\n* var bool = isInteger( new Number( 5.0 ) );\n* // returns true\n*\n* @example\n* var bool = isInteger( -3.14 );\n* // returns false\n*\n* @example\n* var bool = isInteger( null );\n* // returns false\n*/\nfunction isInteger( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is an integer.\n*\n* @module @stdlib/assert/is-integer\n*\n* @example\n* import isInteger from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( 5.0 );\n* // returns true\n*\n* bool = isInteger( new Number( 5.0 ) );\n* // returns true\n*\n* bool = isInteger( -3.14 );\n* // returns false\n*\n* bool = isInteger( null );\n* // returns false\n*\n* @example\n* // Use interface to check for integer primitives...\n* import { isPrimitive as isInteger } from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( -3.0 );\n* // returns true\n*\n* bool = isInteger( new Number( -3.0 ) );\n* // returns false\n*\n* @example\n* // Use interface to check for integer objects...\n* import { isObject as isInteger } from '@stdlib/assert/is-integer';\n*\n* var bool = isInteger( 3.0 );\n* // returns false\n*\n* bool = isInteger( new Number( 3.0 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests if an object's own property is enumerable.\n*\n* @private\n* @name isEnumerableProperty\n* @type {Function}\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object property is enumerable\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty.call( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty.call( beep, 'hasOwnProperty' );\n* // returns false\n*/\nvar isEnumerableProperty = Object.prototype.propertyIsEnumerable;\n\n\n// EXPORTS //\n\nexport default isEnumerableProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnum from './native.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Detects whether an environment has a bug where String indices are not detected as \"enumerable\" properties. Observed in Node v0.10.\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment has the bug\n*/\nfunction detect() {\n\treturn !isEnum.call( 'beep', '0' );\n}\n\n\n// MAIN //\n\nbool = detect();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isString from './../../is-string';\nimport { isPrimitive as isnan } from './../../is-nan';\nimport { isPrimitive as isInteger } from './../../is-integer';\nimport isEnum from './native.js';\nimport hasStringEnumBug from './has_string_enumerability_bug.js';\n\n\n// MAIN //\n\n/**\n* Tests if an object's own property is enumerable.\n*\n* @param {*} value - value to test\n* @param {*} property - property to test\n* @returns {boolean} boolean indicating if an object property is enumerable\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty( beep, 'boop' );\n* // returns true\n*\n* @example\n* var beep = {\n* 'boop': true\n* };\n*\n* var bool = isEnumerableProperty( beep, 'hasOwnProperty' );\n* // returns false\n*/\nfunction isEnumerableProperty( value, property ) {\n\tvar bool;\n\tif (\n\t\tvalue === void 0 ||\n\t\tvalue === null\n\t) {\n\t\treturn false;\n\t}\n\tbool = isEnum.call( value, property );\n\tif ( !bool && hasStringEnumBug && isString( value ) ) {\n\t\t// Note: we only check for indices, as properties attached to a `String` object are properly detected as enumerable above.\n\t\tproperty = +property;\n\t\treturn (\n\t\t\t!isnan( property ) &&\n\t\t\tisInteger( property ) &&\n\t\t\tproperty >= 0 &&\n\t\t\tproperty < value.length\n\t\t);\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default isEnumerableProperty;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar f;\n\n\n// FUNCTIONS //\n\n/**\n* Tests if a value is an array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an array\n*\n* @example\n* var bool = isArray( [] );\n* // returns true\n*\n* @example\n* var bool = isArray( {} );\n* // returns false\n*/\nfunction isArray( value ) {\n\treturn ( nativeClass( value ) === '[object Array]' );\n}\n\n\n// MAIN //\n\nif ( Array.isArray ) {\n\tf = Array.isArray;\n} else {\n\tf = isArray;\n}\n\n\n// EXPORTS //\n\nexport default f;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 32-bit integer.\n*\n* @module @stdlib/constants/uint32/max\n* @type {uinteger32}\n*\n* @example\n* import UINT32_MAX from '@stdlib/constants/uint32/max';\n* // returns 4294967295\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{32} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 11111111111111111111111111111111\n* ```\n*\n* @constant\n* @type {uinteger32}\n* @default 4294967295\n*/\nvar UINT32_MAX = 4294967295;\n\n\n// EXPORTS //\n\nexport default UINT32_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is an `arguments` object.\n*\n* @module @stdlib/assert/is-arguments\n*\n* @example\n* import isArguments from '@stdlib/assert/is-arguments';\n*\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* bool = isArguments( [] );\n* // returns false\n*/\n\n// MODULES //\n\nimport hasArgumentsClass from './detect.js';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar isArguments;\nif ( hasArgumentsClass ) {\n\tisArguments = main;\n} else {\n\tisArguments = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from './../../has-own-property';\nimport isEnumerableProperty from './../../is-enumerable-property';\nimport isArray from './../../is-array';\nimport isInteger from '@stdlib/math/base/assert/is-integer';\nimport MAX_LENGTH from '@stdlib/constants/uint32/max';\n\n\n// MAIN //\n\n/**\n* Tests whether a value is an `arguments` object.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `arguments` object\n*\n* @example\n* function foo() {\n* return arguments;\n* }\n*\n* var bool = isArguments( foo() );\n* // returns true\n*\n* @example\n* var bool = isArguments( [] );\n* // returns false\n*/\nfunction isArguments( value ) {\n\treturn (\n\t\tvalue !== null &&\n\t\ttypeof value === 'object' &&\n\t\t!isArray( value ) &&\n\t\ttypeof value.length === 'number' &&\n\t\tisInteger( value.length ) &&\n\t\tvalue.length >= 0 &&\n\t\tvalue.length <= MAX_LENGTH &&\n\t\thasOwnProp( value, 'callee' ) &&\n\t\t!isEnumerableProperty( value, 'callee' )\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isArguments;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArguments from '@stdlib/assert/is-arguments';\nimport builtin from './builtin.js';\n\n\n// VARIABLES //\n\nvar slice = Array.prototype.slice;\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\tif ( isArguments( value ) ) {\n\t\treturn builtin( slice.call( value ) );\n\t}\n\treturn builtin( value );\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is object-like.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is object-like\n*\n* @example\n* var bool = isObjectLike( {} );\n* // returns true\n*\n* @example\n* var bool = isObjectLike( [] );\n* // returns true\n*\n* @example\n* var bool = isObjectLike( null );\n* // returns false\n*/\nfunction isObjectLike( value ) {\n\treturn (\n\t\tvalue !== null &&\n\t\ttypeof value === 'object'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isObjectLike;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is object-like.\n*\n* @module @stdlib/assert/is-object-like\n*\n* @example\n* import isObjectLike from '@stdlib/assert/is-object-like';\n*\n* var bool = isObjectLike( {} );\n* // returns true\n*\n* bool = isObjectLike( [] );\n* // returns true\n*\n* bool = isObjectLike( null );\n* // returns false\n*\n* @example\n* import { isObjectLikeArray as isObjectLike } from '@stdlib/assert/is-object-like';\n*\n* var bool = isObjectLike( [ {}, [] ] );\n* // returns true\n*\n* bool = isObjectLike( [ {}, '3.0' ] );\n* // returns false\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport arrayfun from './../../tools/array-function';\nimport main from './main.js';\n\n\n// VARIABLES //\n\nvar isObjectLikeArray = arrayfun( main );\n\n\n// MAIN //\n\nsetReadOnly( main, 'isObjectLikeArray', isObjectLikeArray );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArray from './../../../is-array';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Returns a function which tests if every element in an array passes a test condition.\n*\n* @param {Function} predicate - function to apply\n* @throws {TypeError} must provide a function\n* @returns {Function} an array function\n*\n* @example\n* import isOdd from '@stdlib/assert/is-odd';\n*\n* var arr1 = [ 1, 3, 5, 7 ];\n* var arr2 = [ 3, 5, 8 ];\n*\n* var validate = arrayfcn( isOdd );\n*\n* var bool = validate( arr1 );\n* // returns true\n*\n* bool = validate( arr2 );\n* // returns false\n*/\nfunction arrayfcn( predicate ) {\n\tif ( typeof predicate !== 'function' ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a function. Value: `%s`.', predicate ) );\n\t}\n\treturn every;\n\n\t/**\n\t* Tests if every element in an array passes a test condition.\n\t*\n\t* @private\n\t* @param {*} value - value to test\n\t* @returns {boolean} boolean indicating whether a value is an array for which all elements pass a test condition\n\t*/\n\tfunction every( value ) {\n\t\tvar len;\n\t\tvar i;\n\t\tif ( !isArray( value ) ) {\n\t\t\treturn false;\n\t\t}\n\t\tlen = value.length;\n\t\tif ( len === 0 ) {\n\t\t\treturn false;\n\t\t}\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tif ( predicate( value[ i ] ) === false ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default arrayfcn;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnumerableProperty from '@stdlib/assert/is-enumerable-property';\nimport noop from './../../noop';\n\n\n// MAIN //\n\n// Note: certain environments treat an object's prototype as enumerable, which, as a matter of convention, it shouldn't be...\nvar bool = isEnumerableProperty( noop, 'prototype' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* No operation.\n*\n* @example\n* noop();\n* // ...does nothing.\n*/\nfunction noop() {\n\t// Empty function...\n}\n\n\n// EXPORTS //\n\nexport default noop;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isEnumerableProperty from '@stdlib/assert/is-enumerable-property';\n\n\n// VARIABLES //\n\nvar obj = {\n\t'toString': null\n};\n\n\n// MAIN //\n\n// Note: certain environments don't allow enumeration of overwritten properties which are considered non-enumerable...\nvar bool = !isEnumerableProperty( obj, 'toString' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum length of a typed array.\n*\n* @module @stdlib/constants/array/max-typed-array-length\n*\n* @example\n* import MAX_TYPED_ARRAY_LENGTH from '@stdlib/constants/array/max-typed-array-length';\n* // returns 9007199254740991\n*/\n\n// MAIN //\n\n/**\n* Maximum length of a typed array.\n*\n* ```tex\n* 2^{53} - 1\n* ```\n*\n* @constant\n* @type {number}\n* @default 9007199254740991\n*/\nvar MAX_TYPED_ARRAY_LENGTH = 9007199254740991;\n\n\n// EXPORTS //\n\nexport default MAX_TYPED_ARRAY_LENGTH;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isnan from '@stdlib/assert/is-nan';\nimport isCollection from '@stdlib/assert/is-collection';\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport { isPrimitive as isInteger } from '@stdlib/assert/is-integer';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Returns the first index at which a given element can be found.\n*\n* @param {ArrayLike} arr - array-like object\n* @param {*} searchElement - element to find\n* @param {integer} [fromIndex] - starting index (if negative, the start index is determined relative to last element)\n* @throws {TypeError} must provide an array-like object\n* @throws {TypeError} third argument must be an integer\n* @returns {integer} index or -1\n*\n* @example\n* var arr = [ 4, 3, 2, 1 ];\n* var idx = indexOf( arr, 3 );\n* // returns 1\n*\n* @example\n* var arr = [ 4, 3, 2, 1 ];\n* var idx = indexOf( arr, 5 );\n* // returns -1\n*\n* @example\n* // Using a `fromIndex`:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6 ];\n* var idx = indexOf( arr, 2, 3 );\n* // returns 5\n*\n* @example\n* // `fromIndex` which exceeds `array` length:\n* var arr = [ 1, 2, 3, 4, 2, 5 ];\n* var idx = indexOf( arr, 2, 10 );\n* // returns -1\n*\n* @example\n* // Negative `fromIndex`:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6, 2 ];\n* var idx = indexOf( arr, 2, -4 );\n* // returns 5\n*\n* idx = indexOf( arr, 2, -1 );\n* // returns 7\n*\n* @example\n* // Negative `fromIndex` exceeding input `array` length:\n* var arr = [ 1, 2, 3, 4, 5, 2, 6 ];\n* var idx = indexOf( arr, 2, -10 );\n* // returns 1\n*\n* @example\n* // Array-like objects:\n* var str = 'bebop';\n* var idx = indexOf( str, 'o' );\n* // returns 3\n*/\nfunction indexOf( arr, searchElement, fromIndex ) {\n\tvar len;\n\tvar i;\n\tif ( !isCollection( arr ) && !isString( arr ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. First argument must be an array-like object. Value: `%s`.', arr ) );\n\t}\n\tlen = arr.length;\n\tif ( len === 0 ) {\n\t\treturn -1;\n\t}\n\tif ( arguments.length === 3 ) {\n\t\tif ( !isInteger( fromIndex ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Third argument must be an integer. Value: `%s`.', fromIndex ) );\n\t\t}\n\t\tif ( fromIndex >= 0 ) {\n\t\t\tif ( fromIndex >= len ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\ti = fromIndex;\n\t\t} else {\n\t\t\ti = len + fromIndex;\n\t\t\tif ( i < 0 ) {\n\t\t\t\ti = 0;\n\t\t\t}\n\t\t}\n\t} else {\n\t\ti = 0;\n\t}\n\t// Check for `NaN`...\n\tif ( isnan( searchElement ) ) {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( isnan( arr[i] ) ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t} else {\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( arr[ i ] === searchElement ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t}\n\treturn -1;\n}\n\n\n// EXPORTS //\n\nexport default indexOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInteger from '@stdlib/math/base/assert/is-integer';\nimport MAX_LENGTH from '@stdlib/constants/array/max-typed-array-length';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a collection.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is a collection\n*\n* @example\n* var bool = isCollection( [] );\n* // returns true\n*\n* @example\n* var bool = isCollection( {} );\n* // returns false\n*/\nfunction isCollection( value ) {\n\treturn (\n\t\ttypeof value === 'object' &&\n\t\tvalue !== null &&\n\t\ttypeof value.length === 'number' &&\n\t\tisInteger( value.length ) &&\n\t\tvalue.length >= 0 &&\n\t\tvalue.length <= MAX_LENGTH\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isCollection;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nvar RE = /./;\n\n\n// EXPORTS //\n\nexport default RE;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Tests if a value is a boolean primitive.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a boolean primitive\n*\n* @example\n* var bool = isBoolean( true );\n* // returns true\n*\n* @example\n* var bool = isBoolean( false );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( true ) );\n* // returns false\n*/\nfunction isBoolean( value ) {\n\treturn ( typeof value === 'boolean' );\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a boolean.\n*\n* @name Boolean\n* @constructor\n* @type {Function}\n* @param {*} value - input value\n* @returns {(boolean|Boolean)} boolean\n*\n* @example\n* var b = Boolean( null );\n* // returns false\n*\n* b = Boolean( [] );\n* // returns true\n*\n* b = Boolean( {} );\n* // returns true\n*\n* @example\n* var b = new Boolean( false );\n* // returns \n*/\nvar Bool = Boolean; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// eslint-disable-next-line stdlib/no-redeclare\nvar toString = Boolean.prototype.toString; // non-generic\n\n\n// EXPORTS //\n\nexport default toString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasToStringTag from './../../has-tostringtag-support';\nimport nativeClass from '@stdlib/utils/native-class';\nimport Boolean from '@stdlib/boolean/ctor';\nimport test from './try2serialize.js';\n\n\n// VARIABLES //\n\nvar FLG = hasToStringTag();\n\n\n// MAIN //\n\n/**\n* Tests if a value is a boolean object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a boolean object\n*\n* @example\n* var bool = isBoolean( true );\n* // returns false\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( false ) );\n* // returns true\n*/\nfunction isBoolean( value ) {\n\tif ( typeof value === 'object' ) {\n\t\tif ( value instanceof Boolean ) {\n\t\t\treturn true;\n\t\t}\n\t\tif ( FLG ) {\n\t\t\treturn test( value );\n\t\t}\n\t\treturn ( nativeClass( value ) === '[object Boolean]' );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport toString from './tostring.js'; // eslint-disable-line stdlib/no-redeclare\n\n\n// MAIN //\n\n/**\n* Attempts to serialize a value to a string.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value can be serialized\n*/\nfunction test( value ) {\n\ttry {\n\t\ttoString.call( value );\n\t\treturn true;\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default test;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a boolean.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a boolean\n*\n* @example\n* var bool = isBoolean( false );\n* // returns true\n*\n* @example\n* var bool = isBoolean( true );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( false ) );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n*\n* var bool = isBoolean( new Boolean( true ) );\n* // returns true\n*/\nfunction isBoolean( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isBoolean;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a boolean.\n*\n* @module @stdlib/assert/is-boolean\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import isBoolean from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( false );\n* // returns true\n*\n* bool = isBoolean( new Boolean( false ) );\n* // returns true\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import { isPrimitive as isBoolean } from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( false );\n* // returns true\n*\n* bool = isBoolean( new Boolean( true ) );\n* // returns false\n*\n* @example\n* import Boolean from '@stdlib/boolean/ctor';\n* import { isObject as isBoolean } from '@stdlib/assert/is-boolean';\n*\n* var bool = isBoolean( true );\n* // returns false\n*\n* bool = isBoolean( new Boolean( false ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof self === 'object' ) ? self : null;\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof window === 'object' ) ? window : null;\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof global === 'object' ) ? global : null;\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar obj = ( typeof globalThis === 'object' ) ? globalThis : null; // eslint-disable-line no-undef\n\n\n// EXPORTS //\n\nexport default obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport getGlobal from './../../../global';\n\n\n// MAIN //\n\nvar root = getGlobal();\nvar nodeList = root.document && root.document.childNodes;\n\n\n// EXPORTS //\n\nexport default nodeList;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isBoolean } from '@stdlib/assert/is-boolean';\nimport format from '@stdlib/string/format';\nimport getThis from './codegen.js';\nimport Self from './self.js';\nimport Win from './window.js';\nimport Global from './global.js';\nimport GlobalThis from './global_this.js';\n\n\n// MAIN //\n\n/**\n* Returns the global object.\n*\n* ## Notes\n*\n* - Using code generation is the **most** reliable way to resolve the global object; however, doing so is likely to violate content security policies (CSPs) in, e.g., Chrome Apps and elsewhere.\n*\n* @param {boolean} [codegen=false] - boolean indicating whether to use code generation to resolve the global object\n* @throws {TypeError} must provide a boolean\n* @throws {Error} unable to resolve global object\n* @returns {Object} global object\n*\n* @example\n* var g = getGlobal();\n* // returns {...}\n*/\nfunction getGlobal( codegen ) {\n\tif ( arguments.length ) {\n\t\tif ( !isBoolean( codegen ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Must provide a boolean. Value: `%s`.', codegen ) );\n\t\t}\n\t\tif ( codegen ) {\n\t\t\treturn getThis();\n\t\t}\n\t\t// Fall through...\n\t}\n\t// Case: 2020 revision of ECMAScript standard\n\tif ( GlobalThis ) {\n\t\treturn GlobalThis;\n\t}\n\t// Case: browsers and web workers\n\tif ( Self ) {\n\t\treturn Self;\n\t}\n\t// Case: browsers\n\tif ( Win ) {\n\t\treturn Win;\n\t}\n\t// Case: Node.js\n\tif ( Global ) {\n\t\treturn Global;\n\t}\n\t// Case: unknown\n\tthrow new Error( 'unexpected error. Unable to resolve global object.' );\n}\n\n\n// EXPORTS //\n\nexport default getGlobal;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns the global object using code generation.\n*\n* @private\n* @returns {Object} global object\n*/\nfunction getGlobal() {\n\treturn new Function( 'return this;' )(); // eslint-disable-line no-new-func, stdlib/require-globals\n}\n\n\n// EXPORTS //\n\nexport default getGlobal;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\nvar typedarray = Int8Array; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default typedarray;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a regular expression to capture everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* @returns {RegExp} regular expression\n*\n* @example\n* var RE_FUNCTION_NAME = reFunctionName();\n*\n* function fname( fcn ) {\n* return RE_FUNCTION_NAME.exec( fcn.toString() )[ 1 ];\n* }\n*\n* var fn = fname( Math.sqrt );\n* // returns 'sqrt'\n*\n* fn = fname( Int8Array );\n* // returns 'Int8Array'\n*\n* fn = fname( Object.prototype.toString );\n* // returns 'toString'\n*\n* fn = fname( function(){} );\n* // returns ''\n*/\nfunction reFunctionName() {\n\treturn /^\\s*function\\s*([^(]*)/i;\n}\n\n\n// EXPORTS //\n\nexport default reFunctionName;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport reFunctionName from './main.js';\n\n\n// MAIN //\n\n/**\n* Captures everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* Regular expression: `/^\\s*function\\s*([^(]*)/i`\n*\n* - `/^\\s*`\n* - Match zero or more spaces at beginning\n*\n* - `function`\n* - Match the word `function`\n*\n* - `\\s*`\n* - Match zero or more spaces after the word `function`\n*\n* - `()`\n* - Capture\n*\n* - `[^(]*`\n* - Match anything except a left parenthesis `(` zero or more times\n*\n* - `/i`\n* - ignore case\n*\n* @constant\n* @type {RegExp}\n* @default /^\\s*function\\s*([^(]*)/i\n*/\nvar RE_FUNCTION_NAME = reFunctionName();\n\n\n// EXPORTS //\n\nexport default RE_FUNCTION_NAME;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isObjectLike from './../../is-object-like';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Buffer instance.\n*\n* @param {*} value - value to validate\n* @returns {boolean} boolean indicating if a value is a Buffer instance\n*\n* @example\n* var v = isBuffer( new Buffer( 'beep' ) );\n* // returns true\n*\n* @example\n* var v = isBuffer( new Buffer( [1,2,3,4] ) );\n* // returns true\n*\n* @example\n* var v = isBuffer( {} );\n* // returns false\n*\n* @example\n* var v = isBuffer( [] );\n* // returns false\n*/\nfunction isBuffer( value ) {\n\treturn (\n\t\tisObjectLike( value ) &&\n\t\t(\n\t\t\t// eslint-disable-next-line no-underscore-dangle\n\t\t\tvalue._isBuffer || // for envs missing Object.prototype.constructor (e.g., Safari 5-7)\n\t\t\t(\n\t\t\t\tvalue.constructor &&\n\n\t\t\t\t// WARNING: `typeof` is not a foolproof check, as certain envs consider RegExp and NodeList instances to be functions\n\t\t\t\ttypeof value.constructor.isBuffer === 'function' &&\n\t\t\t\tvalue.constructor.isBuffer( value )\n\t\t\t)\n\t\t)\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from './../../native-class';\nimport { REGEXP as RE } from '@stdlib/regexp/function-name';\nimport isBuffer from '@stdlib/assert/is-buffer';\n\n\n// MAIN //\n\n/**\n* Determines the name of a value's constructor.\n*\n* @param {*} v - input value\n* @returns {string} name of a value's constructor\n*\n* @example\n* var v = constructorName( 'a' );\n* // returns 'String'\n*\n* @example\n* var v = constructorName( 5 );\n* // returns 'Number'\n*\n* @example\n* var v = constructorName( null );\n* // returns 'Null'\n*\n* @example\n* var v = constructorName( undefined );\n* // returns 'Undefined'\n*\n* @example\n* var v = constructorName( function noop() {} );\n* // returns 'Function'\n*/\nfunction constructorName( v ) {\n\tvar match;\n\tvar name;\n\tvar ctor;\n\tname = nativeClass( v ).slice( 8, -1 );\n\tif ( (name === 'Object' || name === 'Error') && v.constructor ) {\n\t\tctor = v.constructor;\n\t\tif ( typeof ctor.name === 'string' ) {\n\t\t\treturn ctor.name;\n\t\t}\n\t\tmatch = RE.exec( ctor.toString() );\n\t\tif ( match ) {\n\t\t\treturn match[ 1 ];\n\t\t}\n\t}\n\tif ( isBuffer( v ) ) {\n\t\treturn 'Buffer';\n\t}\n\treturn name;\n}\n\n\n// EXPORTS //\n\nexport default constructorName;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Regular expression to capture everything that is not a space immediately after the `function` keyword and before the first left parenthesis.\n*\n* @module @stdlib/regexp/function-name\n*\n* @example\n* import reFunctionName from '@stdlib/regexp/function-name';\n* var RE_FUNCTION_NAME = reFunctionName();\n*\n* function fname( fcn ) {\n* return RE_FUNCTION_NAME.exec( fcn.toString() )[ 1 ];\n* }\n*\n* var fn = fname( Math.sqrt );\n* // returns 'sqrt'\n*\n* fn = fname( Int8Array );\n* // returns 'Int8Array'\n*\n* fn = fname( Object.prototype.toString );\n* // returns 'toString'\n*\n* fn = fname( function(){} );\n* // returns ''\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport REGEXP from './regexp.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'REGEXP', REGEXP );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Determine a value's type.\n*\n* @module @stdlib/utils/type-of\n*\n* @example\n* import typeOf from '@stdlib/utils/type-of';\n*\n* var str = typeOf( 'a' );\n* // returns 'string'\n*\n* str = typeOf( 5 );\n* // returns 'number'\n*/\n\n// MODULES //\n\nimport usePolyfill from './check.js';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main = ( usePolyfill() ) ? polyfill : builtin;\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport RE from './fixtures/re.js';\nimport nodeList from './fixtures/nodelist.js';\nimport typedarray from './fixtures/typedarray.js';\n\n\n// MAIN //\n\n/**\n* Checks whether a polyfill is needed when using the `typeof` operator.\n*\n* @private\n* @returns {boolean} boolean indicating whether a polyfill is needed\n*/\nfunction check() {\n\tif (\n\t\t// Chrome 1-12 returns 'function' for regular expression instances (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof):\n\t\ttypeof RE === 'function' ||\n\n\t\t// Safari 8 returns 'object' for typed array and weak map constructors (underscore #1929):\n\t\ttypeof typedarray === 'object' ||\n\n\t\t// PhantomJS 1.9 returns 'function' for `NodeList` instances (underscore #2236):\n\t\ttypeof nodeList === 'function'\n\t) {\n\t\treturn true;\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default check;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport ctorName from './../../constructor-name';\n\n\n// MAIN //\n\n/**\n* Determines a value's type.\n*\n* @param {*} v - input value\n* @returns {string} string indicating the value's type\n*/\nfunction typeOf( v ) {\n\treturn ctorName( v ).toLowerCase();\n}\n\n\n// EXPORTS //\n\nexport default typeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport ctorName from './../../constructor-name';\n\n\n// NOTES //\n\n/*\n* Built-in `typeof` operator behavior:\n*\n* ```text\n* typeof null => 'object'\n* typeof undefined => 'undefined'\n* typeof 'a' => 'string'\n* typeof 5 => 'number'\n* typeof NaN => 'number'\n* typeof true => 'boolean'\n* typeof false => 'boolean'\n* typeof {} => 'object'\n* typeof [] => 'object'\n* typeof function foo(){} => 'function'\n* typeof function* foo(){} => 'object'\n* typeof Symbol() => 'symbol'\n* ```\n*\n*/\n\n\n// MAIN //\n\n/**\n* Determines a value's type.\n*\n* @param {*} v - input value\n* @returns {string} string indicating the value's type\n*/\nfunction typeOf( v ) {\n\tvar type;\n\n\t// Address `typeof null` => `object` (see http://wiki.ecmascript.org/doku.php?id=harmony:typeof_null):\n\tif ( v === null ) {\n\t\treturn 'null';\n\t}\n\ttype = typeof v;\n\n\t// If the `typeof` operator returned something other than `object`, we are done. Otherwise, we need to check for an internal class name or search for a constructor.\n\tif ( type === 'object' ) {\n\t\treturn ctorName( v ).toLowerCase();\n\t}\n\treturn type;\n}\n\n\n// EXPORTS //\n\nexport default typeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Tests whether a value equals the prototype of its constructor.\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value equals the prototype of its constructor\n*/\nfunction isConstructorPrototype( value ) {\n\treturn ( value.constructor && value.constructor.prototype === value );\n}\n\n\n// EXPORTS //\n\nexport default isConstructorPrototype;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar w = ( typeof window === 'undefined' ) ? void 0 : window;\n\n\n// EXPORTS //\n\nexport default w;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport indexOf from './../../index-of';\nimport typeOf from './../../type-of';\nimport isConstructorPrototype from './is_constructor_prototype.js';\nimport EXCLUDED_KEYS from './excluded_keys.json';\nimport win from './window.js';\n\n\n// VARIABLES //\n\nvar bool;\n\n\n// FUNCTIONS //\n\n/**\n* Determines whether an environment throws when comparing to the prototype of a value's constructor (e.g., [IE9][1]).\n*\n* [1]: https://stackoverflow.com/questions/7688070/why-is-comparing-the-constructor-property-of-two-windows-unreliable\n*\n* @private\n* @returns {boolean} boolean indicating whether an environment is buggy\n*/\nfunction check() {\n\tvar k;\n\tif ( typeOf( win ) === 'undefined' ) {\n\t\treturn false;\n\t}\n\tfor ( k in win ) { // eslint-disable-line guard-for-in\n\t\ttry {\n\t\t\tif (\n\t\t\t\tindexOf( EXCLUDED_KEYS, k ) === -1 &&\n\t\t\t\thasOwnProp( win, k ) &&\n\t\t\t\twin[ k ] !== null &&\n\t\t\t\ttypeOf( win[ k ] ) === 'object'\n\t\t\t) {\n\t\t\t\tisConstructorPrototype( win[ k ] );\n\t\t\t}\n\t\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n}\n\n\n// MAIN //\n\nbool = check();\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof window !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasArgumentsBug from './has_arguments_bug.js';\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport wrapper from './builtin_wrapper.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @name keys\n* @type {Function}\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nvar keys;\nif ( HAS_BUILTIN ) {\n\tif ( hasArgumentsBug() ) {\n\t\tkeys = wrapper;\n\t} else {\n\t\tkeys = builtin;\n\t}\n} else {\n\tkeys = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport keys from './builtin.js';\n\n\n// FUNCTIONS //\n\n/**\n* Tests the built-in `Object.keys()` implementation when provided `arguments`.\n*\n* @private\n* @returns {boolean} boolean indicating whether the built-in implementation returns the expected number of keys\n*/\nfunction test() {\n\treturn ( keys( arguments ) || '' ).length !== 2;\n}\n\n\n// MAIN //\n\n/**\n* Tests whether the built-in `Object.keys()` implementation supports providing `arguments` as an input value.\n*\n* ## Notes\n*\n* - Safari 5.0 does **not** support `arguments` as an input value.\n*\n* @private\n* @returns {boolean} boolean indicating whether a built-in implementation supports `arguments`\n*/\nfunction check() {\n\treturn test( 1, 2 );\n}\n\n\n// EXPORTS //\n\nexport default check;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isObjectLike from '@stdlib/assert/is-object-like';\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport isArguments from '@stdlib/assert/is-arguments';\nimport HAS_ENUM_PROTO_BUG from './has_enumerable_prototype_bug.js';\nimport HAS_NON_ENUM_PROPS_BUG from './has_non_enumerable_properties_bug.js';\nimport isConstructorPrototype from './is_constructor_prototype_wrapper.js';\nimport NON_ENUMERABLE from './non_enumerable.json';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own enumerable property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var k = keys( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction keys( value ) {\n\tvar skipConstructor;\n\tvar skipPrototype;\n\tvar isFcn;\n\tvar out;\n\tvar k;\n\tvar p;\n\tvar i;\n\n\tout = [];\n\tif ( isArguments( value ) ) {\n\t\t// Account for environments which treat `arguments` differently...\n\t\tfor ( i = 0; i < value.length; i++ ) {\n\t\t\tout.push( i.toString() );\n\t\t}\n\t\t// Note: yes, we are precluding the `arguments` array-like object from having other enumerable properties; however, this should (1) be very rare and (2) not be encouraged (e.g., doing something like `arguments.a = 'b'`; in certain engines directly manipulating the `arguments` value results in automatic de-optimization).\n\t\treturn out;\n\t}\n\tif ( typeof value === 'string' ) {\n\t\t// Account for environments which do not treat string character indices as \"own\" properties...\n\t\tif ( value.length > 0 && !hasOwnProp( value, '0' ) ) {\n\t\t\tfor ( i = 0; i < value.length; i++ ) {\n\t\t\t\tout.push( i.toString() );\n\t\t\t}\n\t\t}\n\t} else {\n\t\tisFcn = ( typeof value === 'function' );\n\t\tif ( isFcn === false && !isObjectLike( value ) ) {\n\t\t\treturn out;\n\t\t}\n\t\tskipPrototype = ( HAS_ENUM_PROTO_BUG && isFcn );\n\t}\n\tfor ( k in value ) {\n\t\tif ( !( skipPrototype && k === 'prototype' ) && hasOwnProp( value, k ) ) {\n\t\t\tout.push( String( k ) );\n\t\t}\n\t}\n\tif ( HAS_NON_ENUM_PROPS_BUG ) {\n\t\tskipConstructor = isConstructorPrototype( value );\n\t\tfor ( i = 0; i < NON_ENUMERABLE.length; i++ ) {\n\t\t\tp = NON_ENUMERABLE[ i ];\n\t\t\tif ( !( skipConstructor && p === 'constructor' ) && hasOwnProp( value, p ) ) {\n\t\t\t\tout.push( String( p ) );\n\t\t\t}\n\t\t}\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default keys;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasAutomationEqualityBug from './has_automation_equality_bug.js';\nimport isConstructorPrototype from './is_constructor_prototype.js';\nimport HAS_WINDOW from './has_window.js';\n\n\n// MAIN //\n\n/**\n* Wraps the test for constructor prototype equality to accommodate buggy environments (e.g., environments which throw when testing equality).\n*\n* @private\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value equals the prototype of its constructor\n*/\nfunction wrapper( value ) {\n\tif ( HAS_WINDOW === false && !hasAutomationEqualityBug ) {\n\t\treturn isConstructorPrototype( value );\n\t}\n\ttry {\n\t\treturn isConstructorPrototype( value );\n\t} catch ( error ) { // eslint-disable-line no-unused-vars\n\t\treturn false;\n\t}\n}\n\n\n// EXPORTS //\n\nexport default wrapper;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar CTORS = {\n\t'Error': Error,\n\t'TypeError': TypeError,\n\t'SyntaxError': SyntaxError,\n\t'ReferenceError': ReferenceError,\n\t'URIError': URIError,\n\t'EvalError': EvalError,\n\t'RangeError': RangeError\n};\n\n\n// EXPORTS //\n\nexport default CTORS;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isInteger } from './../../is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number primitive having a nonnegative integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number primitive having a nonnegative integer value\n*\n* @example\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns false\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn (\n\t\tisInteger( value ) &&\n\t\tvalue >= 0\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isObject as isInteger } from './../../is-integer';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a number object having a nonnegative integer value.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating if a value is a number object having a nonnegative integer value\n*\n* @example\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns true\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn (\n\t\tisInteger( value ) &&\n\t\tvalue.valueOf() >= 0\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a nonnegative integer.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a nonnegative integer\n*\n* @example\n* var bool = isNonNegativeInteger( 5.0 );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( new Number( 5.0 ) );\n* // returns true\n*\n* @example\n* var bool = isNonNegativeInteger( -5.0 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( 3.14 );\n* // returns false\n*\n* @example\n* var bool = isNonNegativeInteger( null );\n* // returns false\n*/\nfunction isNonNegativeInteger( value ) {\n\treturn ( isPrimitive( value ) || isObject( value ) );\n}\n\n\n// EXPORTS //\n\nexport default isNonNegativeInteger;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Test if a value is a nonnegative integer.\n*\n* @module @stdlib/assert/is-nonnegative-integer\n*\n* @example\n* import isNonNegativeInteger from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 5.0 );\n* // returns true\n*\n* bool = isNonNegativeInteger( new Number( 5.0 ) );\n* // returns true\n*\n* bool = isNonNegativeInteger( -5.0 );\n* // returns false\n*\n* bool = isNonNegativeInteger( 3.14 );\n* // returns false\n*\n* bool = isNonNegativeInteger( null );\n* // returns false\n*\n* @example\n* import { isPrimitive as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns true\n*\n* bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns false\n*\n* @example\n* import { isObject as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\n*\n* var bool = isNonNegativeInteger( 3.0 );\n* // returns false\n*\n* bool = isNonNegativeInteger( new Number( 3.0 ) );\n* // returns true\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport isPrimitive from './primitive.js';\nimport isObject from './object.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'isPrimitive', isPrimitive );\nsetReadOnly( main, 'isObject', isObject );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2022 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns an object.\n*\n* @name Object\n* @constructor\n* @type {Function}\n* @param {*} value - input value\n* @returns {Object} object\n*\n* @example\n* var o = new Object( null );\n* // returns {}\n*\n* @example\n* var o = new Object( 5.0 );\n* // returns \n*\n* @example\n* var o = new Object( 'beep' );\n* // returns \n*\n* @example\n* var o1 = {};\n*\n* var o2 = new Object( o1 );\n* // returns {}\n*\n* var bool = ( o1 === o2 );\n* // returns true\n*/\nvar Obj = Object; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default Obj;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport typeOf from '@stdlib/utils/type-of';\n\n\n// MAIN //\n\n/**\n* Tests if a value is a function.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a function\n*\n* @example\n* function beep() {\n* return 'beep';\n* }\n*\n* var bool = isFunction( beep );\n* // returns true\n*/\nfunction isFunction( value ) {\n\t// Note: cannot use `typeof` directly, as various browser engines incorrectly return `'function'` when operating on non-function objects, such as regular expressions and NodeLists.\n\treturn ( typeOf( value ) === 'function' );\n}\n\n\n// EXPORTS //\n\nexport default isFunction;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar getProto = Object.getPrototypeOf;\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFunction from '@stdlib/assert/is-function';\nimport builtin from './native.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar getProto;\nif ( isFunction( Object.getPrototypeOf ) ) {\n\tgetProto = builtin;\n} else {\n\tgetProto = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from './../../native-class';\nimport Object from '@stdlib/object/ctor';\nimport getProto from './proto.js';\n\n\n// MAIN //\n\n/**\n* Returns the prototype of a provided object.\n*\n* @private\n* @param {Object} obj - input object\n* @returns {(Object|null)} prototype\n*/\nfunction getPrototypeOf( obj ) {\n\tvar proto = getProto( obj );\n\tif ( proto || proto === null ) {\n\t\treturn proto;\n\t}\n\tif ( nativeClass( obj.constructor ) === '[object Function]' ) {\n\t\t// May break if the constructor has been tampered with...\n\t\treturn obj.constructor.prototype;\n\t}\n\tif ( obj instanceof Object ) {\n\t\treturn Object.prototype;\n\t}\n\t// Return `null` for objects created via `Object.create( null )`. Also return `null` for cross-realm objects on browsers that lack `__proto__` support, such as IE < 11.\n\treturn null;\n}\n\n\n// EXPORTS //\n\nexport default getPrototypeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Returns the value of the `__proto__` property.\n*\n* @private\n* @param {Object} obj - input object\n* @returns {*} value of `__proto__` property\n*/\nfunction getProto( obj ) {\n\t// eslint-disable-next-line no-proto\n\treturn obj.__proto__;\n}\n\n\n// EXPORTS //\n\nexport default getProto;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\nimport getProto from './detect.js';\n\n\n// MAIN //\n\n/**\n* Returns the prototype of a provided object.\n*\n* @param {*} value - input value\n* @returns {(Object|null)} prototype\n*\n* @example\n* var proto = getPrototypeOf( {} );\n* // returns {}\n*/\nfunction getPrototypeOf( value ) {\n\tif (\n\t\tvalue === null ||\n\t\tvalue === void 0\n\t) {\n\t\treturn null;\n\t}\n\t// In order to ensure consistent ES5/ES6 behavior, cast input value to an object (strings, numbers, booleans); ES5 `Object.getPrototypeOf` throws when provided primitives and ES6 `Object.getPrototypeOf` casts:\n\tvalue = Object( value );\n\n\treturn getProto( value );\n}\n\n\n// EXPORTS //\n\nexport default getPrototypeOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport getPrototypeOf from '@stdlib/utils/get-prototype-of';\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// MAIN //\n\n/**\n* Tests if a value is an `Error` object.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether a value is an `Error` object\n*\n* @example\n* var bool = isError( new Error( 'beep' ) );\n* // returns true\n*\n* @example\n* var bool = isError( {} );\n* // returns false\n*/\nfunction isError( value ) {\n\tif ( typeof value !== 'object' || value === null ) {\n\t\treturn false;\n\t}\n\t// Check for `Error` objects from the same realm (same Node.js `vm` or same `Window` object)...\n\tif ( value instanceof Error ) {\n\t\treturn true;\n\t}\n\t// Walk the prototype tree until we find an object having the desired native class...\n\twhile ( value ) {\n\t\tif ( nativeClass( value ) === '[object Error]' ) {\n\t\t\treturn true;\n\t\t}\n\t\tvalue = getPrototypeOf( value );\n\t}\n\treturn false;\n}\n\n\n// EXPORTS //\n\nexport default isError;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2021 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\n/**\n* Returns a regular expression to parse a regular expression string.\n*\n* @returns {RegExp} regular expression\n*\n* @example\n* var RE_REGEXP = reRegExp();\n*\n* var bool = RE_REGEXP.test( '/^beep$/' );\n* // returns true\n*\n* bool = RE_REGEXP.test( '' );\n* // returns false\n*/\nfunction reRegExp() {\n\treturn /^\\/((?:\\\\\\/|[^\\/])+)\\/([imgy]*)$/; // eslint-disable-line no-useless-escape\n}\n\n\n// EXPORTS //\n\nexport default reRegExp;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a regular expression to parse a regular expression string.\n*\n* @module @stdlib/regexp/regexp\n*\n* @example\n* import reRegExp from '@stdlib/regexp/regexp';\n*\n* var RE_REGEXP = reRegExp();\n*\n* var bool = RE_REGEXP.test( '/^beep$/' );\n* // returns true\n*\n* bool = RE_REGEXP.test( '' );\n* // returns false\n*\n* @example\n* import reRegExp from '@stdlib/regexp/regexp';\n*\n* var RE_REGEXP = reRegExp();\n*\n* var parts = RE_REGEXP.exec( '/^.*$/ig' );\n* // returns [ '/^.*$/ig', '^.*$', 'ig', 'index': 0, 'input': '/^.*$/ig' ]\n*/\n\n// MAIN //\n\nimport setReadOnly from '@stdlib/utils/define-nonenumerable-read-only-property';\nimport main from './main.js';\nimport REGEXP from './regexp.js';\n\n\n// MAIN //\n\nsetReadOnly( main, 'REGEXP', REGEXP );\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.getOwnPropertyNames !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\n\n\n// VARIABLES //\n\nvar propertyNames = Object.getOwnPropertyNames;\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable and non-enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var keys = getOwnPropertyNames( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction getOwnPropertyNames( value ) {\n\treturn propertyNames( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyNames;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return an array of an object's own enumerable and non-enumerable property names.\n*\n* @module @stdlib/utils/property-names\n*\n* @example\n* import getOwnPropertyNames from '@stdlib/utils/property-names';\n*\n* var keys = getOwnPropertyNames({\n* 'foo': 'bar',\n* 'beep': 'boop'\n* });\n* // e.g., returns [ 'foo', 'beep' ]\n*/\n\n// MODULES //\n\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( HAS_BUILTIN ) {\n\tmain = builtin;\n} else {\n\tmain = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Object from '@stdlib/object/ctor';\nimport keys from './../../keys';\n\n\n// MAIN //\n\n/**\n* Returns an array of an object's own enumerable and non-enumerable property names.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.\n* - In environments lacking support for `Object.getOwnPropertyNames()`, property descriptors are unavailable, and thus all properties can be safely assumed to be enumerable. Hence, we can defer to calling `Object.keys`, which retrieves all own enumerable property names.\n*\n* @private\n* @param {*} value - input object\n* @returns {Array} a list of own property names\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var keys = getOwnPropertyNames( obj );\n* // e.g., returns [ 'beep', 'foo' ]\n*/\nfunction getOwnPropertyNames( value ) {\n\treturn keys( Object( value ) );\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyNames;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar bool = ( typeof Object.getOwnPropertyDescriptor !== 'undefined' );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// VARIABLES //\n\nvar propertyDescriptor = Object.getOwnPropertyDescriptor;\n\n\n// MAIN //\n\n/**\n* Returns a property descriptor for an object's own property.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if provided `undefined` or `null`, rather than throwing an error.\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if an object does not have a provided property, rather than `undefined`.\n*\n* @private\n* @param {*} value - input object\n* @param {(string|symbol)} property - property\n* @returns {(Object|null)} property descriptor or null\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var desc = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':3.14}\n*/\nfunction getOwnPropertyDescriptor( value, property ) {\n\tvar desc;\n\tif ( value === null || value === void 0 ) {\n\t\treturn null;\n\t}\n\tdesc = propertyDescriptor( value, property );\n\treturn ( desc === void 0 ) ? null : desc;\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyDescriptor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Return a property descriptor for an object's own property.\n*\n* @module @stdlib/utils/property-descriptor\n*\n* @example\n* import getOwnPropertyDescriptor from '@stdlib/utils/property-descriptor';\n*\n* var obj = {\n* 'foo': 'bar',\n* 'beep': 'boop'\n* };\n*\n* var keys = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':'bar'}\n*/\n\n// MODULES //\n\nimport HAS_BUILTIN from './has_builtin.js';\nimport builtin from './builtin.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar main;\nif ( HAS_BUILTIN ) {\n\tmain = builtin;\n} else {\n\tmain = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\n\n\n// MAIN //\n\n/**\n* Returns a property descriptor for an object's own property.\n*\n* ## Notes\n*\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if provided `undefined` or `null`, rather than throwing an error.\n* - In contrast to the built-in `Object.getOwnPropertyDescriptor()`, this function returns `null` if an object does not have a provided property, rather than `undefined`.\n* - In environments lacking `Object.getOwnPropertyDescriptor()` support, property descriptors do not exist. In non-supporting environment, if an object has a provided property, this function returns a descriptor object equivalent to that returned in a supporting environment; otherwise, the function returns `null`.\n*\n* @private\n* @param {*} value - input object\n* @param {(string|symbol)} property - property\n* @returns {(Object|null)} property descriptor or null\n*\n* @example\n* var obj = {\n* 'beep': 'boop',\n* 'foo': 3.14\n* };\n*\n* var desc = getOwnPropertyDescriptor( obj, 'foo' );\n* // returns {'configurable':true,'enumerable':true,'writable':true,'value':3.14}\n*/\nfunction getOwnPropertyDescriptor( value, property ) {\n\tif ( hasOwnProp( value, property ) ) {\n\t\treturn {\n\t\t\t'configurable': true,\n\t\t\t'enumerable': true,\n\t\t\t'writable': true,\n\t\t\t'value': value[ property ]\n\t\t};\n\t}\n\treturn null;\n}\n\n\n// EXPORTS //\n\nexport default getOwnPropertyDescriptor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Buffer === 'function' ) ? Buffer : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = require( 'buffer' ).Buffer;\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Buffer constructor.\n*\n* @module @stdlib/buffer/ctor\n*\n* @example\n* import ctor from '@stdlib/buffer/ctor';\n*\n* var b = new ctor( [ 1, 2, 3, 4 ] );\n* // returns \n*/\n\n// MODULES //\n\nimport hasNodeBufferSupport from '@stdlib/assert/has-node-buffer-support';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasNodeBufferSupport() ) {\n\tctor = main;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from './../../is-buffer';\nimport GlobalBuffer from './buffer.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Buffer` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Buffer` support\n*\n* @example\n* var bool = hasNodeBufferSupport();\n* // returns \n*/\nfunction hasNodeBufferSupport() {\n\tvar bool;\n\tvar b;\n\n\tif ( typeof GlobalBuffer !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tif ( typeof GlobalBuffer.from === 'function' ) {\n\t\t\tb = GlobalBuffer.from( [ 1, 2, 3, 4 ] );\n\t\t} else {\n\t\t\tb = new GlobalBuffer( [ 1, 2, 3, 4 ] ); // Note: this is deprecated behavior starting in Node v6 (see https://nodejs.org/api/buffer.html#buffer_new_buffer_array)\n\t\t}\n\t\tbool = (\n\t\t\tisBuffer( b ) &&\n\t\t\tb[ 0 ] === 1 &&\n\t\t\tb[ 1 ] === 2 &&\n\t\t\tb[ 2 ] === 3 &&\n\t\t\tb[ 3 ] === 4\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasNodeBufferSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write (browser) polyfill\n\n// MAIN //\n\n/**\n* Buffer constructor.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Copy buffer data to a new `Buffer` instance.\n*\n* @module @stdlib/buffer/from-buffer\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n* import copyBuffer from '@stdlib/buffer/from-buffer';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = copyBuffer( b1 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFrom from './has_from.js';\nimport main from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar copyBuffer;\nif ( hasFrom ) {\n\tcopyBuffer = main;\n} else {\n\tcopyBuffer = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default copyBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFunction from '@stdlib/assert/is-function';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\nvar bool = isFunction( Buffer.from );\n\n\n// EXPORTS //\n\nexport default bool;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport format from '@stdlib/string/format';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\n/**\n* Copies buffer data to a new `Buffer` instance.\n*\n* @param {Buffer} buffer - buffer from which to copy\n* @throws {TypeError} must provide a `Buffer` instance\n* @returns {Buffer} new `Buffer` instance\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = fromBuffer( b1 );\n* // returns \n*/\nfunction fromBuffer( buffer ) {\n\tif ( !isBuffer( buffer ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a Buffer. Value: `%s`.', buffer ) );\n\t}\n\treturn Buffer.from( buffer );\n}\n\n\n// EXPORTS //\n\nexport default fromBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport format from '@stdlib/string/format';\nimport Buffer from './../../ctor';\n\n\n// MAIN //\n\n/**\n* Copies buffer data to a new `Buffer` instance.\n*\n* @param {Buffer} buffer - buffer from which to copy\n* @throws {TypeError} must provide a `Buffer` instance\n* @returns {Buffer} new `Buffer` instance\n*\n* @example\n* import fromArray from '@stdlib/buffer/from-array';\n*\n* var b1 = fromArray( [ 1, 2, 3, 4 ] );\n* // returns \n*\n* var b2 = fromBuffer( b1 );\n* // returns \n*/\nfunction fromBuffer( buffer ) {\n\tif ( !isBuffer( buffer ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a Buffer. Value: `%s`.', buffer ) );\n\t}\n\treturn new Buffer( buffer ); // eslint-disable-line no-buffer-constructor\n}\n\n\n// EXPORTS //\n\nexport default fromBuffer;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt8Array = ( typeof Int8Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int8Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int8Array\n*\n* @example\n* import Int8Array from '@stdlib/array/int8';\n*\n* var bool = isInt8Array( new Int8Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt8Array( [] );\n* // returns false\n*/\nfunction isInt8Array( value ) {\n\treturn (\n\t\t( hasInt8Array && value instanceof Int8Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int8Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt8Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 8-bit integer.\n*\n* @module @stdlib/constants/int8/max\n* @type {integer32}\n*\n* @example\n* import INT8_MAX from '@stdlib/constants/int8/max';\n* // returns 127\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 8-bit integer.\n*\n* ## Notes\n*\n* The number is given by\n*\n* ```tex\n* 2^{7} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 01111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 127\n*/\nvar INT8_MAX = 127|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT8_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int8Array === 'function' ) ? Int8Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int8Array === 'function' ) ? Int8Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 8-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int8\n*\n* @example\n* import ctor from '@stdlib/array/int8';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt8ArraySupport from '@stdlib/assert/has-int8array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt8ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt8Array from './../../is-int8array';\nimport INT8_MAX from '@stdlib/constants/int8/max';\nimport INT8_MIN from '@stdlib/constants/int8/min';\nimport GlobalInt8Array from './int8array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int8Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int8Array` support\n*\n* @example\n* var bool = hasInt8ArraySupport();\n* // returns \n*/\nfunction hasInt8ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt8Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt8Array( [ 1, 3.14, -3.14, INT8_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt8Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT8_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt8ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 8-bit integer.\n*\n* @module @stdlib/constants/int8/min\n* @type {integer32}\n*\n* @example\n* import INT8_MIN from '@stdlib/constants/int8/min';\n* // returns -128\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 8-bit integer.\n*\n* ## Notes\n*\n* The number is given by\n*\n* ```tex\n* -(2^{7})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -128\n*/\nvar INT8_MIN = -128|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT8_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 8-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint8Array = ( typeof Uint8Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint8Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint8Array\n*\n* @example\n* import Uint8Array from '@stdlib/array/uint8';\n*\n* var bool = isUint8Array( new Uint8Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint8Array( [] );\n* // returns false\n*/\nfunction isUint8Array( value ) {\n\treturn (\n\t\t( hasUint8Array && value instanceof Uint8Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint8Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint8Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 8-bit integer.\n*\n* @module @stdlib/constants/uint8/max\n* @type {integer32}\n*\n* @example\n* import UINT8_MAX from '@stdlib/constants/uint8/max';\n* // returns 255\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 8-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{8} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 11111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 255\n*/\nvar UINT8_MAX = 255|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default UINT8_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint8Array === 'function' ) ? Uint8Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint8Array === 'function' ) ? Uint8Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint8\n*\n* @example\n* import ctor from '@stdlib/array/uint8';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint8ArraySupport from '@stdlib/assert/has-uint8array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint8ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint8Array from './../../is-uint8array';\nimport UINT8_MAX from '@stdlib/constants/uint8/max';\nimport GlobalUint8Array from './uint8array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint8Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint8Array` support\n*\n* @example\n* var bool = hasUint8ArraySupport();\n* // returns \n*/\nfunction hasUint8ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint8Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT8_MAX+1, UINT8_MAX+2 ];\n\t\tarr = new GlobalUint8Array( arr );\n\t\tbool = (\n\t\t\tisUint8Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT8_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint8ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 8-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint8ClampedArray = ( typeof Uint8ClampedArray === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint8ClampedArray.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint8ClampedArray\n*\n* @example\n* import Uint8ClampedArray from '@stdlib/array/uint8c';\n*\n* var bool = isUint8ClampedArray( new Uint8ClampedArray( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint8ClampedArray( [] );\n* // returns false\n*/\nfunction isUint8ClampedArray( value ) {\n\treturn (\n\t\t( hasUint8ClampedArray && value instanceof Uint8ClampedArray ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint8ClampedArray]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint8ClampedArray;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint8ClampedArray === 'function' ) ? Uint8ClampedArray : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint8ClampedArray === 'function' ) ? Uint8ClampedArray : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.\n*\n* @module @stdlib/array/uint8c\n*\n* @example\n* import ctor from '@stdlib/array/uint8c';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint8ClampedArraySupport from '@stdlib/assert/has-uint8clampedarray-support'; // eslint-disable-line id-length\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint8ClampedArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint8ClampedArray from './../../is-uint8clampedarray';\nimport GlobalUint8ClampedArray from './uint8clampedarray.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint8ClampedArray` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint8ClampedArray` support\n*\n* @example\n* var bool = hasUint8ClampedArraySupport();\n* // returns \n*/\nfunction hasUint8ClampedArraySupport() { // eslint-disable-line id-length\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint8ClampedArray !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalUint8ClampedArray( [ -1, 0, 1, 3.14, 4.99, 255, 256 ] );\n\t\tbool = (\n\t\t\tisUint8ClampedArray( arr ) &&\n\t\t\tarr[ 0 ] === 0 && // clamped\n\t\t\tarr[ 1 ] === 0 &&\n\t\t\tarr[ 2 ] === 1 &&\n\t\t\tarr[ 3 ] === 3 && // round to nearest\n\t\t\tarr[ 4 ] === 5 && // round to nearest\n\t\t\tarr[ 5 ] === 255 &&\n\t\t\tarr[ 6 ] === 255 // clamped\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint8ClampedArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 8-bit unsigned integers in the platform byte order clamped to 0-255.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt16Array = ( typeof Int16Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int16Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int16Array\n*\n* @example\n* import Int16Array from '@stdlib/array/int16';\n*\n* var bool = isInt16Array( new Int16Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt16Array( [] );\n* // returns false\n*/\nfunction isInt16Array( value ) {\n\treturn (\n\t\t( hasInt16Array && value instanceof Int16Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int16Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt16Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 16-bit integer.\n*\n* @module @stdlib/constants/int16/max\n* @type {integer32}\n*\n* @example\n* import INT16_MAX from '@stdlib/constants/int16/max';\n* // returns 32767\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{15} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 0111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 32767\n*/\nvar INT16_MAX = 32767|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT16_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int16Array === 'function' ) ? Int16Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int16Array === 'function' ) ? Int16Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 16-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int16\n*\n* @example\n* import ctor from '@stdlib/array/int16';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt16ArraySupport from '@stdlib/assert/has-int16array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt16ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt16Array from './../../is-int16array';\nimport INT16_MAX from '@stdlib/constants/int16/max';\nimport INT16_MIN from '@stdlib/constants/int16/min';\nimport GlobalInt16Array from './int16array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int16Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int16Array` support\n*\n* @example\n* var bool = hasInt16ArraySupport();\n* // returns \n*/\nfunction hasInt16ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt16Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt16Array( [ 1, 3.14, -3.14, INT16_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt16Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT16_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt16ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 16-bit integer.\n*\n* @module @stdlib/constants/int16/min\n* @type {integer32}\n*\n* @example\n* import INT16_MIN from '@stdlib/constants/int16/min';\n* // returns -32768\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{15})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 1000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -32768\n*/\nvar INT16_MIN = -32768|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT16_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 16-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint16Array = ( typeof Uint16Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint16Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint16Array\n*\n* @example\n* import Uint16Array from '@stdlib/array/uint16';\n*\n* var bool = isUint16Array( new Uint16Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint16Array( [] );\n* // returns false\n*/\nfunction isUint16Array( value ) {\n\treturn (\n\t\t( hasUint16Array && value instanceof Uint16Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint16Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint16Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum unsigned 16-bit integer.\n*\n* @module @stdlib/constants/uint16/max\n* @type {integer32}\n*\n* @example\n* import UINT16_MAX from '@stdlib/constants/uint16/max';\n* // returns 65535\n*/\n\n\n// MAIN //\n\n/**\n* Maximum unsigned 16-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{16} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 1111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 65535\n*/\nvar UINT16_MAX = 65535|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default UINT16_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint16Array === 'function' ) ? Uint16Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint16Array === 'function' ) ? Uint16Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 16-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint16\n*\n* @example\n* import ctor from '@stdlib/array/uint16';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint16ArraySupport from '@stdlib/assert/has-uint16array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint16ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint16Array from './../../is-uint16array';\nimport UINT16_MAX from '@stdlib/constants/uint16/max';\nimport GlobalUint16Array from './uint16array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint16Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint16Array` support\n*\n* @example\n* var bool = hasUint16ArraySupport();\n* // returns \n*/\nfunction hasUint16ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint16Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT16_MAX+1, UINT16_MAX+2 ];\n\t\tarr = new GlobalUint16Array( arr );\n\t\tbool = (\n\t\t\tisUint16Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT16_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint16ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 16-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasInt32Array = ( typeof Int32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is an Int32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is an Int32Array\n*\n* @example\n* import Int32Array from '@stdlib/array/int32';\n*\n* var bool = isInt32Array( new Int32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isInt32Array( [] );\n* // returns false\n*/\nfunction isInt32Array( value ) {\n\treturn (\n\t\t( hasInt32Array && value instanceof Int32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Int32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isInt32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Maximum signed 32-bit integer.\n*\n* @module @stdlib/constants/int32/max\n* @type {integer32}\n*\n* @example\n* import INT32_MAX from '@stdlib/constants/int32/max';\n* // returns 2147483647\n*/\n\n\n// MAIN //\n\n/**\n* Maximum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* 2^{31} - 1\n* ```\n*\n* which corresponds to the bit sequence\n*\n* ```binarystring\n* 01111111111111111111111111111111\n* ```\n*\n* @constant\n* @type {integer32}\n* @default 2147483647\n*/\nvar INT32_MAX = 2147483647|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MAX;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Int32Array === 'function' ) ? Int32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Int32Array === 'function' ) ? Int32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @module @stdlib/array/int32\n*\n* @example\n* import ctor from '@stdlib/array/int32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasInt32ArraySupport from '@stdlib/assert/has-int32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasInt32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isInt32Array from './../../is-int32array';\nimport INT32_MAX from '@stdlib/constants/int32/max';\nimport INT32_MIN from '@stdlib/constants/int32/min';\nimport GlobalInt32Array from './int32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Int32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Int32Array` support\n*\n* @example\n* var bool = hasInt32ArraySupport();\n* // returns \n*/\nfunction hasInt32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalInt32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalInt32Array( [ 1, 3.14, -3.14, INT32_MAX+1 ] );\n\t\tbool = (\n\t\t\tisInt32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === -3 && // truncation\n\t\t\tarr[ 3 ] === INT32_MIN // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasInt32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Minimum signed 32-bit integer.\n*\n* @module @stdlib/constants/int32/min\n* @type {integer32}\n*\n* @example\n* import INT32_MIN from '@stdlib/constants/int32/min';\n* // returns -2147483648\n*/\n\n\n// MAIN //\n\n/**\n* Minimum signed 32-bit integer.\n*\n* ## Notes\n*\n* The number has the value\n*\n* ```tex\n* -(2^{31})\n* ```\n*\n* which corresponds to the two's complement bit sequence\n*\n* ```binarystring\n* 10000000000000000000000000000000\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -2147483648\n*/\nvar INT32_MIN = -2147483648|0; // asm type annotation\n\n\n// EXPORTS //\n\nexport default INT32_MIN;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of twos-complement 32-bit signed integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasUint32Array = ( typeof Uint32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Uint32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Uint32Array\n*\n* @example\n* import Uint32Array from '@stdlib/array/uint32';\n*\n* var bool = isUint32Array( new Uint32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isUint32Array( [] );\n* // returns false\n*/\nfunction isUint32Array( value ) {\n\treturn (\n\t\t( hasUint32Array && value instanceof Uint32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Uint32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isUint32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Uint32Array === 'function' ) ? Uint32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Uint32Array === 'function' ) ? Uint32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of 32-bit unsigned integers in the platform byte order.\n*\n* @module @stdlib/array/uint32\n*\n* @example\n* import ctor from '@stdlib/array/uint32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasUint32ArraySupport from '@stdlib/assert/has-uint32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasUint32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isUint32Array from './../../is-uint32array';\nimport UINT32_MAX from '@stdlib/constants/uint32/max';\nimport GlobalUint32Array from './uint32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Uint32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Uint32Array` support\n*\n* @example\n* var bool = hasUint32ArraySupport();\n* // returns \n*/\nfunction hasUint32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalUint32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = [ 1, 3.14, -3.14, UINT32_MAX+1, UINT32_MAX+2 ];\n\t\tarr = new GlobalUint32Array( arr );\n\t\tbool = (\n\t\t\tisUint32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1 &&\n\t\t\tarr[ 1 ] === 3 && // truncation\n\t\t\tarr[ 2 ] === UINT32_MAX-2 && // truncation and wrap around\n\t\t\tarr[ 3 ] === 0 && // wrap around\n\t\t\tarr[ 4 ] === 1 // wrap around\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasUint32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of 32-bit unsigned integers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasFloat32Array = ( typeof Float32Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Float32Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Float32Array\n*\n* @example\n* import Float32Array from '@stdlib/array/float32';\n*\n* var bool = isFloat32Array( new Float32Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isFloat32Array( [] );\n* // returns false\n*/\nfunction isFloat32Array( value ) {\n\treturn (\n\t\t( hasFloat32Array && value instanceof Float32Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Float32Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isFloat32Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Float32Array === 'function' ) ? Float32Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Float32Array === 'function' ) ? Float32Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of single-precision floating-point numbers in the platform byte order.\n*\n* @module @stdlib/array/float32\n*\n* @example\n* import ctor from '@stdlib/array/float32';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFloat32ArraySupport from '@stdlib/assert/has-float32array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasFloat32ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFloat32Array from './../../is-float32array';\nimport PINF from '@stdlib/constants/float64/pinf';\nimport GlobalFloat32Array from './float32array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Float32Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Float32Array` support\n*\n* @example\n* var bool = hasFloat32ArraySupport();\n* // returns \n*/\nfunction hasFloat32ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalFloat32Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalFloat32Array( [ 1.0, 3.14, -3.14, 5.0e40 ] );\n\t\tbool = (\n\t\t\tisFloat32Array( arr ) &&\n\t\t\tarr[ 0 ] === 1.0 &&\n\t\t\tarr[ 1 ] === 3.140000104904175 &&\n\t\t\tarr[ 2 ] === -3.140000104904175 &&\n\t\t\tarr[ 3 ] === PINF\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasFloat32ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of single-precision floating-point numbers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport nativeClass from '@stdlib/utils/native-class';\n\n\n// VARIABLES //\n\nvar hasFloat64Array = ( typeof Float64Array === 'function' ); // eslint-disable-line stdlib/require-globals\n\n\n// MAIN //\n\n/**\n* Tests if a value is a Float64Array.\n*\n* @param {*} value - value to test\n* @returns {boolean} boolean indicating whether value is a Float64Array\n*\n* @example\n* import Float64Array from '@stdlib/array/float64';\n*\n* var bool = isFloat64Array( new Float64Array( 10 ) );\n* // returns true\n*\n* @example\n* var bool = isFloat64Array( [] );\n* // returns false\n*/\nfunction isFloat64Array( value ) {\n\treturn (\n\t\t( hasFloat64Array && value instanceof Float64Array ) || // eslint-disable-line stdlib/require-globals\n\t\tnativeClass( value ) === '[object Float64Array]'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default isFloat64Array;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar main = ( typeof Float64Array === 'function' ) ? Float64Array : null; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default main;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar ctor = ( typeof Float64Array === 'function' ) ? Float64Array : void 0; // eslint-disable-line stdlib/require-globals\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* Typed array constructor which returns a typed array representing an array of double-precision floating-point numbers in the platform byte order.\n*\n* @module @stdlib/array/float64\n*\n* @example\n* import ctor from '@stdlib/array/float64';\n*\n* var arr = new ctor( 10 );\n* // returns \n*/\n\n// MODULES //\n\nimport hasFloat64ArraySupport from '@stdlib/assert/has-float64array-support';\nimport builtin from './main.js';\nimport polyfill from './polyfill.js';\n\n\n// MAIN //\n\nvar ctor;\nif ( hasFloat64ArraySupport() ) {\n\tctor = builtin;\n} else {\n\tctor = polyfill;\n}\n\n\n// EXPORTS //\n\nexport default ctor;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isFloat64Array from './../../is-float64array';\nimport GlobalFloat64Array from './float64array.js';\n\n\n// MAIN //\n\n/**\n* Tests for native `Float64Array` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Float64Array` support\n*\n* @example\n* var bool = hasFloat64ArraySupport();\n* // returns \n*/\nfunction hasFloat64ArraySupport() {\n\tvar bool;\n\tvar arr;\n\n\tif ( typeof GlobalFloat64Array !== 'function' ) {\n\t\treturn false;\n\t}\n\t// Test basic support...\n\ttry {\n\t\tarr = new GlobalFloat64Array( [ 1.0, 3.14, -3.14, NaN ] );\n\t\tbool = (\n\t\t\tisFloat64Array( arr ) &&\n\t\t\tarr[ 0 ] === 1.0 &&\n\t\t\tarr[ 1 ] === 3.14 &&\n\t\t\tarr[ 2 ] === -3.14 &&\n\t\t\tarr[ 3 ] !== arr[ 3 ]\n\t\t);\n\t} catch ( err ) { // eslint-disable-line no-unused-vars\n\t\tbool = false;\n\t}\n\treturn bool;\n}\n\n\n// EXPORTS //\n\nexport default hasFloat64ArraySupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// TODO: write polyfill\n\n// MAIN //\n\n/**\n* Typed array which represents an array of double-precision floating-point numbers in the platform byte order.\n*\n* @throws {Error} not implemented\n*/\nfunction polyfill() {\n\tthrow new Error( 'not implemented' );\n}\n\n\n// EXPORTS //\n\nexport default polyfill;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport Int8Array from '@stdlib/array/int8';\nimport Uint8Array from '@stdlib/array/uint8';\nimport Uint8ClampedArray from '@stdlib/array/uint8c';\nimport Int16Array from '@stdlib/array/int16';\nimport Uint16Array from '@stdlib/array/uint16';\nimport Int32Array from '@stdlib/array/int32';\nimport Uint32Array from '@stdlib/array/uint32';\nimport Float32Array from '@stdlib/array/float32';\nimport Float64Array from '@stdlib/array/float64';\n\n\n// VARIABLES //\n\nvar hash;\n\n\n// FUNCTIONS //\n\n/**\n* Copies an `Int8Array`.\n*\n* @private\n* @param {Int8Array} arr - array to copy\n* @returns {Int8Array} new array\n*/\nfunction int8array( arr ) {\n\treturn new Int8Array( arr );\n}\n\n/**\n* Copies a `Uint8Array`.\n*\n* @private\n* @param {Uint8Array} arr - array to copy\n* @returns {Uint8Array} new array\n*/\nfunction uint8array( arr ) {\n\treturn new Uint8Array( arr );\n}\n\n/**\n* Copies a `Uint8ClampedArray`.\n*\n* @private\n* @param {Uint8ClampedArray} arr - array to copy\n* @returns {Uint8ClampedArray} new array\n*/\nfunction uint8clampedarray( arr ) {\n\treturn new Uint8ClampedArray( arr );\n}\n\n/**\n* Copies an `Int16Array`.\n*\n* @private\n* @param {Int16Array} arr - array to copy\n* @returns {Int16Array} new array\n*/\nfunction int16array( arr ) {\n\treturn new Int16Array( arr );\n}\n\n/**\n* Copies a `Uint16Array`.\n*\n* @private\n* @param {Uint16Array} arr - array to copy\n* @returns {Uint16Array} new array\n*/\nfunction uint16array( arr ) {\n\treturn new Uint16Array( arr );\n}\n\n/**\n* Copies an `Int32Array`.\n*\n* @private\n* @param {Int32Array} arr - array to copy\n* @returns {Int32Array} new array\n*/\nfunction int32array( arr ) {\n\treturn new Int32Array( arr );\n}\n\n/**\n* Copies a `Uint32Array`.\n*\n* @private\n* @param {Uint32Array} arr - array to copy\n* @returns {Uint32Array} new array\n*/\nfunction uint32array( arr ) {\n\treturn new Uint32Array( arr );\n}\n\n/**\n* Copies a `Float32Array`.\n*\n* @private\n* @param {Float32Array} arr - array to copy\n* @returns {Float32Array} new array\n*/\nfunction float32array( arr ) {\n\treturn new Float32Array( arr );\n}\n\n/**\n* Copies a `Float64Array`.\n*\n* @private\n* @param {Float64Array} arr - array to copy\n* @returns {Float64Array} new array\n*/\nfunction float64array( arr ) {\n\treturn new Float64Array( arr );\n}\n\n/**\n* Returns a hash of functions for copying typed arrays.\n*\n* @private\n* @returns {Object} function hash\n*/\nfunction typedarrays() {\n\tvar out = {\n\t\t'int8array': int8array,\n\t\t'uint8array': uint8array,\n\t\t'uint8clampedarray': uint8clampedarray,\n\t\t'int16array': int16array,\n\t\t'uint16array': uint16array,\n\t\t'int32array': int32array,\n\t\t'uint32array': uint32array,\n\t\t'float32array': float32array,\n\t\t'float64array': float64array\n\t};\n\treturn out;\n}\n\n\n// MAIN //\n\nhash = typedarrays();\n\n\n// EXPORTS //\n\nexport default hash;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from '@stdlib/assert/has-own-property';\nimport isArray from '@stdlib/assert/is-array';\nimport isBuffer from '@stdlib/assert/is-buffer';\nimport isError from '@stdlib/assert/is-error';\nimport typeOf from './../../type-of';\nimport regexp from './../../regexp-from-string';\nimport indexOf from './../../index-of';\nimport objectKeys from './../../keys';\nimport propertyNames from './../../property-names';\nimport propertyDescriptor from './../../property-descriptor';\nimport getPrototypeOf from './../../get-prototype-of';\nimport defineProperty from './../../define-property';\nimport copyBuffer from '@stdlib/buffer/from-buffer';\nimport typedArrays from './typed_arrays.js';\n\n\n// FUNCTIONS //\n\n/**\n* Clones a class instance.\n*\n* ## Notes\n*\n* - This should **only** be used for simple cases. Any instances with privileged access to variables (e.g., within closures) cannot be cloned. This approach should be considered **fragile**.\n* - The function is greedy, disregarding the notion of a `level`. Instead, the function deep copies all properties, as we assume the concept of `level` applies only to the class instance reference but not to its internal state. This prevents, in theory, two instances from sharing state.\n*\n* @private\n* @param {Object} val - class instance\n* @returns {Object} new instance\n*/\nfunction cloneInstance( val ) {\n\tvar cache;\n\tvar names;\n\tvar name;\n\tvar refs;\n\tvar desc;\n\tvar tmp;\n\tvar ref;\n\tvar i;\n\n\tcache = [];\n\trefs = [];\n\n\tref = Object.create( getPrototypeOf( val ) );\n\tcache.push( val );\n\trefs.push( ref );\n\n\tnames = propertyNames( val );\n\tfor ( i = 0; i < names.length; i++ ) {\n\t\tname = names[ i ];\n\t\tdesc = propertyDescriptor( val, name );\n\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\ttmp = ( isArray( val[name] ) ) ? [] : {};\n\t\t\tdesc.value = deepCopy( val[name], tmp, cache, refs, -1 );\n\t\t}\n\t\tdefineProperty( ref, name, desc );\n\t}\n\tif ( !Object.isExtensible( val ) ) {\n\t\tObject.preventExtensions( ref );\n\t}\n\tif ( Object.isSealed( val ) ) {\n\t\tObject.seal( ref );\n\t}\n\tif ( Object.isFrozen( val ) ) {\n\t\tObject.freeze( ref );\n\t}\n\treturn ref;\n}\n\n/**\n* Copies an error object.\n*\n* @private\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error - error to copy\n* @returns {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error copy\n*\n* @example\n* var err1 = new TypeError( 'beep' );\n*\n* var err2 = copyError( err1 );\n* // returns \n*/\nfunction copyError( error ) {\n\tvar cache = [];\n\tvar refs = [];\n\tvar keys;\n\tvar desc;\n\tvar tmp;\n\tvar key;\n\tvar err;\n\tvar i;\n\n\t// Create a new error...\n\terr = new error.constructor( error.message );\n\n\tcache.push( error );\n\trefs.push( err );\n\n\t// If a `stack` property is present, copy it over...\n\tif ( error.stack ) {\n\t\terr.stack = error.stack;\n\t}\n\t// Node.js specific (system errors)...\n\tif ( error.code ) {\n\t\terr.code = error.code;\n\t}\n\tif ( error.errno ) {\n\t\terr.errno = error.errno;\n\t}\n\tif ( error.syscall ) {\n\t\terr.syscall = error.syscall;\n\t}\n\t// Any enumerable properties...\n\tkeys = objectKeys( error );\n\tfor ( i = 0; i < keys.length; i++ ) {\n\t\tkey = keys[ i ];\n\t\tdesc = propertyDescriptor( error, key );\n\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\ttmp = ( isArray( error[ key ] ) ) ? [] : {};\n\t\t\tdesc.value = deepCopy( error[ key ], tmp, cache, refs, -1 );\n\t\t}\n\t\tdefineProperty( err, key, desc );\n\t}\n\treturn err;\n}\n\n\n// MAIN //\n\n/**\n* Recursively performs a deep copy of an input object.\n*\n* @private\n* @param {*} val - value to copy\n* @param {(Array|Object)} copy - copy\n* @param {Array} cache - an array of visited objects\n* @param {Array} refs - an array of object references\n* @param {NonNegativeInteger} level - copy depth\n* @returns {*} deep copy\n*/\nfunction deepCopy( val, copy, cache, refs, level ) {\n\tvar parent;\n\tvar keys;\n\tvar name;\n\tvar desc;\n\tvar ctor;\n\tvar key;\n\tvar ref;\n\tvar x;\n\tvar i;\n\tvar j;\n\n\tlevel -= 1;\n\n\t// Primitives and functions...\n\tif (\n\t\ttypeof val !== 'object' ||\n\t\tval === null\n\t) {\n\t\treturn val;\n\t}\n\tif ( isBuffer( val ) ) {\n\t\treturn copyBuffer( val );\n\t}\n\tif ( isError( val ) ) {\n\t\treturn copyError( val );\n\t}\n\t// Objects...\n\tname = typeOf( val );\n\n\tif ( name === 'date' ) {\n\t\treturn new Date( +val );\n\t}\n\tif ( name === 'regexp' ) {\n\t\treturn regexp( val.toString() );\n\t}\n\tif ( name === 'set' ) {\n\t\treturn new Set( val );\n\t}\n\tif ( name === 'map' ) {\n\t\treturn new Map( val );\n\t}\n\tif (\n\t\tname === 'string' ||\n\t\tname === 'boolean' ||\n\t\tname === 'number'\n\t) {\n\t\t// If provided an `Object`, return an equivalent primitive!\n\t\treturn val.valueOf();\n\t}\n\tctor = typedArrays[ name ];\n\tif ( ctor ) {\n\t\treturn ctor( val );\n\t}\n\t// Class instances...\n\tif (\n\t\tname !== 'array' &&\n\t\tname !== 'object'\n\t) {\n\t\t// Cloning requires ES5 or higher...\n\t\tif ( typeof Object.freeze === 'function' ) {\n\t\t\treturn cloneInstance( val );\n\t\t}\n\t\treturn {};\n\t}\n\t// Arrays and plain objects...\n\tkeys = objectKeys( val );\n\tif ( level > 0 ) {\n\t\tparent = name;\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tx = val[ key ];\n\n\t\t\t// Primitive, Buffer, special class instance...\n\t\t\tname = typeOf( x );\n\t\t\tif (\n\t\t\t\ttypeof x !== 'object' ||\n\t\t\t\tx === null ||\n\t\t\t\t(\n\t\t\t\t\tname !== 'array' &&\n\t\t\t\t\tname !== 'object'\n\t\t\t\t) ||\n\t\t\t\tisBuffer( x )\n\t\t\t) {\n\t\t\t\tif ( parent === 'object' ) {\n\t\t\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\t\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\t\t\t\tdesc.value = deepCopy( x );\n\t\t\t\t\t}\n\t\t\t\t\tdefineProperty( copy, key, desc );\n\t\t\t\t} else {\n\t\t\t\t\tcopy[ key ] = deepCopy( x );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// Circular reference...\n\t\t\ti = indexOf( cache, x );\n\t\t\tif ( i !== -1 ) {\n\t\t\t\tcopy[ key ] = refs[ i ];\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// Plain array or object...\n\t\t\tref = ( isArray( x ) ) ? new Array( x.length ) : {}; // eslint-disable-line stdlib/no-new-array\n\t\t\tcache.push( x );\n\t\t\trefs.push( ref );\n\t\t\tif ( parent === 'array' ) {\n\t\t\t\tcopy[ key ] = deepCopy( x, ref, cache, refs, level );\n\t\t\t} else {\n\t\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\t\tif ( hasOwnProp( desc, 'value' ) ) {\n\t\t\t\t\tdesc.value = deepCopy( x, ref, cache, refs, level );\n\t\t\t\t}\n\t\t\t\tdefineProperty( copy, key, desc );\n\t\t\t}\n\t\t}\n\t} else if ( name === 'array' ) {\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tcopy[ key ] = val[ key ];\n\t\t}\n\t} else {\n\t\tfor ( j = 0; j < keys.length; j++ ) {\n\t\t\tkey = keys[ j ];\n\t\t\tdesc = propertyDescriptor( val, key );\n\t\t\tdefineProperty( copy, key, desc );\n\t\t}\n\t}\n\tif ( !Object.isExtensible( val ) ) {\n\t\tObject.preventExtensions( copy );\n\t}\n\tif ( Object.isSealed( val ) ) {\n\t\tObject.seal( copy );\n\t}\n\tif ( Object.isFrozen( val ) ) {\n\t\tObject.freeze( copy );\n\t}\n\treturn copy;\n}\n\n\n// EXPORTS //\n\nexport default deepCopy;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport reRegExp from '@stdlib/regexp/regexp';\nimport format from '@stdlib/string/format';\n\n\n// MAIN //\n\n/**\n* Parses a regular expression string and returns a new regular expression.\n*\n* @param {string} str - regular expression string\n* @throws {TypeError} must provide a regular expression string\n* @returns {(RegExp|null)} regular expression or null\n*\n* @example\n* var re = reFromString( '/beep/' );\n* // returns /beep/\n*/\nfunction reFromString( str ) {\n\tif ( !isString( str ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide a regular expression string. Value: `%s`.', str ) );\n\t}\n\t// Capture the regular expression pattern and any flags:\n\tstr = reRegExp().exec( str );\n\n\t// Create a new regular expression:\n\treturn ( str ) ? new RegExp( str[1], str[2] ) : null;\n}\n\n\n// EXPORTS //\n\nexport default reFromString;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport isArray from '@stdlib/assert/is-array';\nimport { isPrimitive as isNonNegativeInteger } from '@stdlib/assert/is-nonnegative-integer';\nimport format from '@stdlib/string/format';\nimport PINF from '@stdlib/constants/float64/pinf';\nimport deepCopy from './deep_copy.js';\n\n\n// MAIN //\n\n/**\n* Copies or deep clones a value to an arbitrary depth.\n*\n* @param {*} value - value to copy\n* @param {NonNegativeInteger} [level=+infinity] - copy depth\n* @throws {TypeError} second argument must be a nonnegative integer\n* @returns {*} value copy\n*\n* @example\n* var out = copy( 'beep' );\n* // returns 'beep'\n*\n* @example\n* var value = [\n* {\n* 'a': 1,\n* 'b': true,\n* 'c': [ 1, 2, 3 ]\n* }\n* ];\n* var out = copy( value );\n* // returns [ { 'a': 1, 'b': true, 'c': [ 1, 2, 3 ] } ]\n*\n* var bool = ( value[0].c === out[0].c );\n* // returns false\n*/\nfunction copy( value, level ) {\n\tvar out;\n\tif ( arguments.length > 1 ) {\n\t\tif ( !isNonNegativeInteger( level ) ) {\n\t\t\tthrow new TypeError( format( 'invalid argument. Second argument must be a nonnegative integer. Value: `%s`.', level ) );\n\t\t}\n\t\tif ( level === 0 ) {\n\t\t\treturn value;\n\t\t}\n\t} else {\n\t\tlevel = PINF;\n\t}\n\tout = ( isArray( value ) ) ? new Array( value.length ) : {}; // eslint-disable-line stdlib/no-new-array\n\treturn deepCopy( value, out, [value], [out], level );\n}\n\n\n// EXPORTS //\n\nexport default copy;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2025 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasOwnProp from './../../has-own-property';\nimport Symbol from '@stdlib/symbol/ctor';\n\n\n// MAIN //\n\n/**\n* Tests for native `Symbol.hasInstance` support.\n*\n* @returns {boolean} boolean indicating if an environment has `Symbol.hasInstance` support\n*\n* @example\n* var bool = hasHasInstanceSymbolSupport();\n* // returns \n*/\nfunction hasHasInstanceSymbolSupport() { // eslint-disable-line id-length\n\treturn (\n\t\ttypeof Symbol === 'function' &&\n\t\ttypeof Symbol( 'foo' ) === 'symbol' &&\n\t\thasOwnProp( Symbol, 'hasInstance' ) &&\n\t\ttypeof Symbol.hasInstance === 'symbol'\n\t);\n}\n\n\n// EXPORTS //\n\nexport default hasHasInstanceSymbolSupport;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2025 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasHasInstanceSymbolSupport from '@stdlib/assert/has-has-instance-symbol-support'; // eslint-disable-line id-length\n\n\n// MAIN //\n\n/**\n* Has instance symbol.\n*\n* @name HasInstanceSymbol\n* @constant\n* @type {(symbol|null)}\n*\n* @example\n* import isArray from '@stdlib/assert/is-array';\n*\n* function ArrayLike() {\n* return {\n* 'length': 3,\n* '0': 1,\n* '1': 2,\n* '2': 3\n* };\n* };\n*\n* ArrayLike[ HasInstanceSymbol ] = isArray;\n*/\nvar HasInstanceSymbol = ( hasHasInstanceSymbolSupport() ) ? Symbol.hasInstance : null; // eslint-disable-line max-len\n\n\n// EXPORTS //\n\nexport default HasInstanceSymbol;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport hasHasInstanceSymbolSupport from './../../has-has-instance-symbol-support'; // eslint-disable-line id-length\nimport HasInstanceSymbol from '@stdlib/symbol/has-instance';\nimport format from '@stdlib/string/format';\n\n\n// VARIABLES //\n\nvar hasSupport = hasHasInstanceSymbolSupport();\n\n\n// MAIN //\n\n/**\n* Tests whether a value has in its prototype chain a specified constructor as a prototype property.\n*\n* @param {*} value - value to test\n* @param {Function} constructor - constructor to test against\n* @throws {TypeError} constructor must be callable\n* @returns {boolean} boolean indicating whether a value is an instance of a provided constructor\n*\n* @example\n* var bool = instanceOf( [], Array );\n* // returns true\n*\n* @example\n* var bool = instanceOf( {}, Object ); // exception\n* // returns true\n*\n* @example\n* var bool = instanceOf( 'beep', String );\n* // returns false\n*\n* @example\n* var bool = instanceOf( null, Object );\n* // returns false\n*\n* @example\n* var bool = instanceOf( 5, Object );\n* // returns false\n*/\nfunction instanceOf( value, constructor ) {\n\t// TODO: replace with `isCallable` check\n\tif (\n\t\ttypeof constructor !== 'function' &&\n\t\t!(\n\t\t\thasSupport &&\n\t\t\ttypeof constructor === 'object' &&\n\t\t\ttypeof constructor[ HasInstanceSymbol ] === 'function'\n\t\t)\n\t) {\n\t\tthrow new TypeError( format( 'invalid argument. Second argument must be callable. Value: `%s`.', constructor ) );\n\t}\n\treturn ( value instanceof constructor );\n}\n\n\n// EXPORTS //\n\nexport default instanceOf;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MAIN //\n\nvar CTORS = [\n\t[ TypeError, 'TypeError' ],\n\t[ SyntaxError, 'SyntaxError' ],\n\t[ ReferenceError, 'ReferenceError' ],\n\t[ RangeError, 'RangeError' ],\n\t[ URIError, 'URIError' ],\n\t[ EvalError, 'EvalError' ],\n\t[ Error, 'Error' ]\n];\n\n\n// EXPORTS //\n\nexport default CTORS;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n/*\n* The following modules are intentionally not exported: tools\n*/\n\n// MODULES //\n\nimport setReadOnly from '@stdlib/utils/define-read-only-property';\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace ns\n*/\nvar ns = {};\n\n/**\n* @name reviveError\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/error/reviver}\n*/\nimport reviveError from './../reviver';\nsetReadOnly( ns, 'reviveError', reviveError );\n\n/**\n* @name error2json\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/error/to-json}\n*/\nimport error2json from './../to-json';\nsetReadOnly( ns, 'error2json', error2json );\n\n\n// EXPORTS //\n\nexport default ns;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport objectKeys from '@stdlib/utils/keys';\nimport { isPrimitive as isString } from '@stdlib/assert/is-string';\nimport ctors from './ctors.js';\n\n\n// MAIN //\n\n/**\n* Revives a JSON-serialized error object.\n*\n* @param {string} key - key\n* @param {*} value - value\n* @returns {(*|Error|SyntaxError|URIError|EvalError|ReferenceError|RangeError|TypeError)} value or error object\n*\n* @example\n* import parseJSON from '@stdlib/utils/parse-json';\n*\n* var str = '{\"type\":\"TypeError\",\"message\":\"beep\"}';\n* var err = parseJSON( str, reviveError );\n* // returns \n*/\nfunction reviveError( key, value ) {\n\tvar hasStack;\n\tvar ctor;\n\tvar keys;\n\tvar err;\n\tvar k;\n\tvar i;\n\tif (\n\t\tvalue &&\n\t\tvalue.type &&\n\t\tisString( value.message )\n\t) {\n\t\tctor = ctors[ value.type ];\n\t\tif ( ctor ) {\n\t\t\terr = new ctor( value.message );\n\t\t\tkeys = objectKeys( value );\n\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\tk = keys[ i ];\n\t\t\t\tif (\n\t\t\t\t\tk === 'type' ||\n\t\t\t\t\tk === 'message' ||\n\t\t\t\t\tk === 'name' // read-only for built-ins\n\t\t\t\t) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif ( k === 'stack' ) {\n\t\t\t\t\tif ( !isString( value[k] ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\thasStack = true;\n\t\t\t\t}\n\t\t\t\terr[ k ] = value[ k ];\n\t\t\t}\n\t\t\tif ( !hasStack && isString( err.stack ) ) {\n\t\t\t\terr.stack = '';\n\t\t\t}\n\t\t\treturn err;\n\t\t}\n\t}\n\treturn value;\n}\n\n\n// EXPORTS //\n\nexport default reviveError;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport objectKeys from '@stdlib/utils/keys';\nimport copy from '@stdlib/utils/copy';\nimport isError from '@stdlib/assert/is-error';\nimport format from '@stdlib/string/format';\nimport typeName from './type.js';\n\n\n// MAIN //\n\n/**\n* Returns a JSON representation of an error object.\n*\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} err - error to serialize\n* @throws {TypeError} must provide an error object\n* @returns {Object} JSON representation\n*\n* @example\n* var err = new Error( 'beep' );\n* var json = error2json( err );\n* // returns {...}\n*/\nfunction error2json( err ) {\n\tvar keys;\n\tvar out;\n\tvar i;\n\tif ( !isError( err ) ) {\n\t\tthrow new TypeError( format( 'invalid argument. Must provide an error object. Value: `%s`.', err ) );\n\t}\n\tout = {};\n\n\t// Guaranteed properties:\n\tout.type = typeName( err );\n\tout.message = err.message;\n\n\t// Possible general error properties...\n\tif ( err.name ) {\n\t\tout.name = err.name;\n\t}\n\tif ( err.stack ) {\n\t\tout.stack = err.stack;\n\t}\n\t// Possible Node.js (system error) properties...\n\tif ( err.code ) {\n\t\tout.code = err.code;\n\t}\n\tif ( err.errno ) {\n\t\tout.errno = err.errno;\n\t}\n\tif ( err.syscall ) {\n\t\tout.syscall = err.syscall;\n\t}\n\t// Any enumerable properties...\n\tkeys = objectKeys( err );\n\tfor ( i = 0; i < keys.length; i++ ) {\n\t\tout[ keys[i] ] = copy( err[ keys[i] ] );\n\t}\n\treturn out;\n}\n\n\n// EXPORTS //\n\nexport default error2json;\n","/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n// MODULES //\n\nimport instanceOf from '@stdlib/assert/instance-of';\nimport ctorName from '@stdlib/utils/constructor-name';\nimport getPrototypeOf from '@stdlib/utils/get-prototype-of';\nimport CTORS from './ctors.js';\n\n\n// MAIN //\n\n/**\n* Returns the error type.\n*\n* @private\n* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error - input error\n* @returns {(string|void)} error type\n*\n* @example\n* var err = new TypeError();\n* var out = typeName( err );\n* // returns 'TypeError'\n*/\nfunction typeName( error ) {\n\tvar v;\n\tvar i;\n\n\t// Check for error objects from the same realm (same Node.js `vm` or same `Window` object)...\n\tfor ( i = 0; i < CTORS.length; i++ ) {\n\t\tif ( instanceOf( error, CTORS[ i ][ 0 ] ) ) {\n\t\t\treturn CTORS[ i ][ 1 ];\n\t\t}\n\t}\n\t// Walk the prototype tree until we find an object having a desired native class...\n\twhile ( error ) {\n\t\tv = ctorName( error );\n\t\tfor ( i = 0; i < CTORS.length; i++ ) {\n\t\t\tif ( v === CTORS[ i ][ 1 ] ) {\n\t\t\t\treturn CTORS[ i ][ 1 ];\n\t\t\t}\n\t\t}\n\t\terror = getPrototypeOf( error );\n\t}\n}\n\n\n// EXPORTS //\n\nexport default typeName;\n"],"names":["main","Object","defineProperty","isNumber","value","zeros","n","i","out","zeroPad","str","width","right","negative","pad","length","startsWithMinus","substr","lowercase","String","prototype","toLowerCase","uppercase","toUpperCase","formatInteger","token","base","specifier","arg","parseInt","isFinite","Error","toString","precision","padRight","sign","alternate","call","charAt","abs","Math","replace","RE_EXP_POS_DIGITS","RE_EXP_NEG_DIGITS","RE_ONLY_DIGITS","RE_DIGITS_BEFORE_EXP","RE_TRAILING_PERIOD_ZERO","RE_PERIOD_ZERO_EXP","RE_ZERO_BEFORE_EXP","formatDouble","f","digits","toExponential","toFixed","toPrecision","spaces","fromCharCode","isArray","Array","isnan","initialize","flags","mapping","formatInterpolate","tokens","hasPeriod","flag","num","pos","j","TypeError","padZeros","indexOf","arguments","maxWidth","parseFloat","substring","RE","parse","match","formatTokenize","content","prev","exec","slice","lastIndex","push","format","args","tokenize","interpolate","apply","objectProtoype","toStr","defineGetter","__defineGetter__","defineSetter","__defineSetter__","lookupGetter","__lookupGetter__","lookupSetter","__lookupSetter__","err","hasDefinePropertySupport","builtin","obj","prop","descriptor","hasValue","hasGet","hasSet","__proto__","get","set","defineProperty$1","setReadOnly","configurable","enumerable","writable","keys","bool","FLG","Symbol","hasToStringTagSupport","toStringTag","has","hasOwnProperty","hasOwnProp","property","Sym","toStrTag","nativeClass","hasToStringTag","v","isOwn","tag","isArguments","bool$8","detect","hasArgumentsClass","setNonEnumerableReadOnly","isString","valueOf","test","isPrimitive","isObject","main$f","Number","x","isNan","FLOAT64_PINF","POSITIVE_INFINITY","FLOAT64_NINF","NEGATIVE_INFINITY","floor","isInteger","PINF","NINF","isInt","isEnumerableProperty","propertyIsEnumerable","hasStringEnumBug","isEnum","main$e","UINT32_MAX","isArguments$1","MAX_LENGTH","isObjectLike","predicate","len","arrayfun","MAX_TYPED_ARRAY_LENGTH","arr","searchElement","fromIndex","isBoolean","Bool","Boolean","self","window","global","globalThis","root","codegen","Function","GlobalThis","Self","Win","Global","getGlobal","nodeList","document","childNodes","typedarray","Int8Array","reFunctionName","RE_FUNCTION_NAME","isBuffer","_isBuffer","constructor","constructorName","name","ctor","REGEXP","ctorName","type","isConstructorPrototype","w","hasAutomationEqualityBug","k","typeOf","win","EXCLUDED_KEYS","check","HAS_BUILTIN","skipConstructor","skipPrototype","isFcn","p","HAS_ENUM_PROTO_BUG","HAS_NON_ENUM_PROPS_BUG","HAS_WINDOW","error","NON_ENUMERABLE","main$c","CTORS","SyntaxError","ReferenceError","URIError","EvalError","RangeError","isNonNegativeInteger","Obj","isFunction","getProto","getPrototypeOf","proto","getProto$1","isError","reRegExp","getOwnPropertyNames","propertyNames","getOwnPropertyDescriptor","propertyDescriptor","desc","Buffer","require$$0","b","GlobalBuffer","from","hasNodeBufferSupport","Buffer$1","copyBuffer$1","buffer","hasInt8Array","GlobalInt8Array","INT8_MAX","hasInt8ArraySupport","Int8Array$1","hasUint8Array","Uint8Array","GlobalUint8Array","UINT8_MAX","hasUint8ArraySupport","Uint8Array$1","hasUint8ClampedArray","Uint8ClampedArray","GlobalUint8ClampedArray","hasUint8ClampedArraySupport","Uint8ClampedArray$1","hasInt16Array","Int16Array","GlobalInt16Array","INT16_MAX","hasInt16ArraySupport","Int16Array$1","hasUint16Array","Uint16Array","GlobalUint16Array","UINT16_MAX","hasUint16ArraySupport","Uint16Array$1","hasInt32Array","Int32Array","GlobalInt32Array","INT32_MAX","hasInt32ArraySupport","Int32Array$1","hasUint32Array","Uint32Array","GlobalUint32Array","hasUint32ArraySupport","Uint32Array$1","hasFloat32Array","Float32Array","GlobalFloat32Array","hasFloat32ArraySupport","Float32Array$1","hasFloat64Array","Float64Array","GlobalFloat64Array","NaN","hasFloat64ArraySupport","Float64Array$1","int8array","uint8array","uint8clampedarray","int16array","uint16array","int32array","uint32array","float32array","float64array","typedArrays","deepCopy","val","copy","cache","refs","level","parent","key","ref","copyBuffer","tmp","message","stack","code","errno","syscall","objectKeys","copyError","Date","RegExp","regexp","Set","Map","freeze","names","create","isExtensible","preventExtensions","isSealed","seal","isFrozen","cloneInstance","hasHasInstanceSymbolSupport","hasInstance","HasInstanceSymbol","hasSupport","instanceOf","ns","hasStack","ctors","typeName"],"mappings":";4QAsBA,IAAIA,EAA0C,mBAA1BC,OAAOC,eAAkCD,OAAOC,eAAiB,KCiCrF,IAAIA,EAAiBD,OAAOC,eCjB5B,SAASC,EAAUC,GAClB,MAA0B,iBAAVA,CACjB,CCAA,SAASC,EAAOC,GACf,IACIC,EADAC,EAAM,GAEV,IAAMD,EAAI,EAAGA,EAAID,EAAGC,IACnBC,GAAO,IAER,OAAOA,CACR,CAcA,SAASC,EAASC,EAAKC,EAAOC,GAC7B,IAAIC,GAAW,EACXC,EAAMH,EAAQD,EAAIK,OACtB,OAAKD,EAAM,IAnCZ,SAA0BJ,GACzB,MAAoB,MAAbA,EAAK,EACb,CAoCMM,CAAiBN,KACrBG,GAAW,EACXH,EAAMA,EAAIO,OAAQ,IAEnBP,EAAM,EACLA,EAAML,EAAOS,GACbT,EAAOS,GAAQJ,EACXG,IACJH,EAAM,IAAMA,IAVLA,CAaT,CCpDA,IAAIQ,EAAYC,OAAOC,UAAUC,YAC7BC,EAAYH,OAAOC,UAAUG,YAajC,SAASC,EAAeC,GACvB,IAAIC,EACAlB,EACAD,EAEJ,OAASkB,EAAME,WACf,IAAK,IAEJD,EAAO,EACP,MACD,IAAK,IAEJA,EAAO,EACP,MACD,IAAK,IACL,IAAK,IAEJA,EAAO,GACP,MAID,QAECA,EAAO,GAKR,GAFAlB,EAAMiB,EAAMG,IACZrB,EAAIsB,SAAUrB,EAAK,KACbsB,SAAUvB,GAAM,CACrB,IAAMJ,EAAUK,GACf,MAAM,IAAIuB,MAAO,2BAA6BvB,GAE/CD,EAAI,CACJ,CAkCD,OAjCKA,EAAI,IAA2B,MAApBkB,EAAME,WAA8B,KAATD,KAC1CnB,EAAI,WAAaA,EAAI,GAEjBA,EAAI,GACRC,IAASD,GAAIyB,SAAUN,GAClBD,EAAMQ,YACVzB,EAAMC,EAASD,EAAKiB,EAAMQ,UAAWR,EAAMS,WAE5C1B,EAAM,IAAMA,IAEZA,EAAMD,EAAEyB,SAAUN,GACZnB,GAAMkB,EAAMQ,UAENR,EAAMQ,YACjBzB,EAAMC,EAASD,EAAKiB,EAAMQ,UAAWR,EAAMS,WAF3C1B,EAAM,GAIFiB,EAAMU,OACV3B,EAAMiB,EAAMU,KAAO3B,IAGP,KAATkB,IACCD,EAAMW,YACV5B,EAAM,KAAOA,GAEdA,EAAQiB,EAAME,YAAcL,EAAUe,KAAMZ,EAAME,WACjDL,EAAUe,KAAM7B,GAChBU,EAAUmB,KAAM7B,IAEJ,IAATkB,GACCD,EAAMW,WAAiC,MAApB5B,EAAI8B,OAAQ,KACnC9B,EAAM,IAAMA,GAGPA,CACR,CCtFA,IAAI+B,EAAMC,KAAKD,IACXrB,EAAYC,OAAOC,UAAUC,YAC7BC,EAAYH,OAAOC,UAAUG,YAC7BkB,EAAUtB,OAAOC,UAAUqB,QAK3BC,EAAoB,WACpBC,EAAoB,UACpBC,EAAiB,UACjBC,EAAuB,UACvBC,EAA0B,OAC1BC,EAAqB,QACrBC,EAAqB,gBAczB,SAASC,EAAcC,EAAGzB,GACzB,IAAI0B,EACA3C,EAEJ,OAASiB,EAAME,WACf,IAAK,IACL,IAAK,IACJnB,EAAM0C,EAAEE,cAAe3B,EAAMQ,WAC7B,MACD,IAAK,IACL,IAAK,IACJzB,EAAM0C,EAAEG,QAAS5B,EAAMQ,WACvB,MACD,IAAK,IACL,IAAK,IACCM,EAAKW,GAAM,OACfC,EAAS1B,EAAMQ,WACD,IACbkB,GAAU,GAEX3C,EAAM0C,EAAEE,cAAeD,IAEvB3C,EAAM0C,EAAEI,YAAa7B,EAAMQ,WAEtBR,EAAMW,YACX5B,EAAMiC,EAAQJ,KAAM7B,EAAKwC,EAAoB,OAC7CxC,EAAMiC,EAAQJ,KAAM7B,EAAKuC,EAAoB,KAC7CvC,EAAMiC,EAAQJ,KAAM7B,EAAKsC,EAAyB,KAEnD,MACD,QACC,MAAM,IAAIf,MAAO,mCAAqCN,EAAME,WAc7D,OAZAnB,EAAMiC,EAAQJ,KAAM7B,EAAKkC,EAAmB,SAC5ClC,EAAMiC,EAAQJ,KAAM7B,EAAKmC,EAAmB,SACvClB,EAAMW,YACV5B,EAAMiC,EAAQJ,KAAM7B,EAAKoC,EAAgB,OACzCpC,EAAMiC,EAAQJ,KAAM7B,EAAKqC,EAAsB,SAE3CK,GAAK,GAAKzB,EAAMU,OACpB3B,EAAMiB,EAAMU,KAAO3B,GAEpBA,EAAQiB,EAAME,YAAcL,EAAUe,KAAMZ,EAAME,WACjDL,EAAUe,KAAM7B,GAChBU,EAAUmB,KAAM7B,EAElB,CCpEA,SAAS+C,EAAQjD,GAChB,IACIC,EADAC,EAAM,GAEV,IAAMD,EAAI,EAAGA,EAAID,EAAGC,IACnBC,GAAO,IAER,OAAOA,CACR,CCJA,IAAIgD,EAAerC,OAAOqC,aACtBC,EAAUC,MAAMD,QAoBpB,SAASE,EAAOvD,GACf,OAASA,GAAUA,CACpB,CASA,SAASwD,EAAYnC,GACpB,IAAIjB,EAAM,CAAA,EAMV,OALAA,EAAImB,UAAYF,EAAME,UACtBnB,EAAIyB,eAAkC,IAApBR,EAAMQ,UAAyB,EAAIR,EAAMQ,UAC3DzB,EAAIG,MAAQc,EAAMd,MAClBH,EAAIqD,MAAQpC,EAAMoC,OAAS,GAC3BrD,EAAIsD,QAAUrC,EAAMqC,QACbtD,CACR,CAmBA,SAASuD,EAAmBC,GAC3B,IAAIC,EACAJ,EACApC,EACAyC,EACAC,EACA3D,EACA4D,EACAlB,EACA3C,EACA8D,EDnDc3D,EAAKC,EAAOC,EAC1BE,ECoDJ,IAAM2C,EAASO,GACd,MAAM,IAAIM,UAAW,8DAAgEN,EAAS,MAI/F,IAFAxD,EAAM,GACN4D,EAAM,EACA7D,EAAI,EAAGA,EAAIyD,EAAOjD,OAAQR,IAE/B,GADAkB,EAAQuC,EAAQzD,GC1ES,iBD2EVkB,EACdjB,GAAOiB,MACD,CAGN,GAFAwC,OAAgC,IAApBxC,EAAMQ,YAClBR,EAAQmC,EAAYnC,IACRE,UACX,MAAM,IAAI2C,UAAW,oEAAqE/D,EAAG,cAAgBkB,EAAQ,MAMtH,IAJKA,EAAMqC,UACVM,EAAM3C,EAAMqC,SAEbD,EAAQpC,EAAMoC,MACRQ,EAAI,EAAGA,EAAIR,EAAM9C,OAAQsD,IAE9B,OADAH,EAAOL,EAAMvB,OAAQ+B,IAErB,IAAK,IACJ5C,EAAMU,KAAO,IACb,MACD,IAAK,IACJV,EAAMU,KAAO,IACb,MACD,IAAK,IACJV,EAAMS,UAAW,EACjBT,EAAM8C,UAAW,EACjB,MACD,IAAK,IACJ9C,EAAM8C,SAAWV,EAAMW,QAAS,KAAQ,EACxC,MACD,IAAK,IACJ/C,EAAMW,WAAY,EAClB,MACD,QACC,MAAM,IAAIL,MAAO,iBAAmBmC,GAGtC,GAAqB,MAAhBzC,EAAMd,MAAgB,CAG1B,GAFAc,EAAMd,MAAQkB,SAAU4C,UAAWL,GAAO,IAC1CA,GAAO,EACFT,EAAOlC,EAAMd,OACjB,MAAM,IAAI2D,UAAW,wCAA0CF,EAAM,6BAA+B3C,EAAMd,MAAQ,MAE9Gc,EAAMd,MAAQ,IAClBc,EAAMS,UAAW,EACjBT,EAAMd,OAASc,EAAMd,MAEtB,CACD,GAAKsD,GACqB,MAApBxC,EAAMQ,UAAoB,CAG9B,GAFAR,EAAMQ,UAAYJ,SAAU4C,UAAWL,GAAO,IAC9CA,GAAO,EACFT,EAAOlC,EAAMQ,WACjB,MAAM,IAAIqC,UAAW,4CAA8CF,EAAM,6BAA+B3C,EAAMQ,UAAY,MAEtHR,EAAMQ,UAAY,IACtBR,EAAMQ,UAAY,EAClBgC,GAAY,EAEb,CAGF,OADAxC,EAAMG,IAAM6C,UAAWL,GACd3C,EAAME,WACf,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IAECsC,IACJxC,EAAM8C,UAAW,GAElB9C,EAAMG,IAAMJ,EAAeC,GAC3B,MACD,IAAK,IAEJA,EAAMiD,SAAW,EAAgBjD,EAAMQ,WAAa,EACpDR,EAAMG,IAAMT,OAAQM,EAAMG,KAC1B,MACD,IAAK,IAEJ,IAAM+B,EAAOlC,EAAMG,KAAQ,CAE1B,IADAuC,EAAMtC,SAAUJ,EAAMG,IAAK,KAChB,GAAKuC,EAAM,IACrB,MAAM,IAAIpC,MAAO,kCAAoCN,EAAMG,KAE5DH,EAAMG,IAAQ+B,EAAOQ,GAAUhD,OAAQM,EAAMG,KAAQ4B,EAAcW,EACnE,CACD,MACD,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IAMJ,GAJMF,IACLxC,EAAMQ,UAAY,GAEnBiB,EAAIyB,WAAYlD,EAAMG,MAChBE,SAAUoB,GAAM,CACrB,IAAM/C,EAAUsB,EAAMG,KACrB,MAAM,IAAIG,MAAO,yCAA2CvB,GAG7D0C,EAAIzB,EAAMG,IACVH,EAAM8C,UAAW,CACjB,CACD9C,EAAMG,IAAMqB,EAAcC,EAAGzB,GAC7B,MACD,QACC,MAAM,IAAIM,MAAO,sBAAwBN,EAAME,WAG3CF,EAAMiD,UAAY,GAAKjD,EAAMG,IAAIb,OAASU,EAAMiD,WACpDjD,EAAMG,IAAMH,EAAMG,IAAIgD,UAAW,EAAGnD,EAAMiD,WAEtCjD,EAAM8C,SACV9C,EAAMG,IAAMnB,EAASgB,EAAMG,IAAKH,EAAMd,OAASc,EAAMQ,UAAWR,EAAMS,UAC3DT,EAAMd,QACjBc,EAAMG,KDpLSlB,ECoLOe,EAAMG,IDpLRjB,ECoLac,EAAMd,MDpLZC,ECoLmBa,EAAMS,SDnLnDpB,YAAMH,EAAQD,EAAIK,QACX,EACHL,EAERA,EAAM,EACLA,EAAM6C,EAAQzC,GACdyC,EAAQzC,GAAQJ,IC+KfF,GAAOiB,EAAMG,KAAO,GACpBwC,GAAO,CACP,CAEF,OAAO5D,CACR,CEvNA,IAAIqE,EAAK,6EAYT,SAASC,EAAOC,GACf,IAAItD,EAAQ,CACXqC,QAAaiB,EAAO,GAAQlD,SAAUkD,EAAO,GAAK,SAAO,EACzDlB,MAASkB,EAAO,GAChBpE,MAASoE,EAAO,GAChB9C,UAAa8C,EAAO,GACpBpD,UAAaoD,EAAO,IAKrB,MAHoB,MAAfA,EAAO,SAA8B,IAAfA,EAAO,KACjCtD,EAAMQ,UAAY,KAEZR,CACR,CAeA,SAASuD,EAAgBtE,GACxB,IAAIuE,EACAjB,EACAe,EACAG,EAKJ,IAHAlB,EAAS,GACTkB,EAAO,EACPH,EAAQF,EAAGM,KAAMzE,GACTqE,IACPE,EAAUvE,EAAI0E,MAAOF,EAAML,EAAGQ,UAAYN,EAAO,GAAIhE,SACxCA,QACZiD,EAAOsB,KAAML,GAGM,MAAfF,EAAO,GACXf,EAAOsB,KAAM,KAEbtB,EAAOsB,KAAMR,EAAOC,IAErBG,EAAOL,EAAGQ,UACVN,EAAQF,EAAGM,KAAMzE,GAMlB,OAJAuE,EAAUvE,EAAI0E,MAAOF,IACRnE,QACZiD,EAAOsB,KAAML,GAEPjB,CACR,CC3CA,SAASuB,EAAQ7E,GAChB,IAAI8E,EACAjF,EAEJ,GCf0B,iBDeVG,EACf,MAAM,IAAI4D,UAAWiB,EAAQ,kEAAmE7E,IAGjG,IADA8E,EAAO,CAAEC,EAAU/E,IACbH,EAAI,EAAGA,EAAIkE,UAAU1D,OAAQR,IAClCiF,EAAKF,KAAMb,UAAWlE,IAEvB,OAAOmF,EAAYC,MAAO,KAAMH,EACjC,CE7BA,ICkBItF,EDlBA0F,EAAiB3F,OAAOmB,UACxByE,EAAQD,EAAe5D,SACvB8D,EAAeF,EAAeG,iBAC9BC,EAAeJ,EAAeK,iBAC9BC,EAAeN,EAAeO,iBAC9BC,EAAeR,EAAeS,iBCiBjCnG,ECdD,WAEC,IAEC,OADAA,EAAgB,CAAE,EAAE,IAAK,CAAA,IAClB,CACP,CAAC,MAAQoG,GACT,OAAO,CACP,CACF,CDGKC,GACaC,EDqBlB,SAAyBC,EAAKC,EAAMC,GACnC,IAAIvF,EACAwF,EACAC,EACAC,EAEJ,GAAoB,iBAARL,GAA4B,OAARA,GAAsC,mBAAtBZ,EAAMxD,KAAMoE,GAC3D,MAAM,IAAInC,UAAWiB,EAAQ,mEAAoEkB,IAElG,GAA2B,iBAAfE,GAA0C,OAAfA,GAAoD,mBAA7Bd,EAAMxD,KAAMsE,GACzE,MAAM,IAAIrC,UAAWiB,EAAQ,wEAAyEoB,IAyBvG,IAvBAC,EAAa,UAAWD,KAGtBT,EAAa7D,KAAMoE,EAAKC,IACxBN,EAAa/D,KAAMoE,EAAKC,IAGxBtF,EAAYqF,EAAIM,UAChBN,EAAIM,UAAYnB,SAGTa,EAAKC,GACZD,EAAKC,GAASC,EAAWvG,MAGzBqG,EAAIM,UAAY3F,GAEhBqF,EAAKC,GAASC,EAAWvG,OAG3ByG,EAAW,QAASF,EACpBG,EAAW,QAASH,EAEfC,IAAcC,GAAUC,GAC5B,MAAM,IAAI/E,MAAO,wHASlB,OANK8E,GAAUf,GACdA,EAAazD,KAAMoE,EAAKC,EAAMC,EAAWK,KAErCF,GAAUd,GACdA,EAAa3D,KAAMoE,EAAKC,EAAMC,EAAWM,KAEnCR,CACR,EC3DA,IAAAS,EAAehH,EEZf,SAASiH,EAAaV,EAAKC,EAAMtG,GAChCF,EAAgBuG,EAAKC,EAAM,CAC1BU,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,GAEX,CCVA,SAASmH,EAAMnH,GACd,OAAOH,OAAOsH,KAAMtH,OAAQG,GAC7B,CCtBA,IAAIoH,OAAgC,IAAhBvH,OAAOsH,KCK3B,IAAIE,ECMgB,mBAAXC,QACoB,iBAApBA,OAAQ,ODOjB,SAASC,IACR,OAASF,GAAqC,iBAAvBC,OAAOE,WAC/B,CErBA,IAAI/B,EAAQ5F,OAAOmB,UAAUY,SCA7B,IAAI6F,EAAM5H,OAAOmB,UAAU0G,eA4B3B,SAASC,EAAY3H,EAAO4H,GAC3B,OACC5H,SAKMyH,EAAIxF,KAAMjC,EAAO4H,EACzB,CCpCA,IAAIC,EAA0B,mBAAXP,OAA0BA,YAAS,ECKlDQ,EAA+B,mBAAXR,EAA0BA,EAAOE,YAAc,GCiCvE,ICjCIJ,EDiCJW,EATKC,IEDL,SAAsBC,GACrB,IAAIC,EACAC,EACA/H,EAEJ,GAAK6H,QACJ,OAAOxC,EAAMxD,KAAMgG,GAEpBE,EAAMF,EAAGT,GACTU,EAAQP,EAAYM,EAAGT,GAGvB,IACCS,EAAGT,QAAgB,CACnB,CAAC,MAAQtB,GACT,OAAOT,EAAMxD,KAAMgG,EACnB,CAQD,OAPA7H,EAAMqF,EAAMxD,KAAMgG,GAEbC,EACJD,EAAGT,GAAgBW,SAEZF,EAAGT,GAEJpH,CACR,EC3BA,SAAsB6H,GACrB,OAAOxC,EAAMxD,KAAMgG,EACpB,ECJA,SAASG,EAAapI,GACrB,MAAkC,uBAAzB+H,EAAa/H,EACvB,CHCIqI,EAPJ,WACC,OAAOD,EAAa/D,UACrB,CAKOiE,GAKP,IAAAC,EAAenB,EITf,SAASoB,EAA0BnC,EAAKC,EAAMtG,GAC7CF,EAAgBuG,EAAKC,EAAM,CAC1BU,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,GAEX,CClBA,SAASyI,GAAUzI,GAClB,MAA0B,iBAAVA,CACjB,CCfA,IAAI0I,GAAU3H,OAAOC,UAAU0H,QCQ/B,IAAIrB,GAAMW,IAmBV,SAASS,GAAUzI,GAClB,MAAsB,iBAAVA,IACNA,aAAiBe,SAGjBsG,GCnBP,SAAerH,GACd,IAEC,OADA0I,GAAQzG,KAAMjC,IACP,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDaUyC,CAAM3I,GAEoB,oBAAzB+H,EAAa/H,IAGxB,CEjBA,SAASyI,GAAUzI,GAClB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCNA,SAASD,GAAUC,GAClB,MAA0B,iBAAVA,CACjB,CC0BA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,IC7CA,IAAAC,GAAeC,OCMXnH,GAAWmH,GAAO/H,UAAUY,SCEhC,IAAIyF,GAAMW,IAmBV,SAASjI,GAAUC,GAClB,MAAsB,iBAAVA,IACNA,aAAiB+I,KAGjB1B,GCpBP,SAAerH,GACd,IAEC,OADA4B,GAASK,KAAMjC,IACR,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDcUyC,CAAM3I,GAEoB,oBAAzB+H,EAAa/H,IAGxB,CEVA,SAASD,GAAUC,GAClB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CChBA,SAASuD,GAAOyF,GACf,OAASA,GAAMA,CAChB,CCQA,SAASzF,GAAOvD,GACf,OACCD,GAAUC,IACViJ,GAAOjJ,EAET,CCTA,SAASuD,GAAOvD,GACf,OACCD,GAAUC,IACViJ,GAAOjJ,EAAM0I,UAEf,CCGA,SAASnF,GAAOvD,GACf,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCoBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICDA9B,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICvBA,IAAIK,GAAeH,OAAOI,kBCItBC,GAAeL,GAAOM,kBCVtBC,GAAQlH,KAAKkH,MCHjB,SAASC,GAAWP,GACnB,OAAQM,GAAMN,KAAOA,CACtB,CCPA,SAASO,GAAWvJ,GACnB,OACCA,EAAQwJ,IACRxJ,EAAQyJ,IACRC,GAAO1J,EAET,CCAA,SAASuJ,GAAWvJ,GACnB,OACCD,GAAUC,IACV0J,GAAO1J,EAET,CCLA,SAASuJ,GAAWvJ,GACnB,OACCD,GAAUC,IACV0J,GAAO1J,EAAM0I,UAEf,CCGA,SAASa,GAAWvJ,GACnB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCmBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICxBA,IAAIc,GAAuB9J,OAAOmB,UAAU4I,qBCE5C,IAAAC,IAXSC,GAAO7H,KAAM,OAAQ,KCe9B,SAAS0H,GAAsB3J,EAAO4H,GACrC,IAAIR,EACJ,OACCpH,YAKDoH,EAAO0C,GAAO7H,KAAMjC,EAAO4H,KACbiC,IAAoBpB,GAAUzI,IAIzCuD,GAFFqE,GAAYA,IAGX2B,GAAW3B,IACXA,GAAY,GACZA,EAAW5H,EAAMW,OAGZyG,EACR,CCZA,IAAA2C,GATKzG,MAAMD,QACNC,MAAMD,QARX,SAAkBrD,GACjB,MAAkC,mBAAzB+H,EAAa/H,EACvB,ECOIgK,GAAa,WCGjB,IAAAC,GATK1B,EACU3I,ECAf,SAAsBI,GACrB,OACW,OAAVA,GACiB,iBAAVA,IACNqD,GAASrD,IACc,iBAAjBA,EAAMW,QACb4I,GAAWvJ,EAAMW,SACjBX,EAAMW,QAAU,GAChBX,EAAMW,QAAUuJ,IAChBvC,EAAY3H,EAAO,YAClB2J,GAAsB3J,EAAO,SAEhC,EClCIgF,GAAQ1B,MAAMtC,UAAUgE,MCU5B,SAASmF,GAAcnK,GACtB,OACW,OAAVA,GACiB,iBAAVA,CAET,CCkBA+G,EAAAnH,GAAA,oBCZA,SAAmBwK,GAClB,GAA0B,mBAAdA,EACX,MAAM,IAAIlG,UAAWiB,EAAQ,0DAA2DiF,IAEzF,OASA,SAAgBpK,GACf,IAAIqK,EACAlK,EACJ,IAAMkD,GAASrD,GACd,OAAO,EAGR,GAAa,KADbqK,EAAMrK,EAAMW,QAEX,OAAO,EAER,IAAMR,EAAI,EAAGA,EAAIkK,EAAKlK,IACrB,IAAiC,IAA5BiK,EAAWpK,EAAOG,IACtB,OAAO,EAGT,OAAO,CACP,CACF,CDvBAmK,CAAA1K,KE3BA,IAAIwH,GAAOuC,ICFX,WAEA,GDAuC,aEMnCvC,IAAQuC,GARF,CACT/H,SAAY,MAO0B,YCQnC2I,GAAyB,iBCyC7B,SAASnG,GAASoG,EAAKC,EAAeC,GACrC,IAAIL,EACAlK,EC5CkBH,ED6CtB,KC7CsBA,ED6CFwK,EC3CF,iBAAVxK,GACG,OAAVA,GACwB,iBAAjBA,EAAMW,QACb4I,GAAWvJ,EAAMW,SACjBX,EAAMW,QAAU,GAChBX,EAAMW,QAAUuJ,IDsCazB,GAAU+B,IACvC,MAAM,IAAItG,UAAWiB,EAAQ,8EAA+EqF,IAG7G,GAAa,KADbH,EAAMG,EAAI7J,QAET,OAAQ,EAET,GAA0B,IAArB0D,UAAU1D,OAAe,CAC7B,IAAM4I,GAAWmB,GAChB,MAAM,IAAIxG,UAAWiB,EAAQ,oEAAqEuF,IAEnG,GAAKA,GAAa,EAAI,CACrB,GAAKA,GAAaL,EACjB,OAAQ,EAETlK,EAAIuK,CACP,MACGvK,EAAIkK,EAAMK,GACD,IACRvK,EAAI,EAGR,MACEA,EAAI,EAGL,GAAKoD,GAAOkH,IACX,KAAQtK,EAAIkK,EAAKlK,IAChB,GAAKoD,GAAOiH,EAAIrK,IACf,OAAOA,OAIT,KAAQA,EAAIkK,EAAKlK,IAChB,GAAKqK,EAAKrK,KAAQsK,EACjB,OAAOtK,EAIV,OAAQ,CACT,CE3GA,IAAIsE,GAAK,ICoBT,SAASkG,GAAW3K,GACnB,MAA0B,kBAAVA,CACjB,CCGA,IAAI4K,GAAOC,QCxBPjJ,GAAWiJ,QAAQ7J,UAAUY,SCSjC,IAAIyF,GAAMW,IAqBV,SAAS2C,GAAW3K,GACnB,MAAsB,iBAAVA,IACNA,aAAiB6K,KAGjBxD,GCtBP,SAAerH,GACd,IAEC,OADA4B,GAASK,KAAMjC,IACR,CACP,CAAC,MAAQkG,GACT,OAAO,CACP,CACF,CDgBUyC,CAAM3I,GAEoB,qBAAzB+H,EAAa/H,IAGxB,CERA,SAAS2K,GAAW3K,GACnB,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCUA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,IC7CA,IAAIxC,GAAwB,iBAATyE,KAAsBA,KAAO,KCA5CzE,GAA0B,iBAAX0E,OAAwBA,OAAS,KCAhD1E,GAA0B,iBAAX2E,OAAwBA,OAAS,KCAhD3E,GAA8B,iBAAf4E,WAA4BA,WAAa,KCK5D,IAAIC,GCsBJ,SAAoBC,GACnB,GAAK9G,UAAU1D,OAAS,CACvB,IAAMgK,GAAWQ,GAChB,MAAM,IAAIjH,UAAWiB,EAAQ,yDAA0DgG,IAExF,GAAKA,EACJ,OC1BK,IAAIC,SAAU,eAAd,ED6BN,CAED,GAAKC,GACJ,OAAOA,GAGR,GAAKC,GACJ,OAAOA,GAGR,GAAKC,GACJ,OAAOA,GAGR,GAAKC,GACJ,OAAOA,GAGR,MAAM,IAAI7J,MAAO,qDAClB,CDlDW8J,GACPC,GAAWR,GAAKS,UAAYT,GAAKS,SAASC,WGR1CC,GAAaC,UC0BjB,SAASC,KACR,MAAO,yBACR,CCMA,IAAIC,GDPI,0BEER,SAASC,GAAUjM,GAClB,OACCmK,GAAcnK,KAGbA,EAAMkM,WAELlM,EAAMmM,aAGgC,mBAA/BnM,EAAMmM,YAAYF,UACzBjM,EAAMmM,YAAYF,SAAUjM,GAIhC,CCTA,SAASoM,GAAiBnE,GACzB,IAAItD,EACA0H,EACAC,EAEJ,IAAe,YADfD,EAAOtE,EAAaE,GAAIjD,MAAO,GAAI,KACC,UAATqH,IAAqBpE,EAAEkE,YAAc,CAE/D,GAA0B,iBAD1BG,EAAOrE,EAAEkE,aACQE,KAChB,OAAOC,EAAKD,KAGb,GADA1H,EAAQF,GAAGM,KAAMuH,EAAK1K,YAErB,OAAO+C,EAAO,EAEf,CACD,OAAKsH,GAAUhE,GACP,SAEDoE,CACR,CCnBAtF,EAAAnH,GAAA,SAAA2M,ICXA,IAAI3M,GCNY,mBAAP6E,IAGe,iBAAfoH,IAGa,mBAAbH,GCXT,SAAiBzD,GAChB,OAAOuE,GAAUvE,GAAIhH,aACtB,ECqBA,SAAiBgH,GAChB,IAAIwE,EAGJ,OAAW,OAANxE,EACG,OAKM,YAHdwE,SAAcxE,GAINuE,GAAUvE,GAAIhH,cAEfwL,CACR,ECzCA,SAASC,GAAwB1M,GAChC,OAASA,EAAMmM,aAAenM,EAAMmM,YAAYnL,YAAchB,CAC/D,6PCTI2M,GAAwB,oBAAX5B,YAA2B,EAASA,OCqDrD,IAAA6B,GA9BA,WACC,IAAIC,EACJ,GAAuB,cAAlBC,GAAQC,IACZ,OAAO,EAER,IAAMF,KAAKE,GACV,KAEmC,IAAjC3I,GAAS4I,GAAeH,IACxBlF,EAAYoF,GAAKF,IACJ,OAAbE,GAAKF,IACkB,WAAvBC,GAAQC,GAAKF,KAEbH,GAAwBK,GAAKF,GAE9B,CAAC,MAAQ3G,GACT,OAAO,CACP,CAEF,OAAO,CACR,CAKO+G,GChDH7F,GAA2B,oBAAX2D,WC0BhB5D,oHAKFA,GAJG+F,EChBL,WACC,OAA8C,KAArC/F,EAAM9C,YAAe,IAAK1D,MACpC,CAgBQgI,CAAM,EAAG,GxCFjB,SAAe3I,GACd,OAAKoI,GAAapI,GACVoG,EAASpB,GAAM/C,KAAMjC,IAEtBoG,EAASpG,EACjB,EuCDSoG,EEJT,SAAepG,GACd,IAAImN,EACAC,EACAC,EACAjN,EACAyM,EACAS,EACAnN,EAGJ,GADAC,EAAM,GACDgI,GAAapI,GAAU,CAE3B,IAAMG,EAAI,EAAGA,EAAIH,EAAMW,OAAQR,IAC9BC,EAAI8E,KAAM/E,EAAEyB,YAGb,OAAOxB,CACP,CACD,GAAsB,iBAAVJ,GAEX,GAAKA,EAAMW,OAAS,IAAMgH,EAAY3H,EAAO,KAC5C,IAAMG,EAAI,EAAGA,EAAIH,EAAMW,OAAQR,IAC9BC,EAAI8E,KAAM/E,EAAEyB,gBAGR,CAEN,IAAe,IADfyL,EAA2B,mBAAVrN,KACQmK,GAAcnK,GACtC,OAAOI,EAERgN,EAAkBG,IAAsBF,CACxC,CACD,IAAMR,KAAK7M,EACFoN,GAAuB,cAANP,IAAuBlF,EAAY3H,EAAO6M,IAClEzM,EAAI8E,KAAMnE,OAAQ8L,IAGpB,GAAKW,GAEJ,IADAL,ECnDF,SAAkBnN,GACjB,IAAoB,IAAfyN,KAAyBb,GAC7B,OAAOF,GAAwB1M,GAEhC,IACC,OAAO0M,GAAwB1M,EAC/B,CAAC,MAAQ0N,GACT,OAAO,CACP,CACF,CD0CoBhB,CAAwB1M,GACpCG,EAAI,EAAGA,EAAIwN,GAAehN,OAAQR,IACvCmN,EAAIK,GAAgBxN,GACZgN,GAAyB,gBAANG,IAAyB3F,EAAY3H,EAAOsN,IACtElN,EAAI8E,KAAMnE,OAAQuM,IAIrB,OAAOlN,CACR,EFlCA,IAAAwN,GAAezG,GIxCX0G,GAAQ,CACXlM,MAASA,MACTuC,UAAaA,UACb4J,YAAeA,YACfC,eAAkBA,eAClBC,SAAYA,SACZC,UAAaA,UACbC,WAAcA,YCYf,SAASC,GAAsBnO,GAC9B,OACCuJ,GAAWvJ,IACXA,GAAS,CAEX,CCLA,SAASmO,GAAsBnO,GAC9B,OACCuJ,GAAWvJ,IACXA,EAAM0I,WAAa,CAErB,CCQA,SAASyF,GAAsBnO,GAC9B,OAAS4I,GAAa5I,IAAW6I,GAAU7I,EAC5C,CCgBA+G,EAAAnH,GAAA,cAAAgJ,IACA7B,EAAAnH,GAAA,WAAAiJ,ICrBA,IAAIuF,GAAMvO,OCXV,SAASwO,GAAYrO,GAEpB,MAA6B,aAApB8M,GAAQ9M,EAClB,CCtBA,ICOIsO,GDPAA,GAAWzO,OAAO0O,eCSrBD,GADID,GAAYxO,OAAO0O,gBACZnI,GCKZ,SAAyBC,GACxB,IAAImI,ECVL,SAAmBnI,GAElB,OAAOA,EAAIM,SACZ,CDOa2H,CAAUjI,GACtB,OAAKmI,GAAmB,OAAVA,EACNA,EAEgC,sBAAnCzG,EAAa1B,EAAI8F,aAEd9F,EAAI8F,YAAYnL,UAEnBqF,aAAexG,GACZA,GAAOmB,UAGR,IACR,EDXA,IAAAyN,GAAeH,GGDf,SAASC,GAAgBvO,GACxB,OACCA,QAGO,MAGRA,EAAQH,GAAQG,GAETsO,GAAUtO,GAClB,CCPA,SAAS0O,GAAS1O,GACjB,GAAsB,iBAAVA,GAAgC,OAAVA,EACjC,OAAO,EAGR,GAAKA,aAAiB2B,MACrB,OAAO,EAGR,KAAQ3B,GAAQ,CACf,GAA8B,mBAAzB+H,EAAa/H,GACjB,OAAO,EAERA,EAAQuO,GAAgBvO,EACxB,CACD,OAAO,CACR,CCtBA,SAAS2O,KACR,MAAO,kCACR,CCgBA5H,EAAAnH,GAAA,SDjBQ,oCEfR,IAAIwH,QAA+C,IAA/BvH,OAAO+O,oBCKvBC,GAAgBhP,GAAO+O,oBC2B3B,IAAAC,GATK3B,GDOL,SAA8BlN,GAC7B,OAAO6O,GAAehP,GAAQG,GAC/B,EELA,SAA8BA,GAC7B,OAAOmH,GAAMtH,GAAQG,GACtB,EC7BIoH,QAAoD,IAApCvH,OAAOiP,yBCAvBC,GAAqBlP,OAAOiP,yBCkChC,IAAAC,GATK7B,GDEL,SAAmClN,EAAO4H,GACzC,IAAIoH,EACJ,OAAKhP,cAIa,KADlBgP,EAAOD,GAAoB/O,EAAO4H,IAF1B,KAG4BoH,CACrC,EENA,SAAmChP,EAAO4H,GACzC,OAAKD,EAAY3H,EAAO4H,GAChB,CACNZ,cAAgB,EAChBC,YAAc,EACdC,UAAY,EACZlH,MAASA,EAAO4H,IAGX,IACR,ECtCIhI,GAA2B,mBAAXqP,OAA0BA,OAAS,KCAvD,ICmBI3C,GDnBAA,GAAO4C,EAAoBD,OCuB9B3C,GCRD,WACC,IAAIlF,EACA+H,EAEJ,GAA6B,mBAAjBC,GACX,OAAO,EAGR,IAMChI,EACC6E,GALAkD,EADiC,mBAAtBC,GAAaC,KACpBD,GAAaC,KAAM,CAAE,EAAG,EAAG,EAAG,IAE9B,IAAID,GAAc,CAAE,EAAG,EAAG,EAAG,MAItB,IAAXD,EAAG,IACQ,IAAXA,EAAG,IACQ,IAAXA,EAAG,IACQ,IAAXA,EAAG,EAEJ,CAAC,MAAQjJ,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDpBKkI,GACG1P,GEdR,WACC,MAAM,IAAI+B,MAAO,kBAClB,EFoBA,IAAA4N,GAAejD,GGIf,IAAAkD,GC3BWnB,GAAYY,GAAOI,MCiB9B,SAAqBI,GACpB,IAAMxD,GAAUwD,GACf,MAAM,IAAIvL,UAAWiB,EAAQ,wDAAyDsK,IAEvF,OAAOR,GAAOI,KAAMI,EACrB,ECLA,SAAqBA,GACpB,IAAMxD,GAAUwD,GACf,MAAM,IAAIvL,UAAWiB,EAAQ,wDAAyDsK,IAEvF,OAAO,IAAIR,GAAQQ,EACpB,ECvBIC,GAAsC,mBAAd5D,UC4B5B,ICjCIlM,GAA8B,mBAAdkM,UAA6BA,UAAY,KCA7D,ICmBIQ,GDnBAA,GAA8B,mBAAdR,UAA6BA,eAAY,ECuB5DQ,GCND,WACC,IAAIlF,EACAoD,ELOiBxK,EKLrB,GAAgC,mBAApB2P,GACX,OAAO,EAGR,IACCnF,EAAM,IAAImF,GAAiB,CAAE,EAAG,MAAO,KAAMC,MLAzB5P,EKENwK,EADdpD,GLCEsI,IAAgB1P,aAAiB8L,WACV,uBAAzB/D,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEO,MDDZA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBKyI,GACGzJ,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAAmO,GAAexD,GIxBXyD,GAAwC,mBAAfC,WC4B7B,ICjCIpQ,GAA+B,mBAAfoQ,WAA8BA,WAAa,KCA/D,ICmBI1D,GDnBAA,GAA+B,mBAAf0D,WAA8BA,gBAAa,ECuB9D1D,GCPD,WACC,IAAIlF,EACAoD,ELQkBxK,EKNtB,GAAiC,mBAArBiQ,GACX,OAAO,EAGR,IAECzF,EAAM,IAAIyF,GADVzF,EAAM,CAAE,EAAG,MAAO,KAAM0F,IAAaA,MLChBlQ,EKENwK,EADfpD,GLCE2I,IAAiB/P,aAAiBgQ,YACX,wBAAzBjI,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQ0F,MAAb1F,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBK+I,GACG/J,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAyO,GAAe9D,GGxBX+D,GAAsD,mBAAtBC,kBCLpC,IAAI1Q,GAAsC,mBAAtB0Q,kBAAqCA,kBAAoB,KCA7E,ICmBIhE,GDnBAA,GAAsC,mBAAtBgE,kBAAqCA,uBAAoB,ECuB5EhE,GCRD,WACC,IAAIlF,EACAoD,EJSyBxK,EIP7B,GAAwC,mBAA5BuQ,GACX,OAAO,EAGR,IACC/F,EAAM,IAAI+F,GAAyB,EAAG,EAAG,EAAG,EAAG,KAAM,KAAM,IAAK,MJEpCvQ,EIANwK,EADtBpD,GJGEiJ,IAAwBrQ,aAAiBsQ,mBAClB,+BAAzBvI,EAAa/H,KIFC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,IACQ,MAAbA,EAAK,IACQ,MAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBKoJ,GACGpK,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAA8O,GAAenE,GGxBXoE,GAAwC,mBAAfC,WC4B7B,ICjCI/Q,GAA+B,mBAAf+Q,WAA8BA,WAAa,KCA/D,ICmBIrE,GDnBAA,GAA+B,mBAAfqE,WAA8BA,gBAAa,ECuB9DrE,GCND,WACC,IAAIlF,EACAoD,ELOkBxK,EKLtB,GAAiC,mBAArB4Q,GACX,OAAO,EAGR,IACCpG,EAAM,IAAIoG,GAAkB,CAAE,EAAG,MAAO,KAAMC,QLAzB7Q,EKENwK,EADfpD,GLCEsJ,IAAiB1Q,aAAiB2Q,YACX,wBAAzB5I,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,QDDbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBK0J,GACG1K,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAAoP,GAAezE,GIxBX0E,GAA0C,mBAAhBC,YC4B9B,ICjCIrR,GAAgC,mBAAhBqR,YAA+BA,YAAc,KCAjE,ICmBI3E,GDnBAA,GAAgC,mBAAhB2E,YAA+BA,iBAAc,ECuBhE3E,GCPD,WACC,IAAIlF,EACAoD,ELQmBxK,EKNvB,GAAkC,mBAAtBkR,GACX,OAAO,EAGR,IAEC1G,EAAM,IAAI0G,GADV1G,EAAM,CAAE,EAAG,MAAO,KAAM2G,MAAcA,QLChBnR,EKENwK,EADhBpD,GLCE4J,IAAkBhR,aAAiBiR,aACZ,yBAAzBlJ,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQ2G,QAAb3G,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBKgK,GACGhL,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAA0P,GAAe/E,GGxBXgF,GAAwC,mBAAfC,WC4B7B,ICjCI3R,GAA+B,mBAAf2R,WAA8BA,WAAa,KCA/D,ICmBIjF,GDnBAA,GAA+B,mBAAfiF,WAA8BA,gBAAa,ECuB9DjF,GCND,WACC,IAAIlF,EACAoD,ELOkBxK,EKLtB,GAAiC,mBAArBwR,GACX,OAAO,EAGR,IACChH,EAAM,IAAIgH,GAAkB,CAAE,EAAG,MAAO,KAAMC,aLAzBzR,EKENwK,EADfpD,GLCEkK,IAAiBtR,aAAiBuR,YACX,wBAAzBxJ,EAAa/H,KKAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,KACS,IAAdA,EAAK,KCEQ,aDDbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDlBKsK,GACGtL,GGdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EHoBA,IAAAgQ,GAAerF,GIxBXsF,GAA0C,mBAAhBC,YCL9B,IAAIjS,GAAgC,mBAAhBiS,YAA+BA,YAAc,KCAjE,ICmBIvF,GDnBAA,GAAgC,mBAAhBuF,YAA+BA,iBAAc,ECuBhEvF,GCPD,WACC,IAAIlF,EACAoD,EJQmBxK,EINvB,GAAkC,mBAAtB8R,GACX,OAAO,EAGR,IAECtH,EAAM,IAAIsH,GADVtH,EAAM,CAAE,EAAG,MAAO,KAAMR,WAAcA,aJChBhK,EIENwK,EADhBpD,GJCEwK,IAAkB5R,aAAiB6R,aACZ,yBAAzB9J,EAAa/H,KIAC,IAAbwK,EAAK,IACQ,IAAbA,EAAK,IACQR,aAAbQ,EAAK,IACQ,IAAbA,EAAK,IACQ,IAAbA,EAAK,EAEN,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDnBK2K,GACG3L,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAqQ,GAAe1F,GGxBX2F,GAA4C,mBAAjBC,aCL/B,IAAItS,GAAiC,mBAAjBsS,aAAgCA,aAAe,KCAnE,ICmBI5F,GDnBAA,GAAiC,mBAAjB4F,aAAgCA,kBAAe,ECuBlE5F,GCPD,WACC,IAAIlF,EACAoD,EJQoBxK,EINxB,GAAmC,mBAAvBmS,GACX,OAAO,EAGR,IACC3H,EAAM,IAAI2H,GAAoB,CAAE,EAAK,MAAO,KAAM,OJC3BnS,EICNwK,EADjBpD,GJEE6K,IAAmBjS,aAAiBkS,cACb,0BAAzBnK,EAAa/H,KIDC,IAAbwK,EAAK,IACQ,oBAAbA,EAAK,KACS,oBAAdA,EAAK,IACLA,EAAK,KAAQhB,EAEd,CAAC,MAAQtD,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDjBKgL,GACGhM,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAA0Q,GAAe/F,GGxBXgG,GAA4C,mBAAjBC,aCL/B,IAAI3S,GAAiC,mBAAjB2S,aAAgCA,aAAe,KCAnE,ICmBIjG,GDnBAA,GAAiC,mBAAjBiG,aAAgCA,kBAAe,ECuBlEjG,GCRD,WACC,IAAIlF,EACAoD,EJSoBxK,EIPxB,GAAmC,mBAAvBwS,GACX,OAAO,EAGR,IACChI,EAAM,IAAIgI,GAAoB,CAAE,EAAK,MAAO,KAAMC,MJE3BzS,EIANwK,EADjBpD,GJGEkL,IAAmBtS,aAAiBuS,cACb,0BAAzBxK,EAAa/H,KIFC,IAAbwK,EAAK,IACQ,OAAbA,EAAK,KACS,OAAdA,EAAK,IACLA,EAAK,IAAQA,EAAK,EAEnB,CAAC,MAAQtE,GACTkB,GAAO,CACP,CACD,OAAOA,CACR,CDhBKsL,GACGtM,GEdR,WACC,MAAM,IAAIzE,MAAO,kBAClB,EFoBA,IAAAgR,GAAerG,GGJf,SAASsG,GAAWpI,GACnB,OAAO,IAAIsB,GAAWtB,EACvB,CASA,SAASqI,GAAYrI,GACpB,OAAO,IAAIwF,GAAYxF,EACxB,CASA,SAASsI,GAAmBtI,GAC3B,OAAO,IAAI8F,GAAmB9F,EAC/B,CASA,SAASuI,GAAYvI,GACpB,OAAO,IAAImG,GAAYnG,EACxB,CASA,SAASwI,GAAaxI,GACrB,OAAO,IAAIyG,GAAazG,EACzB,CASA,SAASyI,GAAYzI,GACpB,OAAO,IAAI+G,GAAY/G,EACxB,CASA,SAAS0I,GAAa1I,GACrB,OAAO,IAAIqH,GAAarH,EACzB,CASA,SAAS2I,GAAc3I,GACtB,OAAO,IAAI0H,GAAc1H,EAC1B,CASA,SAAS4I,GAAc5I,GACtB,OAAO,IAAI+H,GAAc/H,EAC1B,CA+BA,IAAA6I,GAtBW,CACTT,UAAaA,GACbC,WAAcA,GACdC,kBAAqBA,GACrBC,WAAcA,GACdC,YAAeA,GACfC,WAAcA,GACdC,YAAeA,GACfC,aAAgBA,GAChBC,aAAgBA,ICOlB,SAASE,GAAUC,EAAKC,EAAMC,EAAOC,EAAMC,GAC1C,IAAIC,EACAzM,EACAkF,EACA2C,EACA1C,EACAuH,EACAC,EACA9K,EACA7I,EACA8D,EAKJ,GAHA0P,GAAS,EAIO,iBAARJ,GACC,OAARA,EAEA,OAAOA,EAER,GAAKtH,GAAUsH,GACd,OAAOQ,GAAYR,GAEpB,GAAK7E,GAAS6E,GACb,OAnFF,SAAoB7F,GACnB,IAEIvG,EACA6H,EACAgF,EACAH,EACA3N,EACA/F,EAPAsT,EAAQ,GACRC,EAAO,GA8BX,IArBAxN,EAAM,IAAIwH,EAAMvB,YAAauB,EAAMuG,SAEnCR,EAAMvO,KAAMwI,GACZgG,EAAKxO,KAAMgB,GAGNwH,EAAMwG,QACVhO,EAAIgO,MAAQxG,EAAMwG,OAGdxG,EAAMyG,OACVjO,EAAIiO,KAAOzG,EAAMyG,MAEbzG,EAAM0G,QACVlO,EAAIkO,MAAQ1G,EAAM0G,OAEd1G,EAAM2G,UACVnO,EAAImO,QAAU3G,EAAM2G,SAGrBlN,EAAOmN,GAAY5G,GACbvN,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAC7B0T,EAAM1M,EAAMhH,GAEPwH,EADLqH,EAAOD,GAAoBrB,EAAOmG,GACX,WACtBG,EAAQ3Q,GAASqK,EAAOmG,IAAY,GAAK,GACzC7E,EAAKhP,MAAQsT,GAAU5F,EAAOmG,GAAOG,EAAKP,EAAOC,GAAO,IAEzD5T,EAAgBoG,EAAK2N,EAAK7E,GAE3B,OAAO9I,CACR,CAyCSqO,CAAWhB,GAKnB,GAAc,UAFdlH,EAAOS,GAAQyG,IAGd,OAAO,IAAIiB,MAAOjB,GAEnB,GAAc,WAATlH,EACJ,OC5JF,SAAuB/L,GACtB,IAAMmI,GAAUnI,GACf,MAAM,IAAI4D,UAAWiB,EAAQ,2EAA4E7E,IAM1G,OAHAA,EnFRO,mCmFQUyE,KAAMzE,IAGN,IAAImU,OAAQnU,EAAI,GAAIA,EAAI,IAAO,IACjD,CDmJSoU,CAAQnB,EAAI3R,YAEpB,GAAc,QAATyK,EACJ,OAAO,IAAIsI,IAAKpB,GAEjB,GAAc,QAATlH,EACJ,OAAO,IAAIuI,IAAKrB,GAEjB,GACU,WAATlH,GACS,YAATA,GACS,WAATA,EAGA,OAAOkH,EAAI7K,UAGZ,GADA4D,EAAO+G,GAAahH,GAEnB,OAAOC,EAAMiH,GAGd,GACU,UAATlH,GACS,WAATA,EAGA,MAA8B,mBAAlBxM,OAAOgV,OA1KrB,SAAwBtB,GACvB,IAAIE,EACAqB,EACAzI,EACAqH,EACA1E,EACAgF,EACAF,EACA3T,EAUJ,IARAsT,EAAQ,GACRC,EAAO,GAEPI,EAAMjU,OAAOkV,OAAQxG,GAAgBgF,IACrCE,EAAMvO,KAAMqO,GACZG,EAAKxO,KAAM4O,GAEXgB,EAAQjG,GAAe0E,GACjBpT,EAAI,EAAGA,EAAI2U,EAAMnU,OAAQR,IAC9BkM,EAAOyI,EAAO3U,GAETwH,EADLqH,EAAOD,GAAoBwE,EAAKlH,GACT,WACtB2H,EAAQ3Q,GAASkQ,EAAIlH,IAAY,GAAK,GACtC2C,EAAKhP,MAAQsT,GAAUC,EAAIlH,GAAO2H,EAAKP,EAAOC,GAAO,IAEtD5T,EAAgBgU,EAAKzH,EAAM2C,GAW5B,OATMnP,OAAOmV,aAAczB,IAC1B1T,OAAOoV,kBAAmBnB,GAEtBjU,OAAOqV,SAAU3B,IACrB1T,OAAOsV,KAAMrB,GAETjU,OAAOuV,SAAU7B,IACrB1T,OAAOgV,OAAQf,GAETA,CACR,CAsIUuB,CAAe9B,GAEhB,GAIR,GADApM,EAAOmN,GAAYf,GACdI,EAAQ,EAEZ,IADAC,EAASvH,EACHpI,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAE7B+E,EAAIuK,EADJM,EAAM1M,EAAMlD,IAIZoI,EAAOS,GAAQ9D,GAED,iBAANA,GACD,OAANA,GAEU,UAATqD,GACS,WAATA,GAEDJ,GAAUjD,GAEM,WAAX4K,GAECjM,EADLqH,EAAOD,GAAoBwE,EAAKM,GACT,WACtB7E,EAAKhP,MAAQsT,GAAUtK,IAExBlJ,EAAgB0T,EAAMK,EAAK7E,IAE3BwE,EAAMK,GAAQP,GAAUtK,IAMd,KADZ7I,EAAIiE,GAASqP,EAAOzK,KAMpB8K,EAAQzQ,GAAS2F,GAAQ,IAAI1F,MAAO0F,EAAErI,QAAW,GACjD8S,EAAMvO,KAAM8D,GACZ0K,EAAKxO,KAAM4O,GACK,UAAXF,EACJJ,EAAMK,GAAQP,GAAUtK,EAAG8K,EAAKL,EAAOC,EAAMC,IAGxChM,EADLqH,EAAOD,GAAoBwE,EAAKM,GACT,WACtB7E,EAAKhP,MAAQsT,GAAUtK,EAAG8K,EAAKL,EAAOC,EAAMC,IAE7C7T,EAAgB0T,EAAMK,EAAK7E,KAd3BwE,EAAMK,GAAQH,EAAMvT,QAiBhB,GAAc,UAATkM,EACX,IAAMpI,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAE7BuP,EADAK,EAAM1M,EAAMlD,IACEsP,EAAKM,QAGpB,IAAM5P,EAAI,EAAGA,EAAIkD,EAAKxG,OAAQsD,IAC7B4P,EAAM1M,EAAMlD,GACZ+K,EAAOD,GAAoBwE,EAAKM,GAChC/T,EAAgB0T,EAAMK,EAAK7E,GAY7B,OATMnP,OAAOmV,aAAczB,IAC1B1T,OAAOoV,kBAAmBzB,GAEtB3T,OAAOqV,SAAU3B,IACrB1T,OAAOsV,KAAM3B,GAET3T,OAAOuV,SAAU7B,IACrB1T,OAAOgV,OAAQrB,GAETA,CACR,CElPA,SAASA,GAAMxT,EAAO2T,GACrB,IAAIvT,EACJ,GAAKiE,UAAU1D,OAAS,EAAI,CAC3B,IAAMwN,GAAsBwF,GAC3B,MAAM,IAAIzP,UAAWiB,EAAQ,gFAAiFwO,IAE/G,GAAe,IAAVA,EACJ,OAAO3T,CAEV,MACE2T,EAAQnK,GAGT,OAAO8J,GAAUtT,EADjBI,EAAQiD,GAASrD,GAAY,IAAIsD,MAAOtD,EAAMW,QAAW,GAC5B,CAACX,GAAQ,CAACI,GAAMuT,EAC9C,CClCA,SAAS2B,KACR,MACmB,mBAAXhO,GACoB,iBAApBA,EAAQ,QACfK,EAAYL,EAAQ,gBACU,iBAAvBA,EAAOiO,WAEhB,CCIA,IAAIC,GAAsBF,KAAkChO,OAAOiO,YAAc,KCnB7EE,GAAaH,KAiCjB,SAASI,GAAY1V,EAAOmM,GAE3B,GACwB,mBAAhBA,KAENsJ,IACuB,iBAAhBtJ,GACqC,mBAArCA,EAAaqJ,KAGrB,MAAM,IAAItR,UAAWiB,EAAQ,mEAAoEgH,IAElG,OAASnM,aAAiBmM,CAC3B,CCrDA,IAAI0B,GAAQ,CACX,CAAE3J,UAAW,aACb,CAAE4J,YAAa,eACf,CAAEC,eAAgB,kBAClB,CAAEG,WAAY,cACd,CAAEF,SAAU,YACZ,CAAEC,UAAW,aACb,CAAEtM,MAAO,UCWN,IAAAgU,GAAK,CAAG,SAUZ5O,EAAa4O,GAAI,eCPjB,SAAsB9B,EAAK7T,GAC1B,IAAI4V,EACAtJ,EACAnF,EACAjB,EACA2G,EACA1M,EACJ,GACCH,GACAA,EAAMyM,MACNhE,GAAUzI,EAAMiU,WAEhB3H,EAAOuJ,GAAO7V,EAAMyM,OACR,CAGX,IAFAvG,EAAM,IAAIoG,EAAMtM,EAAMiU,SACtB9M,EAAOmN,GAAYtU,GACbG,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAE7B,GACO,UAFP0M,EAAI1F,EAAMhH,KAGH,YAAN0M,GACM,SAANA,EAHD,CAOA,GAAW,UAANA,EAAgB,CACpB,IAAMpE,GAAUzI,EAAM6M,IACrB,SAED+I,GAAW,CACX,CACD1P,EAAK2G,GAAM7M,EAAO6M,EAPjB,CAYF,OAHM+I,GAAYnN,GAAUvC,EAAIgO,SAC/BhO,EAAIgO,MAAQ,IAENhO,CACP,CAEF,OAAOlG,CACR,IDvBA+G,EAAa4O,GAAI,cEjBjB,SAAqBzP,GACpB,IAAIiB,EACA/G,EACAD,EACJ,IAAMuO,GAASxI,GACd,MAAM,IAAIhC,UAAWiB,EAAQ,+DAAgEe,IA2B9F,KAzBA9F,EAAM,CAAA,GAGFqM,KCXL,SAAmBiB,GAClB,IAAIzF,EACA9H,EAGJ,IAAMA,EAAI,EAAGA,EAAI0N,GAAMlN,OAAQR,IAC9B,GAAKuV,GAAYhI,EAAOG,GAAO1N,GAAK,IACnC,OAAO0N,GAAO1N,GAAK,GAIrB,KAAQuN,GAAQ,CAEf,IADAzF,EAAIuE,GAAUkB,GACRvN,EAAI,EAAGA,EAAI0N,GAAMlN,OAAQR,IAC9B,GAAK8H,IAAM4F,GAAO1N,GAAK,GACtB,OAAO0N,GAAO1N,GAAK,GAGrBuN,EAAQa,GAAgBb,EACxB,CACF,CDTYoI,CAAU5P,GACrB9F,EAAI6T,QAAU/N,EAAI+N,QAGb/N,EAAImG,OACRjM,EAAIiM,KAAOnG,EAAImG,MAEXnG,EAAIgO,QACR9T,EAAI8T,MAAQhO,EAAIgO,OAGZhO,EAAIiO,OACR/T,EAAI+T,KAAOjO,EAAIiO,MAEXjO,EAAIkO,QACRhU,EAAIgU,MAAQlO,EAAIkO,OAEZlO,EAAImO,UACRjU,EAAIiU,QAAUnO,EAAImO,SAGnBlN,EAAOmN,GAAYpO,GACb/F,EAAI,EAAGA,EAAIgH,EAAKxG,OAAQR,IAC7BC,EAAK+G,EAAKhH,IAAOqT,GAAMtN,EAAKiB,EAAKhH,KAElC,OAAOC,CACR","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207]} \ No newline at end of file diff --git a/lib/index.js b/lib/index.js deleted file mode 100644 index a29360d..0000000 --- a/lib/index.js +++ /dev/null @@ -1,64 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/* -* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name. -*/ - -/* -* The following modules are intentionally not exported: tools -*/ - -// MODULES // - -var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); - - -// MAIN // - -/** -* Top-level namespace. -* -* @namespace ns -*/ -var ns = {}; - -/** -* @name reviveError -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/reviver} -*/ -setReadOnly( ns, 'reviveError', require( './../reviver' ) ); - -/** -* @name error2json -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/to-json} -*/ -setReadOnly( ns, 'error2json', require( './../to-json' ) ); - - -// EXPORTS // - -module.exports = ns; diff --git a/package.json b/package.json index 098797a..9fe765d 100644 --- a/package.json +++ b/package.json @@ -3,30 +3,7 @@ "version": "0.4.1", "description": "Errors.", "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "lib/index.js", - "directories": { - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": { - "test": "make test", - "test-cov": "make test-cov", - "examples": "make examples", - "benchmark": "make benchmark" - }, + "main": "./index.js", "homepage": "https://stdlib.io", "repository": { "type": "git", @@ -35,36 +12,6 @@ "bugs": { "url": "https://github.com/stdlib-js/stdlib/issues" }, - "dependencies": { - "@stdlib/assert": "github:stdlib-js/assert#main", - "@stdlib/string": "github:stdlib-js/string#main", - "@stdlib/utils": "github:stdlib-js/utils#main" - }, - "devDependencies": { - "@stdlib/bench": "github:stdlib-js/bench#main", - "@stdlib/fs": "github:stdlib-js/fs#main", - "@stdlib/object": "github:stdlib-js/object#main", - "@stdlib/process": "github:stdlib-js/process#main", - "proxyquire": "^2.0.0", - "tape": "git+https://github.com/kgryte/tape.git#fix/globby", - "istanbul": "^0.4.1", - "tap-min": "git+https://github.com/Planeshifter/tap-min.git" - }, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], "keywords": [ "stdlib", "stdtypes", diff --git a/reviver/README.md b/reviver/README.md deleted file mode 100644 index 5140195..0000000 --- a/reviver/README.md +++ /dev/null @@ -1,173 +0,0 @@ - - -# reviveError - -> Revive a JSON-serialized [error][@stdlib/error/to-json] object. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var reviveError = require( '@stdlib/error/reviver' ); -``` - -#### reviveError( key, value ) - -Revives a JSON-serialized [error][@stdlib/error/to-json] object. - -```javascript -var parseJSON = require( '@stdlib/utils/parse-json' ); - -var str = '{"type":"TypeError","message":"beep"}'; - -var err = parseJSON( str, reviveError ); -// returns -``` - -For details on the JSON serialization format, see [`@stdlib/error/to-json`][@stdlib/error/to-json]. - -
- - - - - -
- -## Notes - -- Supported built-in [`error`][mdn-error] types: - - - [`Error`][mdn-error] - - [`URIError`][mdn-uri-error] - - [`ReferenceError`][mdn-reference-error] - - [`SyntaxError`][mdn-syntax-error] - - [`RangeError`][mdn-range-error] - - [`EvalError`][mdn-eval-error] - - [`TypeError`][mdn-type-error] - -
- - - - - -
- -## Examples - - - -```javascript -var parseJSON = require( '@stdlib/utils/parse-json' ); -var err2json = require( '@stdlib/error/to-json' ); -var reviveError = require( '@stdlib/error/reviver' ); - -var err1 = new SyntaxError( 'bad syntax' ); -// returns - -var json = err2json( err1 ); -/* e.g., returns - { - 'type': 'SyntaxError', - 'name': 'SyntaxError', - 'message': 'bad syntax', - 'stack': '...' - } -*/ - -var str = JSON.stringify( json ); -// e.g., returns '{"type":"SyntaxError","name":"SyntaxError","message":"bad syntax","stack":"..."}' - -var err2 = parseJSON( str, reviveError ); -// returns - -var bool = ( err1.message === err2.message ); -// returns true - -bool = ( err1.stack === err2.stack ); -// returns true -``` - -
- - - - - -
- -
- - - - - - - - - - - - - - diff --git a/reviver/benchmark/benchmark.js b/reviver/benchmark/benchmark.js deleted file mode 100644 index 9af5c4d..0000000 --- a/reviver/benchmark/benchmark.js +++ /dev/null @@ -1,121 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var err2json = require( './../../to-json' ); -var format = require( '@stdlib/string/format' ); -var parseJSON = require( '@stdlib/utils/parse-json' ); -var pkg = require( './../package.json' ).name; -var reviver = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var errs; - var o; - var i; - - errs = [ - JSON.stringify( err2json( new Error( 'beep' ) ) ), - JSON.stringify( err2json( new TypeError( 'boop' ) ) ), - JSON.stringify( err2json( new RangeError( 'beep' ) ) ), - JSON.stringify( err2json( new URIError( 'boop' ) ) ), - JSON.stringify( err2json( new SyntaxError( 'beep' ) ) ), - JSON.stringify( err2json( new EvalError( 'boop' ) ) ), - JSON.stringify( err2json( new ReferenceError( 'beep' ) ) ) - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - o = parseJSON( errs[ i%errs.length ], reviver ); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - } - b.toc(); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); - -bench( format( '%s::no_reviver', pkg ), function benchmark( b ) { - var errs; - var o; - var i; - - errs = [ - JSON.stringify( err2json( new Error( 'beep' ) ) ), - JSON.stringify( err2json( new TypeError( 'boop' ) ) ), - JSON.stringify( err2json( new RangeError( 'beep' ) ) ), - JSON.stringify( err2json( new URIError( 'boop' ) ) ), - JSON.stringify( err2json( new SyntaxError( 'beep' ) ) ), - JSON.stringify( err2json( new EvalError( 'boop' ) ) ), - JSON.stringify( err2json( new ReferenceError( 'beep' ) ) ) - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - o = parseJSON( errs[ i%errs.length ] ); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - } - b.toc(); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); - -bench( format( '%s::no_reviver,built-in', pkg ), function benchmark( b ) { - var errs; - var o; - var i; - - errs = [ - JSON.stringify( err2json( new Error( 'beep' ) ) ), - JSON.stringify( err2json( new TypeError( 'boop' ) ) ), - JSON.stringify( err2json( new RangeError( 'beep' ) ) ), - JSON.stringify( err2json( new URIError( 'boop' ) ) ), - JSON.stringify( err2json( new SyntaxError( 'beep' ) ) ), - JSON.stringify( err2json( new EvalError( 'boop' ) ) ), - JSON.stringify( err2json( new ReferenceError( 'beep' ) ) ) - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - o = JSON.parse( errs[ i%errs.length ] ); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - } - b.toc(); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/reviver/docs/repl.txt b/reviver/docs/repl.txt deleted file mode 100644 index 6412bce..0000000 --- a/reviver/docs/repl.txt +++ /dev/null @@ -1,36 +0,0 @@ - -{{alias}}( key, value ) - Revives a JSON-serialized error object. - - The following built-in error types are supported: - - - Error - - URIError - - ReferenceError - - SyntaxError - - RangeError - - EvalError - - TypeError - - Parameters - ---------- - key: string - Key. - - value: any - Value. - - Returns - ------- - out: any - Value or error object. - - Examples - -------- - > var str = '{"type":"TypeError","message":"beep"}'; - > var err = JSON.parse( str, {{alias}} ) - - - See Also - -------- - diff --git a/reviver/docs/types/index.d.ts b/reviver/docs/types/index.d.ts deleted file mode 100644 index e91bb91..0000000 --- a/reviver/docs/types/index.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Revives a JSON-serialized error object. -* -* @param key - key -* @param value - value -* @returns value or error object -* -* @example -* var str = '{"type":"TypeError","message":"beep"}'; -* var err = JSON.parse( str, reviveError ); -* // returns -*/ -declare function reviveError( key: string, value: any ): any; - - -// EXPORTS // - -export = reviveError; diff --git a/reviver/docs/types/test.ts b/reviver/docs/types/test.ts deleted file mode 100644 index fd3850f..0000000 --- a/reviver/docs/types/test.ts +++ /dev/null @@ -1,45 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import reviveError = require( './index' ); - - -// TESTS // - -// The function can be used to revive a serialized object... -{ - JSON.parse( '{"beep":"boop"}', reviveError ); // $ExpectType any -} - -// The compiler throws an error if the function is provided a first argument that is not a string... -{ - reviveError( true, 1 ); // $ExpectError - reviveError( false, 1 ); // $ExpectError - reviveError( null, 1 ); // $ExpectError - reviveError( undefined, 1 ); // $ExpectError - reviveError( 5, 1 ); // $ExpectError - reviveError( [], 1 ); // $ExpectError - reviveError( {}, 1 ); // $ExpectError - reviveError( ( x: number ): number => x, 1 ); // $ExpectError -} - -// The compiler throws an error if the function is provided insufficient arguments... -{ - reviveError(); // $ExpectError - reviveError( 'beep' ); // $ExpectError -} diff --git a/reviver/examples/index.js b/reviver/examples/index.js deleted file mode 100644 index c0a5e30..0000000 --- a/reviver/examples/index.js +++ /dev/null @@ -1,47 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var err2json = require( './../../to-json' ); -var reviveError = require( './../lib' ); - -var err1 = new SyntaxError( 'bad syntax' ); -// returns - -var json = err2json( err1 ); -/* e.g., returns - { - 'type': 'SyntaxError', - 'name': 'SyntaxError', - 'message': 'bad syntax', - 'stack': '...' - } -*/ - -var str = JSON.stringify( json ); -// e.g., returns '{'type':'SyntaxError','name':'SyntaxError','message':'bad syntax','stack':'...'}' - -var err2 = JSON.parse( str, reviveError ); -// returns - -console.log( err1.message === err2.message ); -// => true - -console.log( err1.stack === err2.stack ); -// => true diff --git a/reviver/lib/ctors.js b/reviver/lib/ctors.js deleted file mode 100644 index ec19de0..0000000 --- a/reviver/lib/ctors.js +++ /dev/null @@ -1,36 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MAIN // - -var CTORS = { - 'Error': Error, - 'TypeError': TypeError, - 'SyntaxError': SyntaxError, - 'ReferenceError': ReferenceError, - 'URIError': URIError, - 'EvalError': EvalError, - 'RangeError': RangeError -}; - - -// EXPORTS // - -module.exports = CTORS; diff --git a/reviver/lib/index.js b/reviver/lib/index.js deleted file mode 100644 index 7eaccfa..0000000 --- a/reviver/lib/index.js +++ /dev/null @@ -1,42 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Revive a JSON-serialized error object. -* -* @module @stdlib/error/reviver -* -* @example -* var parseJSON = require( '@stdlib/utils/parse-json' ); -* var reviver = require( '@stdlib/error/reviver' ); -* -* var str = '{"type":"TypeError","message":"beep"}'; -* var err = parseJSON( str, reviver ); -* // returns -*/ - -// MODULES // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/reviver/lib/main.js b/reviver/lib/main.js deleted file mode 100644 index 82ad905..0000000 --- a/reviver/lib/main.js +++ /dev/null @@ -1,89 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var objectKeys = require( '@stdlib/utils/keys' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var ctors = require( './ctors.js' ); - - -// MAIN // - -/** -* Revives a JSON-serialized error object. -* -* @param {string} key - key -* @param {*} value - value -* @returns {(*|Error|SyntaxError|URIError|EvalError|ReferenceError|RangeError|TypeError)} value or error object -* -* @example -* var parseJSON = require( '@stdlib/utils/parse-json' ); -* -* var str = '{"type":"TypeError","message":"beep"}'; -* var err = parseJSON( str, reviveError ); -* // returns -*/ -function reviveError( key, value ) { - var hasStack; - var ctor; - var keys; - var err; - var k; - var i; - if ( - value && - value.type && - isString( value.message ) - ) { - ctor = ctors[ value.type ]; - if ( ctor ) { - err = new ctor( value.message ); - keys = objectKeys( value ); - for ( i = 0; i < keys.length; i++ ) { - k = keys[ i ]; - if ( - k === 'type' || - k === 'message' || - k === 'name' // read-only for built-ins - ) { - continue; - } - if ( k === 'stack' ) { - if ( !isString( value[k] ) ) { - continue; - } - hasStack = true; - } - err[ k ] = value[ k ]; - } - if ( !hasStack && isString( err.stack ) ) { - err.stack = ''; - } - return err; - } - } - return value; -} - - -// EXPORTS // - -module.exports = reviveError; diff --git a/reviver/package.json b/reviver/package.json deleted file mode 100644 index 4322e7d..0000000 --- a/reviver/package.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "name": "@stdlib/error/reviver", - "version": "0.0.0", - "description": "Revive a JSON-serialized error object.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "utils", - "util", - "utilities", - "utility", - "error", - "err", - "json", - "reviver", - "revive", - "unmarshal", - "deserialize", - "from", - "convert", - "parse", - "object", - "obj" - ] -} diff --git a/reviver/test/test.ctors.js b/reviver/test/test.ctors.js deleted file mode 100644 index 06052b6..0000000 --- a/reviver/test/test.ctors.js +++ /dev/null @@ -1,46 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var objectKeys = require( '@stdlib/utils/keys' ); -var isPlainObject = require( '@stdlib/assert/is-plain-object' ); -var isFunction = require( '@stdlib/assert/is-function' ); -var ctors = require( './../lib/ctors.js' ); - - -// TESTS // - -tape( 'main export is a function hash', function test( t ) { - var keys; - var i; - - t.ok( true, __filename ); - t.strictEqual( isPlainObject( ctors ), true, 'main export is an object' ); - - keys = objectKeys( ctors ); - t.ok( keys.length > 0, 'has keys' ); - - for ( i = 0; i < keys.length; i++ ) { - t.strictEqual( isFunction( ctors[ keys[i] ] ), true, keys[i] + ' value is a function' ); - } - t.end(); -}); diff --git a/reviver/test/test.js b/reviver/test/test.js deleted file mode 100644 index 3620cc2..0000000 --- a/reviver/test/test.js +++ /dev/null @@ -1,248 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var copy = require( '@stdlib/utils/copy' ); -var reviveError = require( './../lib' ); - - -// FUNCTIONS // - -function setup( type, name, msg, stack ) { - var json = {}; - json.type = type || 'Error'; - json.name = name || 'Error'; - json.message = msg || ''; - json.stack = stack || 'boop'; - return json; -} - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof reviveError, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'values which are not recognized as serialized error objects are unaffected', function test( t ) { - var expected; - var actual; - - expected = { - 'beep': 'boop' - }; - actual = JSON.parse( '{"beep":"boop"}', reviveError ); - - t.deepEqual( actual, expected, 'returns expected value' ); - - // Null edge case: - actual = JSON.parse( 'null', reviveError ); - t.strictEqual( actual, null, 'returns expected value' ); - - t.end(); -}); - -tape( 'an object must have a recognized "type" field in order to be revived', function test( t ) { - var expected; - var actual; - var json; - - json = setup(); - json.type = 'Boop'; - - expected = copy( json ); - - actual = JSON.parse( JSON.stringify( json ), reviveError ); - - t.deepEqual( actual, expected, 'returns expected value' ); - t.end(); -}); - -tape( 'an object must have a "message" field in order to be revived', function test( t ) { - var expected; - var actual; - var json; - - json = setup(); - delete json.message; - - expected = copy( json ); - - actual = JSON.parse( JSON.stringify( json ), reviveError ); - - t.deepEqual( actual, expected, 'returns expected value' ); - - t.end(); -}); - -tape( 'the function will revive a JSON-serialized error object', function test( t ) { - var expected; - var actual; - var types; - var ctors; - var json; - var msgs; - var i; - - types = [ - 'Error', - 'TypeError', - 'SyntaxError', - 'URIError', - 'ReferenceError', - 'EvalError', - 'RangeError' - ]; - msgs = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - ctors = [ - Error, - TypeError, - SyntaxError, - URIError, - ReferenceError, - EvalError, - RangeError - ]; - for ( i = 0; i < types.length; i++ ) { - json = setup( types[ i ], types[ i ], msgs[i], 'boop'+i ); - - expected = new ctors[ i ]( msgs[i] ); - expected.stack = 'boop' + i; - - actual = JSON.parse( JSON.stringify( json ), reviveError ); - - t.ok( actual instanceof ctors[ i ], 'instance of type ' + types[i] ); - t.strictEqual( actual.message, expected.message, 'returns expected value' ); - t.strictEqual( actual.stack, expected.stack, 'returns expected value' ); - } - t.end(); -}); - -tape( 'non-standard error properties are bound to the revived error instance', function test( t ) { - var json; - var err; - - json = setup(); - json.beep = 'boop'; - json.arr = [1, 2, 3, [4, 5]]; - - err = JSON.parse( JSON.stringify( json ), reviveError ); - - t.strictEqual( err.beep, json.beep, 'shallow properties' ); - - t.notEqual( err.arr, json.arr, 'separate instances' ); - t.deepEqual( err.arr, json.arr, 'returns expected value' ); - - t.end(); -}); - -tape( 'if a serialized error object lacks a "stack" field or has a "stack" field and lacks a stack trace, the returned error will not have an associated stack trace', function test( t ) { - var json; - var err; - - // Missing stack field... - json = setup(); - delete json.stack; - - err = JSON.parse( JSON.stringify( json ), reviveError ); - - t.ok( err.stack === '' || err.stack === void 0, 'returned error does not have a stack trace' ); - - // Stack field is empty or null... - json = setup(); - json.stack = null; - - err = JSON.parse( JSON.stringify( json ), reviveError ); - - t.ok( err.stack === '' || err.stack === void 0, 'returned error does not have a stack trace' ); - - t.end(); -}); - -tape( 'the function will revive deeply nested serialized error objects', function test( t ) { - var expected; - var actual; - var ctors; - var json; - var arrs; - var msgs; - var i; - - arrs = [ - setup( 'Error', 'Error', 'beep' ), - setup( 'TypeError', 'TypeError', 'boop' ) - ]; - - ctors = [ - Error, - TypeError - ]; - - msgs = [ - 'beep', - 'boop' - ]; - - actual = JSON.parse( JSON.stringify( arrs ), reviveError ); - - for ( i = 0; i < arrs.length; i++ ) { - expected = new ctors[ i ]( msgs[i] ); - expected.stack = 'boop'; - - t.ok( actual[i] instanceof ctors[i], 'instance of ' + ctors[ i ] ); - t.strictEqual( actual[i].message, expected.message, 'returns expected value' ); - t.strictEqual( actual[i].stack, expected.stack, 'returns expected value' ); - } - - json = { - 'beep': { - 'boop': setup( 'RangeError', 'RangeError', 'bap' ) - } - }; - - expected = { - 'beep': { - 'boop': new RangeError( 'bap' ) - } - }; - expected.beep.boop.stack = 'boop'; - - actual = JSON.parse( JSON.stringify( json ), reviveError ); - - t.ok( actual.beep.boop instanceof RangeError, 'instance of RangeError' ); - - t.strictEqual( actual.beep.boop.message, expected.beep.boop.message, 'returns expected value' ); - - t.strictEqual( actual.beep.boop.stack, expected.beep.boop.stack, 'returns expected value' ); - - t.end(); -}); diff --git a/stats_browser.html b/stats_browser.html new file mode 100644 index 0000000..8d8dcde --- /dev/null +++ b/stats_browser.html @@ -0,0 +1,4842 @@ + + + + + + + + Rollup Visualizer + + + +
+ + + + + diff --git a/stats_node.html b/stats_node.html new file mode 100644 index 0000000..339d1c5 --- /dev/null +++ b/stats_node.html @@ -0,0 +1,4842 @@ + + + + + + + + Rollup Visualizer + + + +
+ + + + + diff --git a/test/test.js b/test/test.js deleted file mode 100644 index 6dd0e95..0000000 --- a/test/test.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var objectKeys = require( '@stdlib/utils/keys' ); -var ns = require( './../lib' ); - - -// TESTS // - -tape( 'main export is an object', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof ns, 'object', 'main export is an object' ); - t.end(); -}); - -tape( 'the exported object contains key-value pairs', function test( t ) { - var keys = objectKeys( ns ); - t.strictEqual( keys.length > 0, true, 'has keys' ); - t.end(); -}); diff --git a/to-json/README.md b/to-json/README.md deleted file mode 100644 index 304f03c..0000000 --- a/to-json/README.md +++ /dev/null @@ -1,292 +0,0 @@ - - -# error2json - -> Return a [JSON][json] representation of an [error][mdn-error] object. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var error2json = require( '@stdlib/error/to-json' ); -``` - -#### error2json( error ) - -Returns a [JSON][json] representation of an [`error`][mdn-error] object. - -```javascript -var err = new Error( 'beep' ); - -var json = error2json( err ); -/* e.g., returns - { - 'type': 'Error', - 'name': 'Error', // if present - 'message': 'beep', - 'stack': '...' // if present - } -*/ -``` - -The [JSON][json] `object` is **guaranteed** to have the following properties: - -- **type**: error type. -- **message**: error message. - -The **only** standardized cross-platform property is `message`. Depending on the platform, the following properties **may** be present: - -- **name**: error name. -- **stack**: stack trace. -- **code**: error code ([Node.js][node-system-error] system errors). -- **errno**: error code `string` ([Node.js][node-system-error] system errors). -- **syscall**: `string` representing the failed system call ([Node.js][node-system-error] system errors). - -The function also serializes **all** `enumerable` properties. - - - -```javascript -var err = new Error( 'beep' ); -err.a = 'b'; -err.c = { 'd': 'e' }; - -var json = error2json( err ); -/* e.g., returns - { - 'type': 'Error', - 'name': 'Error', // if present - 'message': 'beep', - 'stack': '...', // if present - 'a': 'b', - 'c': { - 'd': 'e' - } - } -*/ -``` - -
- - - - - -
- -## Notes - -- Supported built-in [`error`][mdn-error] types: - - - [`Error`][mdn-error] - - [`TypeError`][mdn-type-error] - - [`SyntaxError`][mdn-syntax-error] - - [`ReferenceError`][mdn-reference-error] - - [`RangeError`][mdn-range-error] - - [`URIError`][mdn-uri-error] - - [`EvalError`][mdn-eval-error] - -- The implementation supports custom error types and sets the `type` field to the closest built-in [`error`][mdn-error] type. - - ```javascript - function CustomError( msg ) { - this.name = 'CustomError'; - this.message = msg || ''; - this.stack = ( new TypeError() ).stack; - return this; - } - CustomError.prototype = Object.create( TypeError.prototype ); - CustomError.prototype.constructor = CustomError; - - var err = new CustomError( 'boop' ); - - var json = error2json( err ); - /* e.g., returns - { - 'type': 'TypeError', - 'name': 'CustomError', - 'message': 'boop', - 'stack': '...' - } - */ - ``` - -
- - - - - -
- -## Examples - - - -```javascript -var error2json = require( '@stdlib/error/to-json' ); - -var err = new Error( 'beep' ); -var out = error2json( err ); -/* e.g., returns - { - 'type': 'Error', - 'name': 'Error', - 'message': 'beep', - 'stack': '...' - } -*/ - -err = new TypeError( 'invalid type' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'TypeError', - 'name': 'TypeError', - 'message': 'invalid type', - 'stack': '...' - } -*/ - -err = new SyntaxError( 'bad syntax' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'SyntaxError', - 'name': 'SyntaxError', - 'message': 'bad syntax', - 'stack': '...' - } -*/ - -err = new ReferenceError( 'unknown variable' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'ReferenceError', - 'name': 'ReferenceError', - 'message': 'unknown variable', - 'stack': '...' - } -*/ - -err = new URIError( 'bad URI' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'URIError', - 'name': 'URIError', - 'message': 'bad URI', - 'stack': '...' - } -*/ - -err = new RangeError( 'value out-of-range' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'RangeError', - 'name': 'RangeError', - 'message': 'value out-of-range', - 'stack': '...' - } -*/ - -err = new EvalError( 'eval error' ); -out = error2json( err ); -/* e.g., returns - { - 'type': 'EvalError', - 'name': 'EvalError', - 'message': 'eval error', - 'stack': '...' - } -*/ -``` - -
- - - - - -
- -
- - - - - - - - - - - - - - diff --git a/to-json/benchmark/benchmark.js b/to-json/benchmark/benchmark.js deleted file mode 100644 index 61586da..0000000 --- a/to-json/benchmark/benchmark.js +++ /dev/null @@ -1,51 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var pkg = require( './../package.json' ).name; -var toJSON = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var err; - var o; - var i; - - err = new Error( 'beep' ); - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - err.message = 'beep' + i; - o = toJSON( err ); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - } - b.toc(); - if ( typeof o !== 'object' ) { - b.fail( 'should return an object' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/to-json/docs/repl.txt b/to-json/docs/repl.txt deleted file mode 100644 index 6e36102..0000000 --- a/to-json/docs/repl.txt +++ /dev/null @@ -1,53 +0,0 @@ - -{{alias}}( error ) - Returns a JSON representation of an error object. - - The following built-in error types are supported: - - - Error - - URIError - - ReferenceError - - SyntaxError - - RangeError - - EvalError - - TypeError - - The JSON object is guaranteed to have the following properties: - - - type: error type. - - message: error message. - - The only standardized cross-platform property is `message`. Depending on the - platform, the following properties *may* be present: - - - name: error name. - - stack: stack trace. - - code: error code (Node.js system errors). - - errno: error code string (Node.js system errors). - - syscall: string representing the failed system call (Node.js system - errors). - - The function also serializes all enumerable properties. - - The implementation supports custom error types and sets the `type` field to - the closest built-in error type. - - Parameters - ---------- - error: Error - Error to serialize. - - Returns - ------- - out: Object - JSON representation. - - Examples - -------- - > var err = new Error( 'beep' ); - > var json = {{alias}}( err ) - - - See Also - -------- - diff --git a/to-json/docs/types/index.d.ts b/to-json/docs/types/index.d.ts deleted file mode 100644 index 7afefac..0000000 --- a/to-json/docs/types/index.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Returns a JSON representation of an error object. -* -* @param err - error to serialize -* @returns JSON representation -* -* @example -* var err = new Error( 'beep' ); -* var json = error2json( err ); -* // returns {...} -*/ -declare function error2json( err: Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError ): any; - - -// EXPORTS // - -export = error2json; diff --git a/to-json/docs/types/test.ts b/to-json/docs/types/test.ts deleted file mode 100644 index f35cd6b..0000000 --- a/to-json/docs/types/test.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2021 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import error2json = require( './index' ); - - -// TESTS // - -// The function returns an object... -{ - error2json( new Error( 'beep' ) ); // $ExpectType any - error2json( new TypeError( 'beep' ) ); // $ExpectType any - error2json( new SyntaxError( 'beep' ) ); // $ExpectType any - error2json( new URIError( 'beep' ) ); // $ExpectType any - error2json( new ReferenceError( 'beep' ) ); // $ExpectType any - error2json( new RangeError( 'beep' ) ); // $ExpectType any - error2json( new EvalError( 'beep' ) ); // $ExpectType any -} - -// The compiler throws an error if the function is provided a value other than an error object... -{ - error2json( 'abc' ); // $ExpectError - error2json( true ); // $ExpectError - error2json( false ); // $ExpectError - error2json( null ); // $ExpectError - error2json( undefined ); // $ExpectError - error2json( 5 ); // $ExpectError - error2json( [] ); // $ExpectError - error2json( {} ); // $ExpectError - error2json( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided insufficient arguments... -{ - error2json(); // $ExpectError -} diff --git a/to-json/examples/index.js b/to-json/examples/index.js deleted file mode 100644 index b125aed..0000000 --- a/to-json/examples/index.js +++ /dev/null @@ -1,98 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var error2json = require( './../lib' ); - -var err = new Error( 'beep' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'Error', - 'name': 'Error', - 'message': 'beep', - 'stack': '...' - } -*/ - -err = new TypeError( 'invalid type' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'TypeError', - 'name': 'TypeError', - 'message': 'invalid type', - 'stack': '...' - } -*/ - -err = new SyntaxError( 'bad syntax' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'SyntaxError', - 'name': 'SyntaxError', - 'message': 'bad syntax', - 'stack': '...' - } -*/ - -err = new ReferenceError( 'unknown variable' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'ReferenceError', - 'name': 'ReferenceError', - 'message': 'unknown variable', - 'stack': '...' - } -*/ - -err = new URIError( 'bad URI' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'URIError', - 'name': 'URIError', - 'message': 'bad URI', - 'stack': '...' - } -*/ - -err = new RangeError( 'value out-of-range' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'RangeError', - 'name': 'RangeError', - 'message': 'value out-of-range', - 'stack': '...' - } -*/ - -err = new EvalError( 'eval error' ); -console.log( error2json( err ) ); -/* e.g., => - { - 'type': 'EvalError', - 'name': 'EvalError', - 'message': 'eval error', - 'stack': '...' - } -*/ diff --git a/to-json/lib/ctors.js b/to-json/lib/ctors.js deleted file mode 100644 index 91760c8..0000000 --- a/to-json/lib/ctors.js +++ /dev/null @@ -1,36 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MAIN // - -var CTORS = [ - [ TypeError, 'TypeError' ], - [ SyntaxError, 'SyntaxError' ], - [ ReferenceError, 'ReferenceError' ], - [ RangeError, 'RangeError' ], - [ URIError, 'URIError' ], - [ EvalError, 'EvalError' ], - [ Error, 'Error' ] -]; - - -// EXPORTS // - -module.exports = CTORS; diff --git a/to-json/lib/index.js b/to-json/lib/index.js deleted file mode 100644 index 3086992..0000000 --- a/to-json/lib/index.js +++ /dev/null @@ -1,41 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return a JSON representation of an error object. -* -* @module @stdlib/error/to-json -* -* @example -* var error2json = require( '@stdlib/error/to-json' ); -* -* var err = new Error( 'beep' ); -* var json = error2json( err ); -* // returns -*/ - -// MODULES // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/to-json/lib/main.js b/to-json/lib/main.js deleted file mode 100644 index 0ec10ac..0000000 --- a/to-json/lib/main.js +++ /dev/null @@ -1,85 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var objectKeys = require( '@stdlib/utils/keys' ); -var copy = require( '@stdlib/utils/copy' ); -var isError = require( '@stdlib/assert/is-error' ); -var format = require( '@stdlib/string/format' ); -var typeName = require( './type.js' ); - - -// MAIN // - -/** -* Returns a JSON representation of an error object. -* -* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} err - error to serialize -* @throws {TypeError} must provide an error object -* @returns {Object} JSON representation -* -* @example -* var err = new Error( 'beep' ); -* var json = error2json( err ); -* // returns {...} -*/ -function error2json( err ) { - var keys; - var out; - var i; - if ( !isError( err ) ) { - throw new TypeError( format( 'invalid argument. Must provide an error object. Value: `%s`.', err ) ); - } - out = {}; - - // Guaranteed properties: - out.type = typeName( err ); - out.message = err.message; - - // Possible general error properties... - if ( err.name ) { - out.name = err.name; - } - if ( err.stack ) { - out.stack = err.stack; - } - // Possible Node.js (system error) properties... - if ( err.code ) { - out.code = err.code; - } - if ( err.errno ) { - out.errno = err.errno; - } - if ( err.syscall ) { - out.syscall = err.syscall; - } - // Any enumerable properties... - keys = objectKeys( err ); - for ( i = 0; i < keys.length; i++ ) { - out[ keys[i] ] = copy( err[ keys[i] ] ); - } - return out; -} - - -// EXPORTS // - -module.exports = error2json; diff --git a/to-json/lib/type.js b/to-json/lib/type.js deleted file mode 100644 index c08caee..0000000 --- a/to-json/lib/type.js +++ /dev/null @@ -1,68 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var instanceOf = require( '@stdlib/assert/instance-of' ); -var ctorName = require( '@stdlib/utils/constructor-name' ); -var getPrototypeOf = require( '@stdlib/utils/get-prototype-of' ); -var CTORS = require( './ctors.js' ); - - -// MAIN // - -/** -* Returns the error type. -* -* @private -* @param {(Error|TypeError|SyntaxError|URIError|ReferenceError|RangeError|EvalError)} error - input error -* @returns {(string|void)} error type -* -* @example -* var err = new TypeError(); -* var out = typeName( err ); -* // returns 'TypeError' -*/ -function typeName( error ) { - var v; - var i; - - // Check for error objects from the same realm (same Node.js `vm` or same `Window` object)... - for ( i = 0; i < CTORS.length; i++ ) { - if ( instanceOf( error, CTORS[ i ][ 0 ] ) ) { - return CTORS[ i ][ 1 ]; - } - } - // Walk the prototype tree until we find an object having a desired native class... - while ( error ) { - v = ctorName( error ); - for ( i = 0; i < CTORS.length; i++ ) { - if ( v === CTORS[ i ][ 1 ] ) { - return CTORS[ i ][ 1 ]; - } - } - error = getPrototypeOf( error ); - } -} - - -// EXPORTS // - -module.exports = typeName; diff --git a/to-json/package.json b/to-json/package.json deleted file mode 100644 index da99ab3..0000000 --- a/to-json/package.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "@stdlib/error/to-json", - "version": "0.0.0", - "description": "Return a JSON representation of an error object.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "utils", - "util", - "utilities", - "utility", - "error", - "object", - "err", - "obj", - "serialize", - "tojson", - "json", - "to", - "convert" - ] -} diff --git a/to-json/test/fixtures/customerror.proto.js b/to-json/test/fixtures/customerror.proto.js deleted file mode 100644 index 5def6df..0000000 --- a/to-json/test/fixtures/customerror.proto.js +++ /dev/null @@ -1,65 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Creates a CustomError class. -* -* @private -* @param {(Error|SyntaxError|ReferenceError|EvalError|RangeError|TypeError|URIError)} ctor - error constructor -* @returns {CustomError} constructor -*/ -function createClass( ctor ) { - if ( !ctor ) { - ctor = Error; - } - /** - * Create a new object, which prototypically inherits from the Error constructor. - * - * @private - * @constructor - * @param {string} msg - error message - * @returns {CustomError} custom error instance - */ - function CustomError( msg ) { - this.name = 'CustomError'; - if ( msg ) { - this.message = msg; - } - this.stack = ( new ctor() ).stack; - return this; - } - - /** - * Create a prototype which inherits from the parent prototype. - */ - CustomError.prototype = Object.create( ctor.prototype ); - - /** - * Set the constructor. - */ - CustomError.prototype.constructor = CustomError; - - return CustomError; -} - - -// EXPORTS // - -module.exports = createClass; diff --git a/to-json/test/fixtures/customerror.subclass.js b/to-json/test/fixtures/customerror.subclass.js deleted file mode 100644 index c989a5e..0000000 --- a/to-json/test/fixtures/customerror.subclass.js +++ /dev/null @@ -1,47 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Creates a CustomError class constructor. Note that we use function generation so that tests may be run in browsers not supporting ES2015 classes. This function may be loaded in non-ES2015 environments, but should only be invoked when ES2015 classes are supported. -* -* @private -* @param {string} ctor - error constructor name -* @returns {Function} constructor -*/ -function createClass( ctor ) { - var str = ''; - if ( !ctor ) { - ctor = 'Error'; - } - str += '(function create() {'; - str += 'class CustomError extends '+ctor+' {'; - str += 'constructor( msg ) {'; - str += 'super( msg );'; - str += '}'; - str += '}'; - str += 'return CustomError;'; - str += '})()'; - return eval( str ); // eslint-disable-line no-eval -} - - -// EXPORTS // - -module.exports = createClass; diff --git a/to-json/test/test.ctors.js b/to-json/test/test.ctors.js deleted file mode 100644 index aef0b7d..0000000 --- a/to-json/test/test.ctors.js +++ /dev/null @@ -1,39 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var isArray = require( '@stdlib/assert/is-array' ); -var CTORS = require( './../lib/ctors.js' ); - - -// TESTS // - -tape( 'main export is an array', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( isArray( CTORS ), true, 'main export is an array' ); - t.end(); -}); - -tape( 'error constructors are exposed via an exported array', function test( t ) { - t.ok( CTORS.length > 0, 'has length > 0' ); - t.end(); -}); diff --git a/to-json/test/test.js b/to-json/test/test.js deleted file mode 100644 index 3b21cd4..0000000 --- a/to-json/test/test.js +++ /dev/null @@ -1,524 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var vm = require( 'vm' ); // TODO: handle in-browser tests -var tape = require( 'tape' ); -var IS_BROWSER = require( '@stdlib/assert/is-browser' ); -var hasClassSupport = require( '@stdlib/assert/has-class-support' ); -var isPlainObject = require( '@stdlib/assert/is-plain-object' ); -var defineProperty = require( '@stdlib/utils/define-property' ); -var toJSON = require( './../lib' ); - - -// FIXTURES // - -var createClass1 = require( './fixtures/customerror.proto.js' ); -var createClass2 = require( './fixtures/customerror.subclass.js' ); - - -// VARIABLES // - -var hasClass = hasClassSupport(); -var opts = { - 'skip': false -}; - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof toJSON, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'if provided anything other than an error instance, the function throws an error', function test( t ) { - var values; - var i; - - values = [ - '5', - 5, - NaN, - null, - void 0, - true, - false, - [], - {}, - function noop() {} - ]; - - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), Error, 'throws when provided a ' + (typeof values[i]) ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - toJSON( value ); - }; - } -}); - -tape( 'the function returns a JSON object', function test( t ) { - var json; - var err; - - err = new Error( 'beep' ); - json = toJSON( err ); - t.strictEqual( isPlainObject( json ), true, 'returns expected value' ); - t.end(); -}); - -tape( 'the JSON object includes an error type', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 'Error', - 'EvalError', - 'TypeError', - 'ReferenceError', - 'SyntaxError', - 'URIError', - 'RangeError' - ]; - - for ( i = 0; i < values.length; i++ ) { - json = toJSON( values[ i ] ); - t.strictEqual( json.type, expected[ i ], 'type equal to ' + expected[ i ] ); - } - t.end(); -}); - -tape( 'the JSON object includes an error message', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error( 'a' ), - new EvalError( 'b' ), - new TypeError( 'c' ), - new ReferenceError( 'd' ), - new SyntaxError( 'e' ), - new URIError( 'f' ), - new RangeError( 'g' ) - ]; - - expected = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - - for ( i = 0; i < values.length; i++ ) { - json = toJSON( values[ i ] ); - t.strictEqual( json.message, expected[ i ], 'message equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if a `stack` property is present, the JSON object includes a stack trace', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - - for ( i = 0; i < values.length; i++ ) { - values[ i ].stack = expected[ i ]; - json = toJSON( values[ i ] ); - t.strictEqual( json.stack, expected[ i ], 'stack equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if a `stack` property is not present, the JSON object will not include a `stack` property', function test( t ) { - var json; - var err; - - err = new Error(); - - // Fake not having a `stack` by intercepting access and returning `undefined`, similar to non-existent property behavior... - defineProperty( err, 'stack', { - 'value': void 0, - 'enumerable': false, - 'configurable': true, - 'writable': true - }); - - json = toJSON( err ); - t.strictEqual( json.stack, void 0, 'no stack property' ); - t.end(); -}); - -tape( 'if a `name` property is present, the JSON object includes an error name', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - - for ( i = 0; i < values.length; i++ ) { - values[ i ].name = expected[ i ]; - json = toJSON( values[ i ] ); - t.strictEqual( json.name, expected[ i ], 'name equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if a `name` property is not present, the JSON object will not include a `name` property', function test(t ) { - var json; - var err; - - err = new Error(); - - // Fake not having a `name` by intercepting access and returning `void 0`, similar to non-existent property behavior... - defineProperty( err, 'name', { - 'value': void 0, - 'enumerable': false, - 'configurable': true, - 'writable': true - }); - - json = toJSON( err ); - t.strictEqual( json.name, void 0, 'no name property' ); - - t.end(); -}); - -tape( 'if a `code` property is present, the JSON object includes an error code', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ]; - - for ( i = 0; i < values.length; i++ ) { - values[ i ].code = expected[ i ]; - json = toJSON( values[ i ] ); - t.strictEqual( json.code, expected[ i ], 'code equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if an `errno` property is present, the JSON object includes an error code string', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - - for ( i = 0; i < values.length; i++ ) { - values[ i ].errno = expected[ i ]; - json = toJSON( values[ i ] ); - t.strictEqual( json.errno, expected[ i ], 'errno equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if a `syscall` property is present, the JSON object includes a failed system call string', function test( t ) { - var expected; - var values; - var json; - var i; - - values = [ - new Error(), - new EvalError(), - new TypeError(), - new ReferenceError(), - new SyntaxError(), - new URIError(), - new RangeError() - ]; - - expected = [ - 'a', - 'b', - 'c', - 'd', - 'e', - 'f', - 'g' - ]; - - for ( i = 0; i < values.length; i++ ) { - values[ i ].syscall = expected[ i ]; - json = toJSON( values[ i ] ); - t.strictEqual( json.syscall, expected[ i ], 'syscall equal to \'' + expected[ i ] + '\'' ); - } - t.end(); -}); - -tape( 'if a provided error has additional enumerable properties, the function will include these properties and their values in the output JSON', function test( t ) { - var json; - var err; - - // Data descriptor... - err = new Error( 'errrr' ); - err.beep = 'boop'; - err.boop = 'beep'; - - json = toJSON( err ); - t.strictEqual( json.beep, err.beep, 'data descriptor' ); - t.strictEqual( json.boop, err.boop, 'data descriptor' ); - - // Accessor descriptor... - err = new Error( 'errrr' ); - defineProperty( err, 'beep', { - 'enumerable': true, - 'configurable': true, - 'get': function get() { - return 'boop'; - } - }); - defineProperty( err, 'boop', { - 'enumerable': true, - 'configurable': false, - 'get': function get() { - return 'beep'; - } - }); - - json = toJSON( err ); - t.strictEqual( json.beep, err.beep, 'accessor descriptor' ); - t.strictEqual( json.boop, err.boop, 'accessor descriptor' ); - - t.end(); -}); - -tape( 'the function deep copies enumerable properties', function test( t ) { - var json; - var err; - - // Deep equal... - err = new Error( 'errrr' ); - err.arr = [ 1, 2, [ 3, 4, 5 ] ]; - - json = toJSON( err ); - t.notEqual( json.arr, err.arr, 'new instances' ); - t.deepEqual( json.arr, err.arr, 'deep equal' ); - - t.end(); -}); - -tape( 'custom errors (proto)', function test( t ) { - var CustomError; - var types; - var ctors; - var json; - var err; - var i; - - ctors = [ - Error, - TypeError, - SyntaxError, - ReferenceError, - URIError, - EvalError, - RangeError - ]; - - types = [ - 'Error', - 'TypeError', - 'SyntaxError', - 'ReferenceError', - 'URIError', - 'EvalError', - 'RangeError' - ]; - - for ( i = 0; i < ctors.length; i++ ) { - CustomError = createClass1( ctors[ i ] ); - err = new CustomError( 'custom error' ); - json = toJSON( err ); - - t.strictEqual( json.type, types[ i ], 'type equal to ' + types[ i ] ); - t.strictEqual( json.message, err.message, 'equal messages' ); - t.strictEqual( json.name, err.name, 'equal names' ); - t.strictEqual( json.stack, err.stack, 'equal stack trace' ); - } - t.end(); -}); - -opts.skip = !hasClass; -tape( 'custom errors (subclass; ES2015)', opts, function test( t ) { - var CustomError; - var ctors; - var json; - var err; - var i; - - ctors = [ - 'Error', - 'TypeError', - 'SyntaxError', - 'ReferenceError', - 'URIError', - 'EvalError', - 'RangeError' - ]; - - for ( i = 0; i < ctors.length; i++ ) { - CustomError = createClass2( ctors[ i ] ); - err = new CustomError( 'custom error' ); - json = toJSON( err ); - - t.strictEqual( json.type, ctors[ i ], 'type equal to ' + ctors[ i ] ); - t.strictEqual( json.message, err.message, 'equal messages' ); - t.strictEqual( json.name, err.name, 'equal names' ); - t.strictEqual( json.stack, err.stack, 'equal stack trace' ); - } - t.end(); -}); - -opts.skip = IS_BROWSER; -tape( 'the function supports serializing an error from a different realm', opts, function test( t ) { - var json; - var err; - - err = vm.runInNewContext( 'new Error( "beep" )' ); - json = toJSON( err ); - - t.strictEqual( json.type, 'Error', 'type equal to Error' ); - t.strictEqual( json.message, err.message, 'equal messages' ); - t.strictEqual( json.name, err.name, 'equal names' ); - t.strictEqual( json.stack, err.stack, 'equal stack trace' ); - - t.end(); -}); - -opts.skip = IS_BROWSER; -tape( 'the function supports serializing an object from a different realm which inherits from an error', opts, function test( t ) { - var json; - var err; - - err = vm.runInNewContext( 'function Err( msg ) { this.name = "Err"; if ( msg ) { this.message = msg; }; this.stack = ( new Error() ).stack; return this; }; Err.prototype = Object.create( Error.prototype ); Err.prototype.constructor = Err; new Err( "beep" );', { - 'Error': Error - }); - json = toJSON( err ); - - t.strictEqual( json.type, 'Error', 'type equal to Error' ); - t.strictEqual( json.message, err.message, 'equal messages' ); - t.strictEqual( json.name, err.name, 'equal names' ); - t.strictEqual( json.stack, err.stack, 'equal stack trace' ); - - t.end(); -}); diff --git a/to-json/test/test.type.js b/to-json/test/test.type.js deleted file mode 100644 index 8057f6d..0000000 --- a/to-json/test/test.type.js +++ /dev/null @@ -1,130 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var proxyquire = require( 'proxyquire' ); -var typeName = require( './../lib/type.js' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof typeName, 'function', 'export is a function' ); - t.end(); -}); - -tape( 'if provided an error or error subclass, the function returns the closest error type', function test( t ) { - var expected; - var values; - var i; - - values = [ - new Error( 'beep' ), - new SyntaxError( 'boop' ), - new TypeError( 'bop' ), - new URIError( 'bap' ), - new ReferenceError( 'bip' ), - new EvalError( 'bup' ), - new RangeError( 'bep' ) - ]; - - expected = [ - 'Error', - 'SyntaxError', - 'TypeError', - 'URIError', - 'ReferenceError', - 'EvalError', - 'RangeError' - ]; - - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( typeName( values[i] ), expected[ i ], 'returns the constructor name: ' + expected[ i ] ); - } - t.end(); -}); - -tape( 'if provided an error from a different realm, the function returns the closest error type', function test( t ) { - var typeName; - var expected; - var values; - var i; - - typeName = proxyquire( './../lib/type.js', { - '@stdlib/assert/instance-of': instanceOf - }); - - values = [ - new Error( 'beep' ), - new SyntaxError( 'boop' ), - new TypeError( 'bop' ), - new URIError( 'bap' ), - new ReferenceError( 'bip' ), - new EvalError( 'bup' ), - new RangeError( 'bep' ) - ]; - - expected = [ - 'Error', - 'SyntaxError', - 'TypeError', - 'URIError', - 'ReferenceError', - 'EvalError', - 'RangeError' - ]; - - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( typeName( values[i] ), expected[ i ], 'returns the constructor name: ' + expected[ i ] ); - } - t.end(); - - function instanceOf() { - // Mocks comparing values from different realms... - return false; - } -}); - -tape( 'if not provided an error, the function returns `undefined`', function test( t ) { - var values; - var i; - - values = [ - '5', - NaN, - 5, - true, - false, - null, - void 0, - [], - {}, - function noop() {}, - function error() {} - ]; - - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( typeName( values[i] ), void 0, 'returns expected value' ); - } - t.end(); -}); diff --git a/tools/README.md b/tools/README.md deleted file mode 100644 index 8d28753..0000000 --- a/tools/README.md +++ /dev/null @@ -1,115 +0,0 @@ - - -# Tools - -> Error tools. - -
- -## Usage - -```javascript -var tools = require( '@stdlib/error/tools' ); -``` - -#### tools - -Namespace containing error tools. - -```javascript -var o = tools; -// returns {...} -``` - -The namespace contains the following: - - - -
- -- [`database()`][@stdlib/error/tools/database]: standard library error code database. -- [`fmtprodmsgFactory( [options] )`][@stdlib/error/tools/fmtprodmsg-factory]: return a `function` which formats an error message for production. -- [`fmtprodmsg( code, ...args )`][@stdlib/error/tools/fmtprodmsg]: format an error message for production. -- [`id2msg( id )`][@stdlib/error/tools/id2msg]: return an error message corresponding to a provided two-character error identifier. -- [`id2pkg( id )`][@stdlib/error/tools/id2pkg]: return the package name associated with a specified error identifier prefix. -- [`msg2id( msg )`][@stdlib/error/tools/msg2id]: return a two-character error identifier corresponding to a provided error message. -- [`pkg2id( pkg )`][@stdlib/error/tools/pkg2id]: return the error identifier prefix associated with a specified package name. - -
- - - -
- - - -
- -## Examples - - - - - -```javascript -var objectKeys = require( '@stdlib/utils/keys' ); -var tools = require( '@stdlib/error/tools' ); - -console.log( objectKeys( tools ) ); -``` - -
- - - - - - - - - - - - - - diff --git a/tools/database/LICENSE b/tools/database/LICENSE deleted file mode 100644 index dc6d53e..0000000 --- a/tools/database/LICENSE +++ /dev/null @@ -1,356 +0,0 @@ -The use of the database is licensed under an Open Data Commons Public Domain -Dedication & License 1.0 (PDDL 1.0), while the database contents are licensed -under Creative Commons Zero v1.0 Universal (CC0 1.0). The software is licensed -under an Apache-2.0 license. - - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - - -Creative Commons Zero v1.0 Universal - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: - -the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; -moral rights retained by the original author(s) and/or performer(s); -publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; -rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; -rights protecting the extraction, dissemination, use and reuse of data in a Work; -database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and -other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. -2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. - -4. Limitations and Disclaimers. - -No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. -Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. -Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. -Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. - - - - -Open Data Commons Public Domain Dedication & License 1.0 - -Preamble - -The Open Data Commons – Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. - -Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the "sui generis" database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a "some rights reserved" approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data. - -The position of the recipient of the work - -Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others. - -The position of the dedicator of the work - -Copyright law, as with most other law under the banner of "intellectual property", is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims. - -The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to "dual license" their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can’t re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts. - -This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content – not just factual data – rightsholders should use the Open Data Commons – Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. - -Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the "Work", which can be either – or both – the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it. - -Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document. - -This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. - -Part I: Introduction - -The Rightsholder (the Person holding rights or claims over the Work) agrees as follows: - -1.0 Definitions of Capitalised Words - -"Copyright" – Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4. - -"Data" – The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. - -"Database" – A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. - -"Database Right" – Means rights over Data resulting from the Chapter III ("sui generis") rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. - -"Document" – means this relinquishment and waiver of rights and claims and back up licence agreement. - -"Person" – Means a natural or legal person or a body of persons corporate or incorporate. - -"Use" – As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work. - -"Work" – Means either or both of the Database and Data offered under the terms of this Document. - -"You" – the Person acquiring rights under the licence elements of this Document. - -Words in the singular include the plural and vice versa. - -2.0 What this document covers - -2.1. Legal effect of this Document. This Document is: - -a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and - -b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver. - -2.2. Legal rights covered. - -a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and - -b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright. - -2.2 Rights not covered. - -a. This Document does not apply to computer programs used in the making or operation of the Database; - -b. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and - -c. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details. - -Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work. - -Part II: Dedication to the public domain - -3.0 Dedication, waiver, and licence of Copyright and Database Rights - -3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work. - -a. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use. - -b. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors. - -The above relinquishment of rights applies worldwide and includes media and formats now known or created in the future. - -3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in: - -a. Copyright; and - -b. Database Rights. - -To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. - -3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows: - -a. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. - -3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment: - -a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; - -b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and - -c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work. - -Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions. - -4.0 Relationship to other rights - -4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document. - -4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences. Part III: General provisions - -5.0 Warranties, disclaimer, and limitation of liability - -5.1 The Work is provided by the Rightsholder "as is" and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. - -5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages. - -5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder. - -6.0 General - -6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms of this Document. - -6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. - -6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. - -6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document. diff --git a/tools/database/README.md b/tools/database/README.md deleted file mode 100644 index ad5c8d4..0000000 --- a/tools/database/README.md +++ /dev/null @@ -1,106 +0,0 @@ - - -# Error Database - -> Standard library error code database. - -
- -## Usage - -```javascript -var database = require( '@stdlib/error/tools/database' ); -``` - -#### database() - -Returns a mapping of standard library error codes to their corresponding error messages. - -```javascript -var db = database(); -// returns {...} -``` - -
- - - -
- -## Examples - - - -```javascript -var invertObject = require( '@stdlib/object/inverse' ); -var replace = require( '@stdlib/string/replace' ); -var database = require( '@stdlib/error/tools/database' ); - -var db = database(); -var errorMap = invertObject( db ); -var RE_ERR_MSG = /Error\( '([^']+)' \)/; - -function replacer( match, p1 ) { - return 'Error( formatProdErrorMessage( \'' + errorMap[ p1 ] + '\' ) )'; -} - -var code = 'throw new Error( \'insufficient input arguments. Must provide at least one iterator function.\' );'; -var transformed = replace( code, RE_ERR_MSG, replacer ); -// returns 'throw new Error( formatProdErrorMessage( \'04\' ) );' -``` - -
- - - - - -## License - -The data files (databases) are licensed under an [Open Data Commons Public Domain Dedication & License 1.0][pddl-1.0] and their contents are licensed under [Creative Commons Zero v1.0 Universal][cc0]. The software is licensed under [Apache License, Version 2.0][apache-license]. - - - - - - - - - - - - - - diff --git a/tools/database/benchmark/benchmark.js b/tools/database/benchmark/benchmark.js deleted file mode 100644 index 900691d..0000000 --- a/tools/database/benchmark/benchmark.js +++ /dev/null @@ -1,47 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var isPlainObject = require( '@stdlib/assert/is-plain-object' ); -var pkg = require( './../package.json' ).name; -var database = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var data; - var i; - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - data = database(); - if ( typeof data !== 'object' ) { - b.fail( 'should return an object' ); - } - } - b.toc(); - if ( !isPlainObject( data ) ) { - b.fail( 'should return an object' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/tools/database/data/data.csv b/tools/database/data/data.csv deleted file mode 100644 index c8f39a9..0000000 --- a/tools/database/data/data.csv +++ /dev/null @@ -1,1274 +0,0 @@ -"10","invalid operation. Cannot reset a REPL which has already closed.","Error" -"11","invalid operation. Cannot clear a REPL which has already closed.","Error" -"12","invalid operation. Cannot clear the line of a REPL which has already closed.","Error" -"13","invalid operation. Cannot clear the command buffer of a REPL which has already closed.","Error" -"14","invalid argument. Provided command either does not contain an `await` expression or contains a top-level `return` which is not allowed.","Error" -"15","invalid argument. Must provide a program AST node.","TypeError" -"16","invalid invocation. Insufficient arguments. Must provide a REPL instance.","Error" -"17","invalid operation. No presentation to reload. Use the `load()` method to load a presentation.","Error" -"18","invalid operation. No presentation file to watch. Use the `load()` method to load a presentation.","Error" -"19","unexpected error. Encountered a ""rename"" event for the source presentation file. No longer watching source presentation file for changes.","Error" -"20","invalid argument. Must provide a username or, to get a list of repositories an authenticated user is watching, an access token.","Error" -"21","unexpected error. Unable to resolve package directory as unable to find a `package.json` in a parent directory.","Error" -"22","invalid argument. Source code does not contain JSDoc comment with function options.","Error" -"23","unexpected error. Unable to resolve root project directory.","Error" -"24","invalid argument. An iterator must return either a two-element array containing real and imaginary components or a complex number. Value: `%s`.","TypeError" -"25","invalid argument. Callback must return either a two-element array containing real and imaginary components or a complex number. Value: `%s`.","TypeError" -"26","invalid argument. Array-like object arguments must have a length which is a multiple of two. Length: `%u`.","RangeError" -"27","invalid argument. Array-like object and typed array arguments must have a length which is a multiple of two. Length: `%u`.","RangeError" -"28","invalid argument. ArrayBuffer byte length must be a multiple of `%u`. Byte length: `%u`.","RangeError" -"29","invalid argument. Environment lacks Symbol.iterator support. Must provide a length, ArrayBuffer, typed array, or array-like object. Value: `%s`.","TypeError" -"30","invalid argument. Fourth argument must be a nonnegative integer. Value: `%s`.","TypeError" -"31","invalid argument. Fifth argument must be a function. Value: `%s`.","TypeError" -"32","invalid argument. Fourth argument must be a function. Value: `%s`.","TypeError" -"33","invalid argument. Second argument must be either an integer (starting index) or a callback function. Value: `%s`.","TypeError" -"34","invalid argument. Third argument must be either an integer (ending index) or a callback function. Value: `%s`.","TypeError" -"35","invalid argument. Second argument must be either an integer (starting view index) or a callback function. Value: `%s`.","TypeError" -"36","invalid argument. Third argument must be either an integer (ending view index) or a callback function. Value: `%s`.","TypeError" -"37","invalid argument. Second argument must be a recognized data type. Value: `%s`.","TypeError" -"38","invalid argument. First argument must be array-like. Value: `%s`.","TypeError" -"39","invalid argument. Second argument must be a string. Value: `%s`.","TypeError" -"40","invalid argument. Must provide either a Date object, a JavaScript timestamp (i.e., a nonnegative integer), or a date string. Value: `%s`.","TypeError" -"41","invalid option. Unrecognized rounding mode. Option: `%s`.","TypeError" -"42","invalid argument. Third argument must be either a nonnegative integer or an options object. Value: `%s`.","TypeError" -"43","invalid argument. Fourth argument must be an object. Value: `%s`.","TypeError" -"44","invalid argument. First argument must an iterator protocol-compliant object. Value: `%s`.","TypeError" -"45","invalid argument. Second argument must be a positive integer. Value: `%s`.","TypeError" -"46","invalid argument. First argument must be an iterator protocol-compliant object. Value: `%s`.","TypeError" -"47","invalid argument. Must provide an object. Value: `%s`.","TypeError" -"48","invalid argument. Object property values must be functions. Key: `%s`. Value: `%s`.","TypeError" -"49","invalid argument. First argument must be a number. Value: `%s`.","TypeError" -"50","invalid option. Second `%s` parameter option must be a positive integer. Option: `%s`.","TypeError" -"51","invalid argument. First argument must be an array. Value: `%s`.","TypeError" -"52","invalid argument. First argument must be an array of length `%u`. Value: `%s`.","TypeError" -"53","invalid argument. First argument must be an array of length %u. Value: `%s`.","TypeError" -"54","unexpected error. Scaling weight vector by nonpositive value, likely due to too large value of eta * lambda. Value: `%f`.","RangeError" -"55","invalid argument. Second argument must be a boolean. Value: `%s`.","TypeError" -"56","invalid argument. Must provide either a valid data source, options argument, or both. Value: `%s`.","TypeError" -"57","invalid option. `%s` option must be an array-like object, typed-array-like, a Buffer, or an ndarray. Option: `%s`.","TypeError" -"58","invalid option. Data source must be an array-like object, typed-array-like, a Buffer, or an ndarray. Value: `%s`.","TypeError" -"59","invalid option. `%s` option must be a recognized casting mode. Option: `%s`.","TypeError" -"60","invalid argument. Input string must have a length equal to %u. Value: `%s`.","Error" -"61","invalid assignment. `%s` must be a boolean. Value: `%s`.","TypeError" -"62","invalid assignment. `%s` must be a string. Value: `%s`.","TypeError" -"63","invalid assignment. `%s` must be one of the following: ""%s"". Value: `%s`.","TypeError" -"64","invalid assignment. `%s` must be a positive number. Value: `%s`.","TypeError" -"65","invalid assignment. `%s` must be either an array of strings or an empty array. Value: `%s`.","TypeError" -"66","invalid assignment. `%s` must be a number or number array. Value: `%s`.","TypeError" -"67","invalid assignment. A `%s` must be a number on the interval: [0, 1]. Value: `%f`.","RangeError" -"68","invalid assignment. `%s` must be a string or a string array. Value: `%s`","TypeError" -"69","invalid assignment. Unsupported/unrecognized line style. Must be one of the following: ""%s"". Value: `%s`.","Error" -"70","invalid argument. Must provide a Uint32Array. Value: `%s`.","TypeError" -"71","invalid argument. First argument must be a positive number. Value: `%s`.","TypeError" -"72","invalid argument. Second argument must be a positive number. Value: `%s`.","TypeError" -"73","invalid argument. Second argument must be a probability. Value: `%s`.","TypeError" -"74","invalid option. `%s` option must be either a positive integer less than or equal to the maximum unsigned 32-bit integer or an array-like object containing integer values less than or equal to the maximum unsigned 32-bit integer. Option: `%s`.","TypeError" -"75","invalid option. `%s` option must have a `MIN` property specifying the minimum possible pseudorandom integer value.","TypeError" -"76","invalid option. `%s` option must have a `MAX` property specifying the maximum possible pseudorandom integer value.","TypeError" -"77","invalid argument. First argument must be an integer and not NaN. Value: `%s`.","TypeError" -"78","invalid argument. Second argument must be an integer and not NaN. Value: `%s`.","TypeError" -"79","invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%d,%d]`.","RangeError" -"80","invalid argument. First argument must be either a string containing presentation text or an options object specifying a presentation file to load. Value: `%s`.","TypeError" -"81","invalid argument. Second argument must be an options object. Value: `%s`.","TypeError" -"82","invalid argument. Invalid presentation identifier. Must be either a string or nonnegative integer. Value: `%s`.","TypeError" -"83","invalid argument. Workspace name already exists. Value: `%s`.","Error" -"84","invalid argument. Must provide a string, regular expression, nonnegative integer, or an array of nonnegative integers. Value: `%s`.","TypeError" -"85","invalid argument. Unrecognized tutorial name. Value: `%s`.","Error" -"86","invalid argument. Documentation argument must be a string. Value: `%s`.","TypeError" -"87","invalid option. `%s` option must be a regular expression. Option: `%s`.","TypeError" -"88","internal error. Unrecognized pattern type: `%s`.","Error" -"89","invalid option. `%s` option must be a readable stream. Option: `%s`.","TypeError" -"90","invalid argument. Denominator degrees of freedom must be a positive number. Value: `%s`.","TypeError" -"91","invalid argument. Scale parameter must be a number. Value: `%s`.","TypeError" -"92","invalid argument. Mean parameter `%s` must be a probability. Value: `%s`.","TypeError" -"93","invalid argument. Population size must be a nonnegative integer. Value: `%s`.","TypeError" -"94","invalid argument. Subpopulation size must be a nonnegative integer. Value: `%s`.","TypeError" -"95","invalid argument. Number of draws must be a nonnegative integer. Value: `%s`.","TypeError" -"96","invalid assignment. Must be a nonnegative integer. Value: `%s`.","TypeError" -"97","invalid assignment. Must be larger than or equal to %u. Value: `%u`.","RangeError" -"98","invalid assignment. Must be less than or equal to %u. Value: `%u`.","RangeError" -"99","invalid argument. Number of trials until experiment is stopped must be a positive number. Value: `%s`.","TypeError" -"00","not implemented","Error" -"01","invalid invocation. `this` context must be a constructor.","TypeError" -"02","invalid invocation. `this` is not a complex number array.","TypeError" -"03","invalid arguments. Target array lacks sufficient storage to accommodate source values.","RangeError" -"04","invalid arguments. Creating a generic array from an ArrayBuffer is not supported.","Error" -"05","invalid arguments. Must provide a length, typed array, array-like object, or an iterable.","TypeError" -"06","invalid arguments. Generated array exceeds maximum array length.","RangeError" -"07","invalid arguments. If either of the first two arguments are complex numbers, the output array must be a complex number array or a ""generic"" array-like object.","TypeError" -"08","invalid arguments. If either of the first two arguments are complex numbers, the output array data type must be a complex number data type or ""generic"".","TypeError" -"09","not supported. The current environment does not support SharedArrayBuffers, and, unfortunately, SharedArrayBuffers cannot be polyfilled. For shared memory applications, upgrade your runtime environment to one which supports SharedArrayBuffers.","Error" -"0A","insufficient arguments. Must provide a search value.","Error" -"0B","invalid argument. Attempted to add duplicate listener.","Error" -"0C","exception","Error" -"0D","unexpected error. Benchmark failed.","Error" -"0E","unexpected error. Invalid benchmark.","Error" -"0F","unexpected error.","Error" -"0G","invalid invocation. Constructor must be called with the `new` keyword.","TypeError" -"0H","unexpected error. Max retries exceeded. Too many open files.","Error" -"0I","insufficient arguments. Must provide two or more iterators.","Error" -"0J","insufficient arguments. Must provide both an iterator and a static value.","Error" -"0K","invalid invocation. `this` is not a fluent interface iterator.","TypeError" -"0L","insufficient arguments. Must provide a hash function.","Error" -"0M","invalid argument. Iterator arguments must be iterator protocol-compliant objects.","TypeError" -"0N","insufficient arguments. Must provide at least one iterator function.","Error" -"0O","invalid argument. Providing a number is not supported.","TypeError" -"0P","invalid argument. Providing a complex number is not supported.","TypeError" -"0Q","invalid argument. Providing an ndarray is not supported.","TypeError" -"0R","invalid argument. Providing an array-like object is not supported.","TypeError" -"0S","invalid argument. If the first argument is an ndarray, the second argument must be an ndarray.","TypeError" -"0T","invalid argument. Output array must have the same number of elements (i.e., length) as the input array.","RangeError" -"0U","invalid argument. If the first argument is an array-like object, the second argument must be an array-like object.","TypeError" -"0V","invalid argument. Providing a number is not supported. Consider providing a zero-dimensional ndarray containing the numeric value.","TypeError" -"0W","invalid argument. Providing a complex number is not supported. Consider providing a zero-dimensional ndarray containing the complex number value.","TypeError" -"0X","invalid arguments. Must provide either a data source, array shape, or both.","Error" -"0Y","invalid arguments. Array shape is incompatible with provided data source. Number of data source elements does not match array shape.","RangeError" -"0Z","invalid argument. Cannot broadcast an array to a shape having fewer dimensions. Arrays can only be broadcasted to shapes having the same or more dimensions.","Error" -"0a","invalid argument. First argument must contain at least one element.","RangeError" -"0b","invalid arguments. The length of the first argument is incompatible with the second and third arguments.","RangeError" -"0c","invalid argument. Must provide an ndarray having two or more dimensions.","Error" -"0d","invalid arguments. Arrays must have the same shape.","Error" -"0e","invalid invocation. Cannot write to a read-only array.","Error" -"0f","invalid argument. Fourth argument length must be equal to 1 when creating a zero-dimensional ndarray.","RangeError" -"0g","invalid arguments. The input buffer is incompatible with the specified meta data. Ensure that the offset is valid with regard to the strides array and that the buffer has enough elements to satisfy the desired array shape.","Error" -"0h","invalid arguments. Interface must accept at least one input and/or output ndarray. Based on the provided arguments, `nin+nout` equals `0`.","Error" -"0i","invalid arguments. Fourth argument does not equal the number of input and output ndarrays.","Error" -"0j","invalid argument. Unexpected number of types. A type must be specified for each input and output ndarray for each provided ndarray function.","Error" -"0k","invalid argument. The third argument must have the same number of elements as the first argument.","Error" -"0l","invalid invocation. Insufficient arguments.","Error" -"0m","invalid invocation. Too many arguments.","Error" -"0n","invalid arguments. Unable to resolve an ndarray function supporting the provided array argument data types.","TypeError" -"0o","invalid operation. Unable to load Electron. Ensure Electron is installed and try again.","Error" -"0p","invalid operation. A browser environment has no support for changing the current working directory.","Error" -"0q","invalid operation. The environment does not support reading from `stdin`.","Error" -"0r","unexpected error. PRNG returned NaN.","Error" -"0s","invalid argument. Third argument must be less than or equal to the first argument.","RangeError" -"0t","invalid argument. Second argument must be less than or equal to the first argument.","RangeError" -"0u","invalid operation. Cannot delete the `base` workspace.","Error" -"0v","invalid invocation. Must provide either a string containing presentation text or an options object specifying a presentation file to load.","TypeError" -"0w","invalid argument. When not provided presentation text, an options argument must specify a presentation file to load.","TypeError" -"0x","invalid invocation. Not currently in a presentation workspace. Must provide either a string or nonnegative integer which corresponds to the identifier of the presentation to be stopped.","Error" -"0y","unexpected error. Command execution terminated.","Error" -"0z","invalid operation. Cannot load a file into a REPL which has already closed.","Error" -"1A","invalid arguments. First and second arguments must be arrays having the same length.","RangeError" -"1B","invalid arguments. Subpopulation size must be less than or equal to population size.","RangeError" -"1C","invalid arguments. Number of draws must be less than or equal to population size.","RangeError" -"1D","invalid argument. First argument must contain at least one element greater than zero (i.e., the total number number of observations must be greater than zero).","Error" -"1E","invalid arguments. First and second arguments must have the same length.","Error" -"1F","invalid arguments. First and second arguments must be arrays having the same length.","Error" -"1G","invalid arguments. First and second argument must have the same length.","Error" -"1H","invalid arguments. Not enough observations. First and second arguments must contain at least four observations.","Error" -"1I","invalid arguments. The first and second arguments must have the same length.","Error" -"1J","`x` or `x - y` cannot be zero for all elements.","Error" -"1K","invalid arguments. Strided array parameters are incompatible with the provided array-like object. Linear index exceeds array bounds.","RangeError" -"1L","invalid arguments. Unable to resolve a strided array function supporting the provided array argument data types.","TypeError" -"1M","invalid arguments. Interface must accept at least one strided input and/or output array. Based on the provided arguments, `nin+nout` equals `0`.","Error" -"1N","invalid argument. Unexpected number of types. A type must be specified for each strided input and output array for each provided strided array function.","Error" -"1O","invalid argument. Fourth argument is incompatible with the number of strided input and output arrays.","Error" -"1P","invalid argument. Input array offset must be a nonnegative integer.","TypeError" -"1Q","invalid argument. Output array offset must be a nonnegative integer.","TypeError" -"1R","invalid argument. Input array must be an array-like object.","TypeError" -"1S","invalid argument. Output array must be an array-like object.","TypeError" -"1T","invalid argument. Input array has insufficient elements based on the associated stride and the number of indexed elements.","RangeError" -"1U","invalid argument. Output array has insufficient elements based on the associated stride and the number of indexed elements.","RangeError" -"1V","insufficient arguments. Must provide either an array of code points or one or more code points as separate arguments.","Error" -"1W","invalid argument. Third argument must not be an empty string.","RangeError" -"1X","invalid argument. Pad string must not be an empty string.","RangeError" -"1Y","insufficient arguments. Must provide multiple functions to compose.","Error" -"1Z","insufficient arguments. Must provide multiple functions to execute sequentially.","Error" -"1a","invalid arguments. First and last arguments must be the same length.","RangeError" -"1b","insufficient arguments. Must provide at least two objects.","Error" -"1c","invalid invocation. `this` is not a compact adjacency matrix.","TypeError" -"1d","invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.","Error" -"1e","invalid argument. The list does not contain the provided list node.","Error" -"1f","unexpected error. Unable to resolve global object.","Error" -"1g","invalid argument. The output ndarray must be writable. Cannot write to a read-only ndarray.","Error" -"1h","invalid arguments. Input and output arrays must have the same length.","RangeError" -"1i","invalid arguments. Input and output arrays must have the same number of elements (i.e., length).","RangeError" -"1j","invalid arguments. Input ndarrays must be broadcast compatible.","Error" -"1k","invalid arguments. Input arrays must have the same number of elements (i.e., length).","RangeError" -"1l","insufficient arguments. Must provide both a target object and one or more source objects.","Error" -"1m","invalid invocation. `this` is not host tuple.","TypeError" -"1n","invalid invocation. `this` is not the host tuple factory.","TypeError" -"1o","not implemented. Please post an issue on the @stdlib/stdlib issue tracker if you would like this to be implemented.","Error" -"1p","invalid argument. Second argument must have a length equal to the size of the outermost input array dimension.","RangeError" -"1q","evaluation error. Did not receive timing results.","Error" -"1r","evaluation error. Unable to retrieve evaluation results. Ensure that the provided snippet does not return prematurely.","Error" -"1s","invalid argument. Must provide a zipped array.","TypeError" -"1t","invalid argument. Array must only contain arrays.","TypeError" -"1u","invalid argument. Indices must be specified as an array.","TypeError" -"1v","invalid argument. All indices must be integers.","TypeError" -"1w","invalid argument. Must provide valid indices (i.e., an index must be on the interval [0, len], where len is the tuple length).","Error" -"1x","insufficient arguments. Must provide at least one array.","Error" -"1y","invalid argument. Must provide a username or, to get who an authenticated user is following, an access token.","Error" -"1z","invalid argument. Must provide a username or, to get a list of repositories an authenticated user has starred, an access token.","Error" -"2A","invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.","TypeError" -"2B","invalid argument. First argument must be an ArrayBuffer. Value: `%s`.","TypeError" -"2C","invalid argument. Byte offset must be a nonnegative integer. Value: `%s`.","TypeError" -"2D","invalid argument. Byte offset must be a multiple of `%u`. Value: `%u`.","RangeError" -"2E","invalid arguments. ArrayBuffer view byte length must be a multiple of %u. View byte length: `%u`.","RangeError" -"2F","invalid argument. Length must be a nonnegative integer. Value: `%s`.","TypeError" -"2G","invalid arguments. ArrayBuffer has insufficient capacity. Either decrease the array length or provide a bigger buffer. Minimum capacity: `%u`.","RangeError" -"2H","invalid argument. Second argument must be a function. Value: `%s`.","TypeError" -"2I","invalid argument. First argument must have a length which is a multiple of two. Length: `%u`.","RangeError" -"2J","invalid argument. First argument must be an array-like object or an iterable. Value: `%s`.","TypeError" -"2K","invalid argument. Must provide a nonnegative integer. Value: `%s`.","TypeError" -"2L","invalid argument. Index argument must be a nonnegative integer. Value: `%s`.","TypeError" -"2M","invalid argument. Index argument is out-of-bounds. Value: `%u`.","RangeError" -"2N","invalid argument. First argument must be either a complex number, an array-like object, or a complex number array. Value: `%s`.","TypeError" -"2O","invalid argument. First argument must be an array-like object. Value: `%s`.","TypeError" -"2P","invalid argument. Second argument must be a recognized array data type. Value: `%s`.","TypeError" -"2Q","invalid argument. Second argument must have a recognized/supported data type. Type: `%s`. Value: `%s`.","TypeError" -"2R","invalid argument. Unable to parse %s date.","Error" -"2S","invalid argument. Numeric %s date must be either a Unix or JavaScript timestamp.","Error" -"2T","invalid argument. %s date must either be a date string, Date object, Unix timestamp, or JavaScript timestamp.","TypeError" -"2U","invalid argument. Length must be a positive integer. Value: `%s`.","TypeError" -"2V","invalid argument. Options argument must be an object. Value: `%s`.","TypeError" -"2W","invalid option. `%s` option must be a string. Option: `%s`.","TypeError" -"2X","invalid option. `%s` option must be one of the following: ""%s"". Option: `%s`.","Error" -"2Y","invalid argument. Must provide a recognized data type. Value: `%s`.","TypeError" -"2Z","invalid argument. Environment lacks Symbol.iterator support. Must provide a length, typed array, or array-like object. Value: `%s`.","TypeError" -"2a","invalid argument. Must provide a length, typed array, array-like object, or an iterable. Value: `%s`.","TypeError" -"2b","invalid argument. Callback argument must be a function. Value: `%s`.","TypeError" -"2c","invalid argument. Iterator argument must be an iterator protocol-compliant object. Value: `%s`.","TypeError" -"2d","invalid argument. First argument must be a nonnegative integer. Value: `%s`.","TypeError" -"2e","invalid argument. Third argument must be a recognized data type. Value: `%s`.","TypeError" -"2f","invalid argument. First argument must be either an array, typed array, or complex typed array. Value: `%s`.","TypeError" -"2g","invalid argument. Start must be numeric. Value: `%s`.","TypeError" -"2h","invalid argument. Stop must be numeric. Value: `%s`.","TypeError" -"2i","invalid argument. Increment must be numeric. Value: `%s`.","TypeError" -"2j","invalid argument. First argument must be either a real or complex number. Value: `%s`.","TypeError" -"2k","invalid argument. Second argument must be either a real or complex number. Value: `%s`.","TypeError" -"2l","invalid argument. Third argument must be an array-like object. Value: `%s`.","TypeError" -"2m","invalid argument. Third argument must be a nonnegative integer. Value: `%s`.","TypeError" -"2n","invalid option. `%s` option must be a real or complex floating-point data type or ""generic"". Option: `%s`.","TypeError" -"2o","invalid option. `%s` option must be a boolean. Option: `%s`.","TypeError" -"2p","invalid argument. Exponent of start value must be numeric. Value: `%s`.","TypeError" -"2q","invalid argument. Exponent of stop value must be numeric. Value: `%s`.","TypeError" -"2r","invalid argument. First argument must be either an array length or an array-like object. Value: `%s`.","TypeError" -"2s","invalid argument. Must provide a typed array or ArrayBuffer. Value: `%s`.","TypeError" -"2t","invalid option. `%s` option must be a nonnegative integer. Option: `%s`.","TypeError" -"2u","invalid argument. Must provide an array-like object. Value: `%s`.","TypeError" -"2v","invalid option. `%s` option must be either `1` or `-1`. Option: `%s`.","TypeError" -"2w","invalid argument. Second argument must be either a function or an options object. Value: `%s`.","TypeError" -"2x","invalid argument. Must provide a typed array. Value: `%s`.","TypeError" -"2y","invalid argument. Second argument must be an array-like object. Value: `%s`.","TypeError" -"2z","invalid argument. Third argument must be an integer. Value: `%s`.","TypeError" -"3A","invalid argument. Key path must be a string or a key array. Value: `%s`.","TypeError" -"3B","invalid argument. Must provide a string. Value: `%s`.","TypeError" -"3C","invalid argument. Must provide a valid position (i.e., a nonnegative integer). Value: `%s`.","TypeError" -"3D","invalid argument. Must provide a valid position (i.e., within string bounds). Value: `%u`.","RangeError" -"3E","invalid argument. Second argument must be callable. Value: `%s`.","TypeError" -"3F","invalid argument. First argument must be a string. Value: `%s`.","TypeError" -"3G","invalid argument. Fourth argument must be one of the following: ""%s"". Value: `%s`.","TypeError" -"3H","invalid argument. Fifth argument must be one of the following: ""%s"". Value: `%s`.","TypeError" -"3I","invalid argument. Second argument must be either an object (except null) or a function. Value: `%s`.","TypeError" -"3J","invalid argument. Must provide a function. Value: `%s`.","TypeError" -"3K","invalid argument. Must provide either an options object or a callback function. Value: `%s`.","TypeError" -"3L","invalid argument. First argument must be an object. Value: `%s`.","TypeError" -"3M","invalid option. `%s` option must be a writable stream. Option: `%s`.","TypeError" -"3N","invalid argument. Third argument must be a function. Value: `%s`.","TypeError" -"3O","invalid option. `%s` option must be either a positive integer or `null`. Option: `%s`.","TypeError" -"3P","invalid option. `%s` option must be a positive integer. Option: `%s`.","TypeError" -"3Q","invalid argument. First argument must be a 1-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","TypeError" -"3R","invalid argument. Second argument must be a 1-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","TypeError" -"3S","invalid argument. Arrays must be the same length. First argument length: `%u`. Second argument length: `%u`.","RangeError" -"3T","invalid argument. First argument must be either an array-like object or a one-dimensional ndarray. Value: `%s`.","TypeError" -"3U","invalid argument. Second argument must be either an array-like object or a one-dimensional ndarray. Value: `%s`.","TypeError" -"3V","invalid argument. First argument must be a 1-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","TypeError" -"3W","invalid argument. Second argument must be a 1-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","TypeError" -"3X","invalid argument. Second argument must be a nonnegative integer. Value: `%s`.","TypeError" -"3Y","invalid argument. Second argument must not exceed the number of bytes in the input ArrayBuffer. Value: `%s`.","RangeError" -"3Z","invalid argument. Last argument must be a nonnegative integer. Value: `%s`.","TypeError" -"3a","invalid argument. Last argument must not exceed the number of bytes in the input ArrayBuffer. Value: `%s`.","RangeError" -"3b","invalid argument. Must provide a Buffer. Value: `%s`.","TypeError" -"3c","invalid argument. First argument must be a function. Value: `%s`.","TypeError" -"3d","invalid argument. Third argument must be a constructor function. Value: `%s`.","TypeError" -"3e","invalid argument. Real component must be a number. Value: `%s`.","TypeError" -"3f","invalid argument. Imaginary component must be a number. Value: `%s`.","TypeError" -"3g","invalid option. `%s` option must be one of the following: ""%s"". Option: `%s`.","RangeError" -"3h","invalid argument. Unsupported/unrecognized dataset name. Value: `%s`.","RangeError" -"3i","invalid option. Unrecognized `%s`. Option: `[%s]`.","RangeError" -"3j","invalid option. `%s` option must be a string or an array of strings. Option: `%s`.","TypeError" -"3k","invalid option. `%s` option must be a positive integer or an array of positive integers. Option: `%s`.","TypeError" -"3l","invalid option. `%s` option must be a positive integer array of length two. Option: `%s`.","TypeError" -"3m","invalid option. `%s` option cannot be less than 1790. Option: `%s`.","RangeError" -"3n","invalid option. `%s` option cannot be greater than 5000. Option: `%s`.","RangeError" -"3o","invalid argument. Must provide an error object. Value: `%s`.","TypeError" -"3p","invalid argument. First argument must be a valid file descriptor (i.e., nonnegative integer). Value: `%s`.","TypeError" -"3q","invalid argument. Last argument must be a function. Value: `%s`.","TypeError" -"3r","invalid argument. Must provide a valid file descriptor (i.e., a nonnegative integer). Value: `%s`.","TypeError" -"3s","invalid argument. First argument must be an array of strings. Value: `%s`.","TypeError" -"3t","invalid argument. Options argument must be either a string or an object. Value: `%s`.","TypeError" -"3u","invalid argument. Predicate function must be a function. Value: `%s`.","TypeError" -"3v","invalid argument. First argument must be an iterator. Value: `%s`.","TypeError" -"3w","invalid argument. Must provide an iterator. Value: `%s`.","TypeError" -"3x","invalid argument. Must provide an iterator protocol-compliant object. Argument: `%u`. Value: `%s`.","TypeError" -"3y","invalid argument. Must provide an iterator protocol-compliant object. Value: `%s`.","TypeError" -"3z","invalid argument. Unable to parse date string. Value: `%s`.","TypeError" -"4A","invalid argument. Second argument must be a number. Value: `%s`.","TypeError" -"4B","invalid argument. Third argument must be a number. Value: `%s`.","TypeError" -"4C","invalid argument. Hash function argument must be a function. Value: `%s`.","TypeError" -"4D","invalid option. `%s` option must be a positive number. Option: `%s`.","TypeError" -"4E","invalid argument. Third argument must be either a nonnegative integer or an object. Value: `%s`.","TypeError" -"4F","invalid arguments. All arguments must be functions. Value: `%s`.","TypeError" -"4G","invalid argument. Each iterator function, except the last iterator function, within an iterator pipeline must return an iterator. Value: `%s`.","TypeError" -"4H","invalid argument. Must provide an an iterator. Value: `%s`.","TypeError" -"4I","invalid return value. Callback function must return an integer. Value: `%s`.","TypeError" -"4J","invalid argument. Fourth argument must be a boolean. Value: `%s`.","TypeError" -"4K","invalid return value. Callback function must return a positive integer. Value: `%s`.","TypeError" -"4L","invalid argument. Fifth argument must be a callback function. Value: `%s`.","TypeError" -"4M","invalid argument. Third argument must be either an integer (starting index) or a callback function. Value: `%s`.","TypeError" -"4N","invalid argument. Fourth argument must be either an integer (ending index) or a callback function. Value: `%s`.","TypeError" -"4O","invalid argument. Unrecognized/unsupported scale function. Value: `%s`.","Error" -"4P","invalid argument. Must provide an iterator protocol-compliant object or a number. Argument: `%u`. Value: `%s`.","TypeError" -"4Q","invalid argument. First argument must be a finite number. Value: `%s`.","TypeError" -"4R","invalid option. `%s` option must be a positive finite number. Option: `%s`.","TypeError" -"4S","invalid option. `%s` option must be one of the following: ""%s"". Option: `%s`.","TypeError" -"4T","invalid option. `%s` option must be less than or equal to 79. Option: `%u`.","RangeError" -"4U","invalid option. `%s` option must be less than or equal to 77. Option: `%u`.","RangeError" -"4V","invalid argument. Must provide an argument having a supported data type. Value: `%s`.","TypeError" -"4W","invalid option. Unsupported policy for determining an output array data type. Option: `%s`.","Error" -"4X","invalid option. `%s` option must be a recognized/supported data type. Option: `%s`.","TypeError" -"4Y","invalid option. `%s` option must be a recognized/supported output array data type policy. Option: `%s`.","TypeError" -"4Z","invalid argument. Resolution table must be an object. Value: `%s`.","TypeError" -"4a","invalid argument. Resolution table `%s` field value must be either a function or null. Value: `%s`.","TypeError" -"4b","invalid argument. First argument must be a positive integer. Value: `%s`.","TypeError" -"4c","invalid argument. First argument must be a one-dimensional ndarray. Value: `%s`.","TypeError" -"4d","invalid argument. Second argument must be either +1 or -1. Value: `%s`.","TypeError" -"4e","invalid argument. First argument must be a one-dimensional ndarray of length %u. Actual length: `%u`.","TypeError" -"4f","invalid argument. First argument must be an ndarray. Value: `%s`.","TypeError" -"4g","invalid argument. First argument must be an ndarray whose last dimension is of size `%u`. Actual size: `%u`.","TypeError" -"4h","invalid argument. Second argument is incompatible with model loss function. Probability predictions are only supported when the loss function is one of the following: ""%s"". Model loss function: `%s`.","Error" -"4i","invalid argument. Second argument must be a string value equal to either ""label"", ""probability"", or ""linear"". Value: `%s`.","TypeError" -"4j","invalid argument. Attempting to scale a weight vector by a nonpositive value. This is likely due to too large a value of `eta*lambda`. Value: `%f`.","RangeError" -"4k","invalid option. `%s` option must be a nonnegative number. Option: `%s`.","TypeError" -"4l","invalid option. `%s` option must be an array-like object. Option: `%s`.","TypeError" -"4m","invalid option. First `%s` option must be one of the following: ""%s"". Option: `%s`.","TypeError" -"4n","invalid option. Second `%s` option must be a positive number. Option: `%s`.","TypeError" -"4o","invalid option. Third `%s` option must be a number. Option: `%s`.","TypeError" -"4p","invalid argument. Argument specifying number of dimensions must be a positive integer. Value: `%s`.","TypeError" -"4q","invalid argument. First argument must either be a positive integer specifying the number of clusters or a matrix containing initial centroids. Value: `%s`.","TypeError" -"4r","invalid option. First `%s` parameter option must be greater than or equal to the number of clusters. Options: `%f`.","RangeError" -"4s","invalid argument. Must provide a 1-dimensional ndarray. Value: `%s`.","TypeError" -"4t","invalid argument. Vector length must match centroid dimensions. Expected: `%u``. Actual: `%u``.","Error" -"4u","invalid argument. Output argument must be a 1-dimensional ndarray. Value: `%s`.","TypeError" -"4v","invalid argument. Must provide a 2-dimensional ndarray. Value: `%s`.","TypeError" -"4w","invalid argument. Number of matrix columns must match centroid dimensions. Expected: `%u``. Actual: `%u`.","Error" -"4x","invalid argument. Output vector length must match the number of data points. Expected: `%u`. Actual: `%u`.","Error" -"4y","invalid option. `%s` option method must be one of the following: ""%s"". Option: `%s`.","TypeError" -"4z","invalid option. First `%s` parameter option must be a positive integer. Option: `%s`.","TypeError" -"5A","invalid option. `%s` option must be a recognized data type. Option: `%s`.","TypeError" -"5B","invalid option. Data type cast is not allowed. Casting mode: `%s`. From: `%s`. To: `%s`.","Error" -"5C","invalid option. `%s` option must be a recognized order. Option: `%s`.","TypeError" -"5D","invalid option. `%s` option must be an array-like object containing nonnegative integers. Option: `%s`.","TypeError" -"5E","invalid argument. Linear index must not exceed array dimensions. Number of array elements: `%u`. Value: `%d`.","RangeError" -"5F","invalid argument. Input array cannot be broadcast to the specified shape, as the specified shape has a dimension whose size is less than the size of the corresponding dimension in the input array. Array shape: (%s). Desired shape: (%s). Dimension: %u.","Error" -"5G","invalid argument. Input array and the specified shape are broadcast incompatible. Array shape: (%s). Desired shape: (%s). Dimension: %u.","Error" -"5H","invalid argument. Specified axis is out-of-bounds. Must be on the interval: [-%u-1, %u]. Value: `%d`.","RangeError" -"5I","invalid argument. Index must be on the interval: [0, %f]. Value: `%f`.","RangeError" -"5J","invalid argument. Subscripts must not exceed array dimensions. Subscript: `%u`. Value: `%d`.","RangeError" -"5K","invalid argument. First argument must be a recognized data type. Value: `%s`.","TypeError" -"5L","invalid argument. First argument must have a recognized data type. Value: `%s`.","TypeError" -"5M","invalid arguments. Number of indices must match the number of dimensions. ndims: `%u`. nargs: `%u`.","RangeError" -"5N","invalid argument. Indices must be integer valued. Argument: `%u`. Value: `%s`.","TypeError" -"5O","invalid argument. Index must be an integer. Value: `%s`.","TypeError" -"5P","invalid argument. First argument must be a supported ndarray data type. Value: `%s`.","TypeError" -"5Q","invalid argument. Second argument must be an array-like object, typed-array-like, or a Buffer. Value: `%s`.","TypeError" -"5R","invalid argument. Second argument `get` and `set` properties must be functions. Value: `%s`.","TypeError" -"5S","invalid argument. Third argument must be an array-like object containing nonnegative integers. Value: `%s`.","TypeError" -"5T","invalid argument. Number of dimensions must not exceed %u due to stack limits. Value: `%u`.","RangeError" -"5U","invalid argument. Fourth argument must be an array-like object containing integers. Value: `%s`.","TypeError" -"5V","invalid argument. Fourth argument length must match the number of dimensions. Expected number of dimensions: `%u`. Strides length: `%u`.","RangeError" -"5W","invalid argument. Fourth argument must contain a single element equal to `0`. Value: `%d`.","RangeError" -"5X","invalid argument. Fifth argument must be a nonnegative integer. Value: `%s`.","TypeError" -"5Y","invalid argument. Sixth argument must be a supported order. Value: `%s`.","TypeError" -"5Z","invalid argument. Indices must be integer valued. Argument: `%i`. Value: `%u`.","TypeError" -"5a","invalid option. `%s` option must be a recognized mode. Option: `%s`.","TypeError" -"5b","invalid option. `%s` option must be an array containing recognized modes. Option: `%s`.","TypeError" -"5c","invalid option. Each submode must be a recognized mode. Option: `%s`.","TypeError" -"5d","invalid argument. First argument must be either a function or an array of functions. Value: `%s`.","TypeError" -"5e","invalid argument. Third argument must be an array-like object or null. Value: `%s`.","TypeError" -"5f","invalid argument. Fourth argument must be a positive integer. Value: `%s`.","TypeError" -"5g","invalid argument. Sixth argument must be a nonnegative integer. Value: `%s`.","TypeError" -"5h","invalid argument. Input array must be an ndarray-like object. Value: `%s`.","TypeError" -"5i","invalid argument. Output array must be an ndarray-like object. Value: `%s`.","TypeError" -"5j","invalid argument. Output argument must be either an array, typed array, or object. Value: `%s`.","TypeError" -"5k","invalid argument. Shape argument must be an array-like object containing nonnegative integers. Value: `%s`.","TypeError" -"5l","invalid argument. Linear index must be integer valued. Value: `%s`.","TypeError" -"5m","invalid option. `%s` option must be a supported/recognized mode. Option: `%s`.","TypeError" -"5n","invalid option. `%s` option must be a supported/recognized order. Option: `%s`.","TypeError" -"5o","invalid argument. First argument must be an array-like object containing nonnegative integers. Value: `%s`.","TypeError" -"5p","invalid argument. Number of provided subscripts must match the number of dimensions. ndims: `%u`. Number of subscripts: `%u`.","RangeError" -"5q","invalid argument. Subscripts must be integer valued. Argument: `%u`. Value: `%s`.","TypeError" -"5r","invalid option. `%s` option cannot be an empty array.","TypeError" -"5s","invalid argument. First argument must be either a nonnegative integer or an array of nonnegative integers. Value: `%s`.","TypeError" -"5t","invalid argument. First argument must be an ndarray-like object. Value: `%s`.","TypeError" -"5u","invalid option. `%s` option must either be a nonnegative integer or an array of nonnegative integers. Option: `%s`.","TypeError" -"5v","invalid option. `%s` option must be either a Buffer or a string. Option: `%s`.","TypeError" -"5w","invalid argument. Request listener must be a function. Value: `%s`.","TypeError" -"5x","invalid argument. Third argument must be a positive integer. Value: `%s`.","TypeError" -"5y","invalid argument. Number of topics must be a positive integer. Value: `%s`.","TypeError" -"5z","invalid argument. First argument must be a nonnegative integer which is less than the total number of topics. Value: `%s`.","TypeError" -"6A","invalid assignment. `%s` must be a nonnegative integer or nonnegative integer array. Value: `%s`.","TypeError" -"6B","invalid assignment. `%s` must be a nonnegative integer. Value: `%s`.","TypeError" -"6C","invalid assignment. Unrecognized/unsupported `%s`. Must be one of the following: ""%s"". Value: `%s`.","TypeError" -"6D","invalid assignment. Unrecognized/unsupported `%s`. Value: `%s`.","TypeError" -"6E","invalid assignment. `%s` must be a nonnegative integer or null. Value: `%s`.","TypeError" -"6F","invalid assignment. `%s` must be a string or null. Value: `%s`.","TypeError" -"6G","invalid argument. Must provide a supported viewer. Value: `%s`.","Error" -"6H","invalid assignment. `%s` must be a function. Value: `%s`.","TypeError" -"6I","invalid assignment. `%s` must be either null or an array. Value: `%s`.","TypeError" -"6J","invalid assignment. `%s` must be a string, function, or null. Value: `%s`.","TypeError" -"6K","invalid argument. `options` argument must be an object. Value: `%s`.","TypeError" -"6L","invalid assignment. `%s` must be a number. Value: `%s`.","TypeError" -"6M","invalid assignment. `%s` must be a number on the interval `[0,1]`. Value: `%f`.","RangeError" -"6N","invalid assignment. `%s` must be array-like. Value: `%s`.","TypeError" -"6O","invalid arguments. Must provide equal length array-like objects. x length: `%u`, y length: `%u`.","Error" -"6P","invalid assignment. `%s` must be a string or a function. Value: `%s`.","TypeError" -"6Q","invalid assignment. `%s` must be a number or a function. Value: `%s`.","TypeError" -"6R","invalid assignment. `%s` must be one of the following: ""%s"". Value: `%s`.","Error" -"6S","invalid assignment. `%s` must be a nonnegative integer or a function. Value: `%s`.","TypeError" -"6T","invalid assignment. `%s` must be a supported symbol. Symbols: ""%s"". Value: `%s`.","TypeError" -"6U","invalid argument. `options` argument must be a plain object. Value: `%s`.","TypeError" -"6V","invalid assignment. `%s` must be either a string or a string array. Value: `%s`.","TypeError" -"6W","invalid assignment. `%s` must be a string or a string array. Value: `%s`.","TypeError" -"6X","invalid assignment. `%s` must be a string or string array. Value: `%s`.","TypeError" -"6Y","invalid assignment. Unrecognized/unsupported symbol. Value: `[%s]`.","Error" -"6Z","invalid assignment. `%s` must be an array. Value: `%s`.","TypeError" -"6a","invalid assignment. `%s` must be either a finite number, Date, or null. Value: `%s`.","TypeError" -"6b","invalid assignment. `%s` must be a boolean or boolean array. Value: `%s`.","TypeError" -"6c","invalid assignment. `%s` must be either a string or string array. Value: `%s`.","TypeError" -"6d","invalid assignment. Unrecognized/unsupported orientation. A `%s` value must be one of the following: ""%s"". Value: `%s`.","TypeError" -"6e","invalid assignment. `%s` must be either a finite number or null. Value: `%s`.","TypeError" -"6f","invalid state. x and y are different lengths. x length: `%u`, y length: `%u`.","Error" -"6g","invalid state. Each `x[i]:y[i]` pair must be the same length. x[%u].length: `%u`, y[","Error" -"6h","invalid assignment. `%s` must be a positive integer or null. Value: `%s`.","TypeError" -"6i","invalid assignment. `%s` size is smaller than the number of data elements. Number of elements: `%u`. Value: `%u`.","RangeError" -"6j","invalid assignment. `%s` must be an array-like object or an ndarray. Value: `%s`.","TypeError" -"6k","invalid assignment. `%s` length exceeds maximum data buffer size. Buffer size: `%u`. Length: `%u`.","RangeError" -"6l","invalid assignment. `%s` must be a finite number or null. Value: `%s`.","TypeError" -"6m","invalid assignment. `%s` must be a finite number or null. Value: `%s.","TypeError" -"6n","invalid assignment. Must be an array or typed array. Value: `%s`.","TypeError" -"6o","invalid option. `%s` option must be an array or typed array. Option: `%s`.","TypeError" -"6p","invalid option. `%s` option must be a function. Option: `%s`.","TypeError" -"6q","invalid argument. Encoding argument must be a string. Value: `%s`.","TypeError" -"6r","invalid argument. Must provide either a string, nonnegative integer, or an options object. Value: `%s`.","TypeError" -"6s","invalid argument. First argument must be either a string or nonnegative integer. Value: `%s`.","TypeError" -"6t","invalid argument. Unable to parse mask expression. Ensure the expression is properly formatted, only uses the class letters ""u"", ""g"", ""o"", and ""a"", only uses the operators ""+"", ""-"", and ""="", and only uses the permission symbols ""r"", ""w"", and ""x"". Value: `%s`.","Error" -"6u","invalid option. `%s` option must be a pseudorandom number generator function. Option: `%s`.","TypeError" -"6v","invalid argument. First argument must be a number and not NaN. Value: `%s`.","TypeError" -"6w","invalid argument. Second argument must be a number and not NaN. Value: `%s`.","TypeError" -"6x","invalid argument. Minimum support must be less than maximum support. Value: `[%f,%f]`.","RangeError" -"6y","invalid argument. First argument must be a probability. Value: `%s`.","TypeError" -"6z","invalid option. `%s` option must be a Uint32Array. Option: `%s`.","TypeError" -"7A","invalid argument. First argument must be a positive number and not NaN. Value: `%s`.","TypeError" -"7B","invalid argument. Second argument must be a positive number and not NaN. Value: `%s`.","TypeError" -"7C","invalid argument. Third argument must be a number and not NaN. Value: `%s`.","TypeError" -"7D","invalid argument. Third argument must be less than or equal to the first argument. Value: `%u`.","RangeError" -"7E","invalid argument. Second argument must be less than or equal to the first argument. Value: `%u`.","RangeError" -"7F","invalid %s. State array has insufficient length.","RangeError" -"7G","invalid %s. State array has an incompatible schema version. Expected: `%s`. Actual: `%s`.","RangeError" -"7H","invalid %s. State array has an incompatible number of sections. Expected: `%s`. Actual: `%s`.","RangeError" -"7I","invalid %s. State array has an incompatible state length. Expected: `%u`. Actual: `%u`.","RangeError" -"7J","invalid %s. State array length is incompatible with seed section length. Expected: `%u`. Actual: `%u`.","RangeError" -"7K","invalid option. `%s` option must be an Int32Array. Option: `%s`.","TypeError" -"7L","invalid option. `%s` option must be a positive integer less than the maximum signed 32-bit integer. Option: `%u`.","RangeError" -"7M","invalid option. `%s` option must be either a positive integer less than the maximum signed 32-bit integer or an array-like object containing integer values less than the maximum signed 32-bit integer. Option: `%s`.","TypeError" -"7N","invalid argument. Must provide an Int32Array. Value: `%s`.","TypeError" -"7O","invalid %s. State array has an incompatible table length. Expected: `%s`. Actual: `%s`.","RangeError" -"7P","invalid %s. `state` array has insufficient length.","RangeError" -"7Q","invalid %s. `state` array has an incompatible schema version. Expected: %s. Actual: %s.","RangeError" -"7R","invalid %s. `state` array has an incompatible number of sections. Expected: %s. Actual: %s.","RangeError" -"7S","invalid %s. `state` array has an incompatible state length. Expected: `%u`. Actual: `%u`.","RangeError" -"7T","invalid %s. `state` array has an incompatible section length. Expected: `%u`. Actual: `%u`.","RangeError" -"7U","invalid %s. `state` array length is incompatible with seed section length. Expected: `%u`. Actual: `%u`.","RangeError" -"7V","invalid option. `%s` option must be a positive integer less than or equal to the maximum unsigned 32-bit integer. Option: `%u`.","RangeError" -"7W","invalid option. `%s` option must be either a positive integer less than or equal to the maximum unsigned 32-bit integer or an array-like object containing integer values less than or equal to the maximum unsigned 32-bit integer. Option: `%u`.","RangeError" -"7X","invalid argument. Second argument must be on the interval: (0, 1). Value: `%f`.","RangeError" -"7Y","invalid option. `%s` option cannot be undefined. Option: `%s`.","TypeError" -"7Z","invalid option. Unrecognized/unsupported PRNG. Option: `%s`.","Error" -"7a","invalid argument. First argument must be a positive number or an options object. Value: `%s`.","TypeError" -"7b","invalid arguments. Parameters must satisfy the following condition: %s. Value: `[%f, %f, %f]`.","RangeError" -"7c","invalid argument. Scale parameter must be a positive number. Value: `%s`.","TypeError" -"7d","invalid argument. Shape parameter must be a positive number. Value: `%s`.","TypeError" -"7e","invalid argument. First argument must be an integer. Value: `%s`.","TypeError" -"7f","invalid argument. Second argument must be an integer. Value: `%s`.","TypeError" -"7g","invalid argument. `n` must be less than or equal to `N`. Value: `%u`.","RangeError" -"7h","invalid argument. `K` must be less than or equal to `N`. Value: `%u`.","RangeError" -"7i","invalid argument. `%s` argument must be array-like. Value: `%s`.","TypeError" -"7j","invalid input option. `size` option must be less than or equal to the length of `x` when `replace` is `false`. Option: `%s`.","RangeError" -"7k","invalid input option. `size` option must be less than or equal to the population size when `replace` is `false`. Option: `%s`.","RangeError" -"7l","invalid option. `%s` option must be an array of probabilities that sum to one. Option: `%s`.","TypeError" -"7m","invalid argument. Minimum support must be less than maximum support. Value: `[%s,%s]`.","RangeError" -"7n","invalid option. `%s` option must be a string or null. Option: `%s`.","TypeError" -"7o","invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%s,%s]`.","RangeError" -"7p","invalid argument. Must be one of the following: ""%s"". Value: `%s`.","Error" -"7q","invalid argument. Mode must be one of the following: ""%s"". Value: `%s`.","Error" -"7r","invalid argument. Must be one of the following: ""%s"". Value: `%s`.","Error" -"7s","invalid operation. Alias already exists in the provided context. Alias: `%s`. Value: `%s`.","Error" -"7t","invalid argument. Unrecognized workspace name. Value: `%s`.","Error" -"7u","invalid operation. Cannot read from write-only variable `%s`.","Error" -"7v","Cannot assign to read only property %s of object #","Error" -"7w","invalid option. `%s` option must be a regular expression or an array-like object. Option: `%s`.","TypeError" -"7x","invalid option. `%s` option must be one of `%s`. Option: `%s`.","TypeError" -"7y","invalid argument. Must provide either an options object or a workspace name. Value: `%s`.","TypeError" -"7z","invalid argument. Must provide either a string or regular expression. Value: `%s`.","TypeError" -"8A","invalid argument. Must provide an integer. Value: `%s`.","TypeError" -"8B","invalid argument. Must provide a positive integer. Value: `%s`.","TypeError" -"8C","invalid argument. Presentation text must be a string. Value: `%s`.","TypeError" -"8D","invalid argument. REPL argument must be a REPL instance. Value: `%s`.","TypeError" -"8E","unexpected error. Unable to reload presentation. Error: %s","Error" -"8F","unexpected error. Unable to watch presentation source file. Error: %s","Error" -"8G","invalid option. `%s` option must be either a recognized string or boolean. Option: `%s`.","TypeError" -"8H","invalid option. `%s` option must be either a positive integer or null. Option: `%s`.","TypeError" -"8I","invalid operation. Alias already exists in REPL context. Alias: `%s`. Value: `%s`.","Error" -"8J","invalid argument. Third argument must be an object. Value: `%s`.","TypeError" -"8K","invalid option. `%s` option must be less than or equal to the period. Option: `%u`.","RangeError" -"8L","invalid option. `%s` option must be greater than 2. Option: `%s`.","RangeError" -"8M","invalid option. `%s` option must be an integer. Option: `%s`.","TypeError" -"8N","invalid option. `%s` option must be an positive integer. Option: `%s`.","TypeError" -"8O","invalid option. `%s` option must be less than the period. Option: `%s`.","RangeError" -"8P","invalid option. `%s` option must be a number. Option: `%s`.","TypeError" -"8Q","invalid option. `%s` option must be an positive even integer. Option: `%s`.","TypeError" -"8R","invalid argument. First argument must be a numeric array. Value: `%s`.","TypeError" -"8S","invalid argument. First argument must contain at least two elements. Value: `%s`.","RangeError" -"8T","invalid argument. Second argument must be an array. Value: `%s`.","TypeError" -"8U","invalid argument. Second argument must contain at least two unique elements. Value: `%s`.","RangeError" -"8V","invalid option. `%s` option must be a number on the interval: [0, 1]. Option: `%f`.","RangeError" -"8W","invalid option. `%s` option must be an array containing at least two unique elements. Option: `%s`.","Error" -"8X","invalid argument. Must provide array-like arguments. Value: `%s`.","TypeError" -"8Y","invalid argument. Supplied arrays cannot be empty. Value: `%s`.","Error" -"8Z","invalid option. `%s` option must be an array. Option: `%s`.","TypeError" -"8a","invalid argument. Minimum support must be a number. Value: `%s`.","TypeError" -"8b","invalid argument. Maximum support must be a number. Value: `%s`.","TypeError" -"8c","invalid arguments. Minimum support must be less than maximum support. Value: `%f, %f`.","RangeError" -"8d","invalid assignment. Must be a number. Value: `%s`.","TypeError" -"8e","invalid assignment. Must be less than %f. Value: `%f`.","RangeError" -"8f","invalid assignment. Must be greater than %f. Value: `%f`.","RangeError" -"8g","invalid argument. Mean parameter `p` must be a probability. Value: `%s`.","TypeError" -"8h","invalid assignment. Must be a probability. Value: `%s`.","TypeError" -"8i","invalid argument. First shape parameter must be a positive number. Value: `%s`.","TypeError" -"8j","invalid argument. Second shape parameter must be a positive number. Value: `%s`.","TypeError" -"8k","invalid assignment. Must be a positive number. Value: `%s`.","TypeError" -"8l","invalid argument. Number of trials must be a positive integer. Value: `%s`.","TypeError" -"8m","invalid argument. Success probability must be a number between 0 and 1. Value: `%s`.","TypeError" -"8n","invalid assignment. Must be a positive integer. Value: `%s`.","TypeError" -"8o","invalid assignment. Must be a number on the interval: [0, 1]. Value: `%s`.","TypeError" -"8p","invalid argument. Location parameter must be a number. Value: `%s`.","TypeError" -"8q","invalid argument. Rate parameter must be a positive number. Value: `%s`.","TypeError" -"8r","invalid argument. Mean parameter `%s` must be a number. Value: `%s`.","TypeError" -"8s","invalid argument. Minimum support must be an integer. Value: `%s`.","TypeError" -"8t","invalid argument. Maximum support must be an integer. Value: `%s`.","TypeError" -"8u","invalid arguments. Minimum support must be less than or equal to maximum support. Value: `%d, %d`.","RangeError" -"8v","invalid assignment. Must be an integer. Value: `%s`.","TypeError" -"8w","invalid assignment. Must be less than or equal to %u. Value: `%d`.","RangeError" -"8x","invalid assignment. Must be greater than or equal to %u. Value: `%s`.","RangeError" -"8y","invalid argument. Shape parameter must be a positive integer. Value: `%s`.","TypeError" -"8z","invalid argument. Numerator degrees of freedom must be a positive number. Value: `%s`.","TypeError" -"9A","invalid argument. Mean parameter `lambda` must be a positive number. Value: `%s`.","TypeError" -"9B","invalid argument. Mode must be a number. Value: `%s`.","TypeError" -"9C","invalid arguments. Parameters must satisfy the following condition: %s. a: `%f`. b: `%f`. c: `%f`.","RangeError" -"9D","invalid assignment. Must be less than or equal to both the maximum support and the mode. Value: `%f`.","RangeError" -"9E","invalid assignment. Must be greater than or equal to both the minimum support and the mode. Value: `%f`.","RangeError" -"9F","invalid assignment. Must be greater than or equal to the minimum support and less than or equal to the maximum support. Value: `%f`.","RangeError" -"9G","invalid argument. An array argument must contain two elements. Value: `%s`.","Error" -"9H","invalid argument. Must provide a nonnegative integer or a two-element array. Value: `%s`.","TypeError" -"9I","invalid arguments. Number of successes cannot be larger than the total number of observations. x: `%u`. n: `%u`.","TypeError" -"9J","invalid option. `%s` option must be a probability. Option: `%f`.","RangeError" -"9K","invalid argument. Unsupported/unrecognized distribution name. Value: `%s`.","Error" -"9L","invalid argument. First argument must contain nonnegative integers. Index: `%u`. Value: `%s`.","TypeError" -"9M","invalid argument. Probability mass function (PMF) arguments must be numbers. Argument: `%u`. Value: `%s`.","TypeError" -"9N","invalid argument. Second argument must be either an array-like object (or one-dimensional ndarray) of probabilities summing to one, an array-like object (or one-dimensional ndarray) of expected frequencies, or a discrete probability distribution name. Value: `%s`.","TypeError" -"9O","invalid argument. Second argument must only contain numbers. Index: `%u`. Value: `%s`.","TypeError" -"9P","invalid argument. Second argument must only contain nonnegative numbers. Index: `%u`. Value: `%d`.","TypeError" -"9Q","invalid option. `%s` option must be a number on the interval: [0, 1]. Value: `%s`.","RangeError" -"9R","invalid argument. First argument must be an array of arrays or ndarray-like object with dimension two. Value: `%s`.","TypeError" -"9S","invalid argument. First argument must contain nonnegative integers. Value: `%s`.","TypeError" -"9T","invalid argument. First argument must either specify the order of the covariance matrix or be a square 2-dimensional ndarray for storing the covariance matrix. Value: `%s`.","TypeError" -"9U","invalid argument. Second argument must be a 1-dimensional ndarray. Value: `%s`.","TypeError" -"9V","invalid argument. The number of elements (means) in the second argument must match covariance matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"9W","invalid argument. Vector length must match covariance matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"9X","invalid argument. Must provide a number. Value: `%s`.","TypeError" -"9Y","invalid argument. Must provide a nonnegative number. Value: `%s`.","TypeError" -"9Z","invalid argument. Must provide a nonnegative number on the interval [0,1]. Value: `%f`.","RangeError" -"9a","invalid argument. Output argument must be an array-like object. Value: `%s`.","TypeError" -"9b","invalid argument. Window size must be a positive integer. Value: `%s`.","TypeError" -"9c","invalid argument. Window size must be greater than or equal to 3. Value: `%s`.","RangeError" -"9d","invalid option. `%s` option must be on the interval [0,1]. Option: `%f`.","RangeError" -"9e","invalid argument. First argument must either specify the order of the correlation distance matrix or be a square 2-dimensional ndarray for storing the correlation distance matrix. Value: `%s`.","TypeError" -"9f","invalid argument. The number of elements (means) in the second argument must match correlation distance matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"9g","invalid argument. Vector length must match correlation matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"9h","invalid argument. Vector length must match correlation distance matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"9i","invalid argument. First argument must either specify the order of the correlation matrix or be a square 2-dimensional ndarray for storing the correlation matrix. Value: `%s`.","TypeError" -"9j","invalid argument. Unsupported/unrecognized kernel. Value: `%s`.","Error" -"9k","invalid argument. Second argument must be a numeric array. Value: `%s`.","TypeError" -"9l","invalid option. Lower bound `%s` must be strictly less than the upper bound `%s`.","RangeError" -"9m","invalid option. `%s` option must be an array of positive numbers. Option: `%s`.","TypeError" -"9n","invalid option. `%s` option must be an array of length two. Option: `%s`.","TypeError" -"9o","invalid option. `%s` option must be a string denoting a known kernel function or a custom function. Option: `%s`.","TypeError" -"9p","invalid arguments. First argument and `%s` must be arrays having the same length.","RangeError" -"9q","invalid invocation. Incorrect number of arguments. Must provide at least two array-like arguments. Value: `%s`.","Error" -"9r","invalid option. `%s` must be a number on the interval: [0, 1]. Value: `%f`.","RangeError" -"9s","invalid argument. First argument must be a typed array or number array. Value: `%s`.","TypeError" -"9t","invalid argument. Second argument must be either a CDF function or a string. Value: `%s`.","TypeError" -"9u","invalid argument. Distribution parameter must be a number. Value: `%s`.","TypeError" -"9v","invalid option. `%s` option must contain at least two unique elements. Value: `%s`.","Error" -"9w","invalid argument. Provided arrays cannot be empty. Value: `%s`.","Error" -"9x","invalid argument. First argument must be an array of probabilities. Value: `%s`.","TypeError" -"9y","invalid argument. When specified, `%s` arguments must contain at least a length of %u. Value: `%u`.","RangeError" -"9z","invalid argument. Second argument must be one of the following: %s. Value: `%s`.","Error" -"A0","invalid option. `%s` option must be a number in `[0,1]`. Option: `%s`.","TypeError" -"A1","invalid option. `%s` option must be a number on the interval: [-1, 1]. Option: `%s`.","TypeError" -"A2","invalid argument. First argument must contain at least two elements. Value: `%s`.","Error" -"A3","invalid argument. Second argument must be either a numeric array or an options object. Value: `%s`.","TypeError" -"A4","invalid option. `%s` option must be either `equal` or `unequal`. Option: `%s`.","Error" -"A5","invalid argument. `%s` argument must be a numeric array. Value: `%s`.","TypeError" -"A6","invalid option. `%s` option must be one of the following: %s. Option: `%s`.","Error" -"A7","invalid argument. Third argument must be a positive number. Value: `%s`.","TypeError" -"A8","invalid argument. Fourth argument must be a positive number. Value: `%s`.","TypeError" -"A9","invalid operation. Serialization function must return a string or Buffer. Value: `%s`.","Error" -"AA","invalid argument. In binary mode, a provided value must be a string, Buffer, or Uint8Array. Value: `%s`.","TypeError" -"AB","invalid option. `%s` option must be either a string or a regular expression. Option: `%s`.","TypeError" -"AC","invalid argument. First input array offset must be a nonnegative integer. Value: `%s`.","TypeError" -"AD","invalid argument. Second input array offset must be a nonnegative integer. Value: `%s`.","TypeError" -"AE","invalid argument. Output array offset must be a nonnegative integer. Value: `%s`.","TypeError" -"AF","invalid argument. Must provided recognized data types. Unable to resolve a data type string. Value: `%s`.","TypeError" -"AG","invalid argument. Input array offset must be a nonnegative integer. Value: `%s`.","TypeError" -"AH","invalid argument. Input array stride must be an integer. Value: `%s`.","TypeError" -"AI","invalid argument. Output array stride must be an integer. Value: `%s`.","TypeError" -"AJ","invalid option. `%s` option must be an array of strings. Option: `%s`.","TypeError" -"AK","invalid argument. Must provide a valid position (i.e., within string bounds). Value: `%s`.","RangeError" -"AL","invalid argument. Third argument must be a boolean. Value: `%s`.","TypeError" -"AM","invalid argument. Must provide valid code points (i.e., nonnegative integers). Value: `%s`.","TypeError" -"AN","invalid argument. Must provide a valid code point (cannot exceed max). Value: `%s`.","RangeError" -"AO","invalid argument. Third argument must be a string. Value: `%s`.","TypeError" -"AP","invalid argument. Output string length exceeds maximum allowed string length. Value: `%u`.","RangeError" -"AQ","invalid argument. Third argument must be a string or an array of strings. Value: `%s`.","TypeError" -"AR","invalid argument. At least one padding option must have a length greater than 0. Left padding: `%s`. Right padding: `%s`.","RangeError" -"AS","invalid argument. Second argument must be an array of strings. Value: `%s`.","TypeError" -"AT","invalid argument. Second argument must be a string or regular expression. Value: `%s`.","TypeError" -"AU","invalid argument. Third argument must be a string or replacement function. Value: `%s`.","TypeError" -"AV","invalid argument. Must provide a string or an array of strings. Value: `%s`.","TypeError" -"AW","invalid argument. If only providing a single argument, must provide a Date object. Value: `%s`.","TypeError" -"AX","invalid argument. First argument must be either a string or integer. Value: `%s`.","TypeError" -"AY","invalid argument. Day number must be on the interval: `[1, %u]`. Value: `%d`.","RangeError" -"AZ","invalid argument. First argument must be either a string, integer, or Date object. Value: `%s`.","TypeError" -"Aa","invalid argument. An integer month value must be on the interval: [1, 12]. Value: `%s`.","RangeError" -"Ab","invalid argument. Must provide a recognized month. Value: `%s`.","Error" -"Ac","invalid argument. Must provide either an integer or a `Date` object. Value: `%s`.","TypeError" -"Ad","invalid argument. Must provide either a string, integer, or Date object. Value: `%s`.","TypeError" -"Ae","invalid argument. Must provide an array of nonnegative integers. Value: `%s`.","TypeError" -"Af","invalid argument. Input array must contain two elements. Value: `%s`.","RangeError" -"Ag","invalid argument. Must provide a collection. Value: `%s`.","TypeError" -"Ah","invalid argument. First argument must be a collection. Value: `%s`.","TypeError" -"Ai","invalid argument. First argument must be either an array, typed array, or an array-like object. Value: `%s`.","TypeError" -"Aj","invalid argument. All arguments must be functions. Value: `%s`.","TypeError" -"Ak","invalid argument. Number of function invocations must be a nonnegative integer. Value: `%s`.","TypeError" -"Al","invalid argument. First argument must be an array of functions. Value: `%s`.","TypeError" -"Am","invalid argument. Last argument must be a collection. Value: `%s`.","TypeError" -"An","invalid argument. Must provide either a valid buffer size (i.e., a positive integer) or an array-like object which can serve as the underlying buffer. Value: `%s`.","TypeError" -"Ao","invalid argument. An iterator must return an array-like object containing vertices. Value: `%s`.","TypeError" -"Ap","invalid argument. Callback must return an array-like object containing vertices. Value: `%s`.","TypeError" -"Aq","invalid argument. Callback must return an array-like object. Value: `%s`.","TypeError" -"Ar","invalid argument. Each element of the adjacency list must be an array-like object. Value: `%s`.","TypeError" -"As","invalid argument. Each element of the edge list must be an array-like object. Value: `%s`.","TypeError" -"At","invalid argument. Second argument must be an array-like object or an iterable. Value: `%s`.","TypeError" -"Au","invalid argument. First argument exceeds matrix dimensions. Value: `%u`.","RangeError" -"Av","invalid argument. Second argument exceeds matrix dimensions. Value: `%u`.","RangeError" -"Aw","invalid argument. Vertex cannot exceed matrix dimensions. Value: `%u`.","RangeError" -"Ax","invalid argument. Second argument must be a recognized output path convention. Value: `%s`.","Error" -"Ay","invalid argument. Cannot convert Windows extended-length paths to POSIX paths. Value: `%s`.","Error" -"Az","invalid argument. Arity argument must be a positive integer. Value: `%s`.","TypeError" -"B0","invalid argument. Property descriptor must be an object. Value: `%s`.","TypeError" -"B1","invalid argument. The `value` property of the property descriptor must be a function. Value: `%s`.","TypeError" -"B2","invalid argument. Second argument must be an object of property descriptors. Value: `%s`.","TypeError" -"B3","invalid argument. Path must be a string. Value: `%s`.","TypeError" -"B4","invalid argument. Third argument must be a recognized location. Value: `%s`.","Error" -"B5","invalid argument. Must provide a recognized iteration direction. Value: `%s`.","Error" -"B6","invalid argument. Must provide an object-like value. Value: `%s`.","TypeError" -"B7","invalid argument. Must provide a regular expression string. Value: `%s`.","TypeError" -"B8","invalid argument. Filename must be a string. Value: `%s`.","TypeError" -"B9","invalid argument. First argument must be an array of positive integers. Value: `%s`.","TypeError" -"BA","invalid argument. First argument must be object-like. Value: `%s`.","TypeError" -"BB","invalid argument. Must provide an array of arrays. Value: `%s`.","TypeError" -"BC","invalid argument. Must provide a boolean. Value: `%s`.","TypeError" -"BD","invalid argument. Second argument must have a prototype from which another object can inherit. Value: `%s`.","TypeError" -"BE","invalid argument. A provided constructor must be either an object (except null) or a function. Value: `%s`.","TypeError" -"BF","invalid argument. If the input array is an ndarray, the output array must also be an ndarray. Value: `%s`.","TypeError" -"BG","invalid argument. If the input array is an array-like object, the output array must also be an array-like object. Value: `%s`.","TypeError" -"BH","invalid argument. First argument must be an array-like object or an ndarray. Value: `%s`.","TypeError" -"BI","invalid argument. If the first input array is an ndarray, the second input array must also be an ndarray. Value: `%s`.","TypeError" -"BJ","invalid argument. If the input arrays are ndarrays, the output array must also be an ndarray. Value: `%s`.","TypeError" -"BK","invalid argument. If the first input array is an array-like object, the second input array must also be an array-like object. Value: `%s`.","TypeError" -"BL","invalid argument. If the input arrays are array-like objects, the output array must also be an array-like object. Value: `%s`.","TypeError" -"BM","invalid argument. First argument must be an array-like object containing array-like objects. Index: `%u`. Value: `%s`.","TypeError" -"BN","invalid argument. First argument must be a three-dimensional nested array. Index: `%u`. Value: `%s`.","TypeError" -"BO","invalid argument. First argument must be a four-dimensional nested array. Index: `%u`. Value: `%s`.","TypeError" -"BP","invalid argument. First argument must be a four-dimensional nested array. Indices: (%u, %u). Value: `%s`.","TypeError" -"BQ","invalid argument. First argument must be a four-dimensional nested array. Indices: (%u, %u, %u). Value: `%s`.","TypeError" -"BR","invalid argument. First argument must be a five-dimensional nested array. Index: `%u`. Value: `%s`.","TypeError" -"BS","invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u). Value: `%s`.","TypeError" -"BT","invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u, %u). Value: `%s`.","TypeError" -"BU","invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u, %u, %u). Value: `%s`.","TypeError" -"BV","invalid argument. A merge source must be an object. Value: `%s`.","TypeError" -"BW","invalid option. `%s` option must be either a boolean or a function. Option: `%s`.","TypeError" -"BX","invalid argument. Source argument must be an object. Value: `%s`.","TypeError" -"BY","invalid argument. Target argument must be an object. Value: `%s`.","TypeError" -"BZ","invalid argument. Must provide an array of strings. Value: `%s`.","TypeError" -"Ba","invalid argument. Field names must be distinct. Value: `%s`.","TypeError" -"Bb","invalid argument. Provided field name is reserved. Name: `%s`.","Error" -"Bc","invalid arguments. Arguments are incompatible with the number of tuple fields. Number of fields: `%u`. Number of data elements: `%u`.","RangeError" -"Bd","invalid argument. Source is incompatible with the number of tuple fields. Number of fields: `%u`. Source length: `%u`.","RangeError" -"Be","invalid invocation. Number of arguments is incompatible with the number of tuple fields. Number of fields: `%u`. Number of arguments: `%u`.","RangeError" -"Bf","invalid option. `%s` option must be a recognized data type. Option: `%s`.","Error" -"Bg","invalid argument. Second argument must be either a string or an array of strings. Value: `%s`.","TypeError" -"Bh","invalid argument. Must provide a valid URI. Value: `%s`.","TypeError" -"Bi","unexpected error. Child process failed with exit code: `%u`.","Error" -"Bj","unexpected error. Child process failed due to termination signal: `%s`.","Error" -"Bk","invalid argument. Reviver argument must be a function. Value: `%s`.","TypeError" -"Bl","invalid argument. Second argument must be an array-like object containing nonnegative integers. Value: `%s`.","TypeError" -"Bm","invalid argument. Must provide either an array, typed array, or an array-like object. Value: `%s`.","TypeError" -"Bn","invalid argument. Must provide a recognized type. Value: `%s`.","TypeError" -"Bo","invalid argument. Second argument must be an array containing only nonnegative integers. Value: `%s`.","TypeError" -"Bp","invalid invocation. Unexpected number of input arguments. Expected: `%u`. Actual: `%u`.","Error" -"Bq","evaluation error. Encountered an error when evaluating snippet. %s","Error" -"Br","invalid option. `%s` option must be a positive integer or null. Option: `%s`.","TypeError" -"Bs","insufficient arguments. Expected %u argument(s) and only received %u argument(s).","Error" -"Bt","invalid invocation. The configured arity exceeds the number of possible curried function invocations. Expected: %u. Actual: %u.","Error" -"Bu","invalid invocation. Number of arguments exceeds the number of possible curried function invocations. Expected: `%u`. Actual: `%u`.","Error" -"Bv","invalid invocation. The configured arity exceeds the number of possible curried function invocations. Expected: `%u`. Actual: `%u`.","Error" -"Bw","invalid argument. Must provide array arguments. Value: `%s`.","TypeError" -"Bx","invalid argument. Last argument must be either an array or an options object. Value: `%s`.","TypeError" -"By","invalid argument. Repository slug must be a string. Value: `%s`.","TypeError" -"Bz","invalid argument. Issue title must be a string. Value: `%s`.","TypeError" -"C0","invalid option. `%s` must be one of the following: ""%s"". Option: `%s`.","Error" -"C1","invalid argument. Repository name must be a string. Value: `%s`.","TypeError" -"C2","invalid option. `%s` option must be a valid URI. Option: `%s`.","TypeError" -"C3","invalid option. `%s` option must be a 20-character string. Option: `%s`.","TypeError" -"C4","invalid option. `%s` option must be a 40-character string. Option: `%s`.","TypeError" -"C5","invalid argument. Token id must be a nonnegative integer. Value: `%s`.","TypeError" -"C6","invalid argument. Workflow identifier must be a string. Value: `%s`.","TypeError" -"C7","invalid option. `%s` option must be an object of input key-value pairs. Option: `%s`.","TypeError" -"C8","invalid option. `%s` option must be a positive integer or ""last"". Option: `%s`.","TypeError" -"C9","invalid option. `%s` organization name option must be a string. Option: `%s`.","TypeError" -"CA","invalid option. Unknown method. Option: `%s`.","TypeError" -"CB","invalid option. Unrecognized `%s` option. Must be one of the following: ""%s"". Option: `%s`.","Error" -"CC","invalid argument. Repository slug must consist of an owner and a repository (e.g., ""stdlib-js/utils""). Value: `%s`.","Error" -"CD","invalid argument. Topics argument must be an array of strings. Value: `%s`.","TypeError" -"CE","invalid option. `%s` option must be one of the following: ""%s"" or ""%s"". Option: `%s`.","TypeError" -"CF","invalid argument. Must provide a supported license SPDX identifier. Value: `%s`.","Error" -"CG","invalid argument. Must provide a supported file type. Value: `%s`.","Error" -"CH","invalid argument. First argument must be either a string or Buffer. Value: `%s`.","TypeError" -"CI","invalid argument. Second argument must be either a string or Buffer. Value: `%s`.","TypeError" -"CJ","invalid argument. A header object must map each filename extension to a license header string. `%s: %s`. Value: `%s`.","TypeError" -"CK","invalid argument. Second argument must be either a string or an object whose keys are filename extensions and whose values are header strings. Value: `%s`.","TypeError" -"CL","invalid argument. Second argument must be either a string, Buffer, or regular expression. Value: `%s`.","TypeError" -"CM","invalid argument. A header object must map each filename extension to a license header string or regular expression. `%s: %s`. Value: `%s`.","TypeError" -"CN","invalid argument. Second argument must be either a string, a regular expression, or an object whose keys are filename extensions and whose values are header strings or regular expressions. Value: `%s`.","TypeError" -"CO","invalid argument. Third argument must be either a string or Buffer. Value: `%s`.","TypeError" -"CP","invalid argument. Third argument must be either a string or an object whose keys are filename extensions and whose values are header strings. Value: `%s`.","TypeError" -"CQ","invalid argument. Database already contains an entry for the provided URI: `%s`.","Error" -"CR","invalid argument. Database already contains an entry for the provided id: `%s`.","Error" -"CS","invalid argument. First argument must be a URI. Value: `%s`.","TypeError" -"CT","invalid argument. Second argument must be either a string or regular expression. Value: `%s`.","TypeError" -"CU","invalid option. A `%s` option object must map each filename extension to a license header string or regular expression. `%s: %s`. Value: `%s`.","TypeError" -"CV","invalid option. `%s` option must be either a string, a regular expression, or an object whose keys are filename extensions and whose values are header strings or regular expressions. Option: `%s`.","TypeError" -"CW","invalid option. `%s` option must end with ""package.json"". Option: `%s`.","Error" -"CX","invalid argument. Last argument must be a callback function. Value: `%s`.","TypeError" -"CY","invalid option. `%s` option must be an array of package names. Option: `%s`.","TypeError" -"CZ","invalid argument. Version argument must be a string. Value: `%s`.","TypeError" -"Ca","invalid argument. Must provide either a string or a Buffer. Value: `%s`.","TypeError" -"Cb","invalid argument. Must provide either a string or Buffer. Value: `%s`.","TypeError" -"Cc","invalid argument. First argument must be either a string or array of strings. Value: `%s`.","TypeError" -"Cd","invalid option. `%s` option must be an object. Option: `%s`.","TypeError" -"Ce","unexpected error. File does not exist. Unable to resolve file: %s.","Error" -"Cf","invalid argument. Must provide either a string or an array of strings. Value: `%s`.","TypeError" -"Cg","invalid argument. Must provide either a string or an array of strings. Value: `%s`. Index: `%u`.","TypeError" -"Ch","unexpected error. Failed to sort packages. Detected the following dependency chain containing a cycle: `%s`.","Error" -"Ci","invalid node. Equation comments must have a valid label. Node: `%s`.","Error" -"Cj","invalid node. Equation comments must have valid alternate text. Node: `%s`.","Error" -"Ck","invalid node. Equation comments must have valid raw equation text. Node: `%s`.","Error" -"Cl","invalid node. Invalid equation comment. Ensure that the Markdown file includes both starting and ending equation comments. Node: `%s`.","Error" -"Cm","invalid node. Equation element must have a valid label. Node: `%s`.","Error" -"Cn","unexpected error. Code block configuration settings should be provided as comma-separated `key:value` pairs (e.g., `foo:true, bar:""string"", baz:[""error"",2]`). Value: `%s`.","Error" -"Co","unexpected error. Code block configuration values should be parseable as JSON. Value: `%s`.","Error" -"Cp","unexpected error. Encountered an error when executing code block. File: `%s`. Message: `%s`.","Error" -"Cq","unexpected error. Expected code block to throw an exception. File: `%s`.","Error" -"Cr","invalid node. Ensure that the Markdown file includes both a starting `
` and closing `
\n\n`. Node: `%s`.","Error" -"Cs","invalid node. Equation comments must have valid equation text. Node: `%s`.","Error" -"Ct","invalid node. Equation comments must have valid labels. Node: `%s`.","Error" -"Cu","invalid option. `%s` option must begin with ""@stdlib/"". Option: `%s`.","Error" -"Cv","invalid argument. First argument must be a list of file paths. Value: `%s`.","TypeError" -"Cw","invalid arguments. Subpopulation size must be less than or equal to the population size.","RangeError" -"Cx","invalid arguments. Number of draws must be less than or equal to the population size.","RangeError" -"Cy","invalid arguments. Fourth argument is not compatible with the number of input and output ndarrays.","Error" -"Cz","invalid arguments. Input buffer is incompatible with the specified meta data. Ensure that the offset is valid with regard to the strides array and that the buffer has enough elements to satisfy the desired array shape.","Error" -"D0","invalid arguments. Length of the first argument is incompatible with the second and third arguments.","RangeError" -"D1","invalid argument. Provided collections must have the same length.","RangeError" -"D2","invalid argument. First argument must be an array-like object containing nonnegative integers.","TypeError" -"D3","invalid arguments. Input arrays must have the same length.","RangeError" -"D4","invalid argument. Must provide valid indices (i.e., must be a nonnegative integer less than or equal to the tuple length).","Error" -"D5","not implemented. Please post an issue on the @stdlib/stdlib issue tracker if you would like this to be implemented. https://github.com/stdlib-js/stdlib/issues/new/choose","Error" -"D6","invalid operation. Parser is unable to parse new chunks, as the parser has been closed. To parse new chunks, create a new parser instance.","Error" -"D7","invalid operation. Parser is in an unrecoverable error state. To parse new chunks, create a new parser instance.","Error" -"D8","invalid argument. First argument must be a one-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","TypeError" -"D9","invalid argument. Second argument must be a one-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","TypeError" -"DA","invalid argument. First argument must be a one-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","TypeError" -"DB","invalid argument. Second argument must be a one-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","TypeError" -"DC","invalid assignment. `%s` size is less than the number of data elements. Number of elements: `%u`. Value: `%u`.","RangeError" -"DD","invalid assignment. `%s` must be a string or an array of strings. Value: `%s`.","TypeError" -"DE","invalid assignment. `%s` must be a number or an array of numbers. Value: `%s`.","TypeError" -"DF","invalid assignment. `%s` must be a nonnegative integer or an array of nonnegative integers. Value: `%s`.","TypeError" -"DG","invalid assignment. `%s` must be a finite number, Date, or null. Value: `%s`.","TypeError" -"DH","invalid assignment. `%s` must be a boolean or an array of booleans. Value: `%s`.","TypeError" -"DI","invalid assignment. `%s` must be a number or null. Value: `%s`.","TypeError" -"DJ","invalid assignment. `%s` must be an array of strings or an empty array. Value: `%s`.","TypeError" -"DK","invalid state. x and y are different lengths. x length: `%u`. y length: `%u`.","Error" -"DL","invalid state. Each `x[i]:y[i]` pair must be the same length. x[%u].length: `%u`, y[%u].length: `%u`.","Error" -"DM","invalid assignment. `%s` must be a number on the interval: [0, 1]. Value: `%f`.","RangeError" -"DN","invalid assignment. `%s` must be null or an array. Value: `%s`.","TypeError" -"DO","invalid arguments. Must provide equal length array-like objects. x length: `%u`. y length: `%u`.","Error" -"DP","invalid argument. The number of comparisons must be greater or equal to the number of p-values to be adjusted. Value: `%u`.","RangeError" -"DQ","invalid argument. Second argument must be one of the following: ""%s"". Value: `%s`.","Error" -"DR","invalid option. `%s` option must be a number on the interval: [0, 1]. Option: `%s`.","TypeError" -"DS","invalid argument. First argument must contain nonnegative integers. Indices: (%s). Value: `%s`.","TypeError" -"DT","invalid argument. First argument must be an array of arrays or a two-dimensional ndarray-like object. Number of input array dimensions: %u.","TypeError" -"DU","invalid argument. First argument must be an array of arrays or a two-dimensional ndarray-like object. Value: `%s`.","TypeError" -"DV","invalid arguments. Minimum support must be less than maximum support. Value: `(%f, %f)`.","RangeError" -"DW","invalid arguments. Minimum support must be less than or equal to maximum support. Value: `(%d, %d)`.","RangeError" -"DX","invalid argument. Mean parameter must be a positive number. Value: `%s`.","TypeError" -"DY","invalid argument. Mean parameter must be a probability. Value: `%s`.","TypeError" -"DZ","invalid option. `%s` option must be on the interval: [0, 1]. Option: `%f`.","RangeError" -"Da","invalid argument. Must provide a nonnegative number on the interval: [0, 1]. Value: `%f`.","RangeError" -"Db","invalid argument. First argument must either specify the order of the covariance matrix or be a square two-dimensional ndarray for storing the covariance matrix. Value: `%s`.","TypeError" -"Dc","invalid argument. Second argument must be a one-dimensional ndarray. Value: `%s`.","TypeError" -"Dd","invalid argument. Must provide a one-dimensional ndarray. Value: `%s`.","TypeError" -"De","invalid argument. First argument must either specify the order of the correlation distance matrix or be a square two-dimensional ndarray for storing the correlation distance matrix. Value: `%s`.","TypeError" -"Df","invalid argument. First argument must either specify the order of the correlation matrix or be a square two-dimensional ndarray for storing the correlation matrix. Value: `%s`.","TypeError" -"Dg","invalid argument. Input array must be an array-like object. Value: `%s`.","TypeError" -"Dh","invalid argument. Output array must be an array-like object. Value: `%s`.","TypeError" -"Di","invalid argument. Mask array offset must be a nonnegative integer. Value: `%s`.","TypeError" -"Dj","invalid argument. Must provide recognized data types. Unable to resolve a data type string. Value: `%s`.","TypeError" -"Dk","invalid option. `%s` option must be one of the following: ['%s']. Option: `%s`.","TypeError" -"Dl","invalid argument. Database already contains an entry for the provided URI. Value: `%s`.","Error" -"Dm","invalid argument. Database already contains an entry for the provided id. Value: `%s`.","Error" -"Dn","invalid argument. First argument must be an array of objects. Value: `%s`.","TypeError" -"Do","unexpected error. File does not exist. Unable to resolve file: `%s`.","Error" -"Dp","invalid argument. First argument must be either a string or an array of strings. Value: `%s`.","TypeError" -"Dq","invalid argument. First argument must be either a string or an array of strings. Value: `%s`. Index: `%u`.","TypeError" -"Dr","invalid argument. Must provide either an options object or a function. Value: `%s`.","TypeError" -"Ds","invalid option. `%s` option must be a nonnegative integer or an array of nonnegative integers. Option: `%s`.","TypeError" -"Dt","invalid argument. Fourth argument must contain a single element equal to 0. Value: `%d`.","RangeError" -"Du","invalid argument. Indices must be integer valued. Argument: `%i`. Value: `%s`.","TypeError" -"Dv","invalid argument. Must provide an ndarray. Value: `%s`.","TypeError" -"Dw","invalid argument. Second argument must be a supported data type policy. Value: `%s`.","TypeError" -"Dx","invalid argument. Must provide either an integer or a Date object. Value: `%s`.","TypeError" -"Dy","invalid argument. Must provide a valid duration string. Value: `%s`.","TypeError" -"Dz","invalid argument. Day number must be on the interval: [1, %u]. Value: `%d`.","RangeError" -"E0","invalid argument. First argument must be a string or integer. Value: `%s`.","TypeError" -"E1","invalid option. `%s` option must be one of the following: ""%s"". Value: `%s`.","TypeError" -"E2","invalid argument. Third argument must be either an integer (starting index) or a function. Value: `%s`.","TypeError" -"E3","invalid argument. Fourth argument must be either an integer (ending index) or a function. Value: `%s`.","TypeError" -"E4","invalid argument. Second argument must be a valid position (i.e., be within string bounds). Value: `%d`.","RangeError" -"E5","invalid argument. Must provide a valid code point (i.e., cannot exceed %u). Value: `%s`.","RangeError" -"E6","invalid argument. First argument must be astring. Value: `%s`.","TypeError" -"E7","invalid argument. Second argument must be either an integer (starting index) or a function. Value: `%s`.","TypeError" -"E8","invalid argument. Third argument must be either an integer (ending index) or a function. Value: `%s`.","TypeError" -"E9","invalid argument. ArrayBuffer byte length must be a multiple of %u. Byte length: `%u`.","RangeError" -"EA","invalid argument. Byte offset must be a multiple of %u. Value: `%u`.","RangeError" -"EB","invalid argument. First argument must have a length which is a multiple of %u. Length: `%u`.","RangeError" -"EC","invalid argument. Second argument must be a supported data type. Value: `%s`.","TypeError" -"ED","invalid argument. First argument must be one of the following data types: ""%s"". Value: `%s`.","TypeError" -"EE","invalid argument. Second argument must be either an integer (starting view index) or a function. Value: `%s`.","TypeError" -"EF","invalid argument. Third argument must be either an integer (ending view index) or a function. Value: `%s`.","TypeError" -"EG","invalid option. `size` option must be less than or equal to the length of `x` when `replace` is `false`. Option: `%s`.","RangeError" -"EH","invalid option. `size` option must be less than or equal to the population size when `replace` is `false`. Option: `%s`.","RangeError" -"EI","invalid argument. Second argument must be either a scalar or an ndarray-like object. Value: `%s`.","TypeError" -"EJ","invalid argument. Minimum support must be less than maximum support. Value: `[%f, %f]`.","RangeError" -"EK","invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%d, %d]`.","RangeError" -"EL","invalid %s. `state` array has an incompatible schema version. Expected: `%s`. Actual: `%s.`","RangeError" -"EM","invalid %s. `state` array has an incompatible number of sections. Expected: `%s`. Actual: `%s`.","RangeError" -"EN","invalid argument. Number of draws must be less than or equal to the population size. Value: `%u`.","RangeError" -"EO","invalid argument. Subpopulation size must be less than or equal to the population size. Value: `%u`.","RangeError" -"EP","invalid argument. Must provide a regular expression. Value: `%s`.","TypeError" -"EQ","invalid argument. Second argument must be an object containing property descriptors. Value: `%s`.","TypeError" -"ER","invalid argument. Must provide an object (except null). Value: `%s`.","TypeError" -"ES","invalid argument. First argument must be an object (except null). Value: `%s`.","TypeError" -"ET","unexpected error. Encountered an invalid record. Field %d on line %d contains a closing quote which is not immediately followed by a delimiter or newline.","Error" -"EU","unexpected error. Encountered an invalid record. Field %d on line %d contains an opening quote which does not immediately follow a delimiter or newline.","Error" -"EV","unexpected error. Encountered an invalid record. Field %d on line %d contains an escape sequence which is not immediately followed by a special character sequence.","Error" -"EW","unexpected error. Encountered an invalid record. Field %d on line %d contains an escape sequence within a quoted field which is not immediately followed by a quote sequence.","Error" -"EX","invalid argument. First argument must be a function having at least one parameter. Value: `%s`.","TypeError" -"EY","invalid argument. All arguments must be objects. Index: `%u`. Value: `%s`.","TypeError" -"EZ","invalid argument. First argument must be a non-null object. Value: `%s`.","TypeError" -"Ea","invalid argument. First argument must be an ndarray whose last dimension is of size %u. Actual size: `%u`.","TypeError" -"Eb","invalid argument. Attempting to scale a weight vector by a nonpositive value. This is likely due to too large a value of eta * lambda. Value: `%f`.","RangeError" -"Ec","invalid argument. Output argument must be a one-dimensional ndarray. Value: `%s`.","TypeError" -"Ed","invalid argument. Must provide a two-dimensional ndarray. Value: `%s`.","TypeError" -"Ee","invalid argument. Number of matrix columns must match centroid dimensions. Expected: `%u`. Actual: `%u`.","Error" -"Ef","invalid argument. First argument must be an integer, null, or undefined. Value: `%s`.","TypeError" -"Eg","invalid argument. Second argument must be an integer, null, or undefined. Value: `%s`.","TypeError" -"Eh","invalid argument. Third argument must be an integer, null, or undefined. Value: `%s`.","TypeError" -"Ei","invalid argument. Third argument cannot be zero. Value: `%s`.","RangeError" -"Ej","invalid argument. First argument must be a valid subsequence string. Value: `%s`.","TypeError" -"Ek","invalid argument. A subsequence string must have a non-zero increment. Value: `%s`.","RangeError" -"El","invalid argument. The subsequence string resolves to a slice which exceeds index bounds. Value: `%s`.","RangeError" -"Em","invalid argument. Provided arguments must be either a Slice, integer, null, or undefined. Argument: `%d`. Value: `%s`.","TypeError" -"En","invalid operation. Unsupported slice operation. Value: `%s`.","Error" -"Eo","invalid operation. Number of array dimensions does not match the number of slice dimensions. Array shape: (%s). Slice dimensions: %u.","RangeError" -"Ep","invalid operation. Slice exceeds array bounds. Array shape: (%s).","RangeError" -"Eq","invalid operation. A subsequence increment must be a non-zero integer. Value: `%s`.","Error" -"Er","invalid operation. A subsequence may only include a single ellipsis. Value: `%s`.","Error" -"Es","invalid argument. Cannot write to a read-only array.","Error" -"Et","invalid argument. Number of slice dimensions does not match the number of array dimensions. Array shape: (%s). Slice dimensions: %u.","RangeError" -"Eu","invalid argument. Slice arguments must be either a Slice, integer, null, or undefined. Value: `%s`.","TypeError" -"Ev","invalid operation. Number of slice dimensions does not match the number of array dimensions. Array shape: (%s). Slice dimensions: %u.","RangeError" -"Ew","invalid operation. Assigned value cannot be safely cast to the target array data type. Data types: [%s, %s].","TypeError" -"Ex","invalid operation. Unsupported target array data type. Data type: `%s`.","TypeError" -"Ey","invalid argument. Index must be on the interval: [0, %d]. Value: `%d`.","RangeError" -"Ez","invalid argument. Slice exceeds array bounds. Array shape: (%s).","RangeError" -"F0","invalid argument. Input array values cannot be safely cast to the output array data type. Data types: [%s, %s].","TypeError" -"F1","invalid argument. Second argument must be an ndarray. Value: `%s`.","TypeError" -"F2","invalid argument. First argument must be an ndarray having at least two dimensions.","TypeError" -"F3","invalid argument. Second argument must be an array of nonnegative integers. Value: `%s`.","TypeError" -"F4","invalid option. Cannot write to read-only array.","Error" -"F5","invalid argument. First argument must be an array of nonnegative integers. Value: `%s`.","TypeError" -"F6","invalid argument. Must provide an ndarray having a supported data type. Value: `%s`.","TypeError" -"F7","invalid argument. First argument must be an ndarray having one or more dimensions. Number of dimensions: %d.","TypeError" -"F8","invalid argument. Dimension index exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","RangeError" -"F9","invalid argument. Third argument must be either a Slice, integer, null, or undefined. Value: `%s`.","TypeError" -"FA","invalid argument. First argument must be an ndarray having at least three dimensions.","TypeError" -"FB","invalid argument. Index must resolve to a value on the interval: [0, %d]. Value: `%d`.","RangeError" -"FC","invalid argument. First argument must be a recognized index mode. Value: `%s`.","TypeError" -"FD","invalid argument. Third argument exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","RangeError" -"FE","invalid argument. Number of indices does not match the number of array dimensions. Array shape: (%s). Number of indices: %u.","RangeError" -"FF","invalid argument. Each index argument must be either an integer, null, or undefined. Value: `%s`.","TypeError" -"FG","invalid argument. First argument must be a complex number. Value: `%s`.","TypeError" -"FH","invalid arguments. Input arrays must be broadcast compatible.","Error" -"FI","invalid argument. The first and second arguments must have the same length.","RangeError" -"FJ","invalid argument. First argument must be either an ndarray or an array of ndarrays. Value: `%s`.","TypeError" -"FK","invalid argument. An ndarray argument must be an ndarray. Value: `%s`.","TypeError" -"FL","invalid argument. Second argument must be a valid property name. Value: `%s`.","TypeError" -"FM","invalid argument. First argument must have a `%s` method.","TypeError" -"FN","invalid argument. Second argument must an array of strings. Value: `%s`.","TypeError" -"FO","invalid argument. Third argument must be a supported data type. Value: `%s`.","TypeError" -"FP","invalid argument. Index argument is out-of-bounds. Value: `%s`.","RangeError" -"FQ","invalid argument. Second argument must be a complex number. Value: `%s`.","TypeError" -"FR","invalid argument. Index arguments must be integers. Value: `%s`.","TypeError" -"FS","invalid argument. Slice exceeds array bounds. Array length: %d.","RangeError" -"FT","invalid argument. Input array and the output array slice are broadcast incompatible. Array length: %u. Desired length: %u.","Error" -"FU","invalid operation. Slice exceeds array bounds.","RangeError" -"FV","invalid argument. First argument must be a valid index array.","TypeError" -"FW","invalid operation. This array index instance has already been freed and can no longer be used.","Error" -"FX","invalid argument. First argument must be a complex-valued floating-point array. Value: `%s`.","TypeError" -"FY","invalid operation. Index exceeds array bounds.","RangeError" -"FZ","invalid operation. Unrecognized array index type. Value: `%s`.","Error" -"Fa","invalid operation. Unable to resolve array index. Value: `%s`.","Error" -"Fb","invalid option. `%s` option is missing a `%s` method. Option: `%s`.","TypeError" -"Fc","invalid operation. If not provided an initial value, an array must contain at least one element.","Error" -"Fd","invalid arguments. Must provide equal length array-like objects.","Error" -"Fe","Index out of bounds","RangeError" -"Ff","invalid option. `%s` option must be less than or equal to 64. Option: `%u`.","RangeError" -"Fg","invalid argument. Unable to parse input string as a complex number. Value: `%s`.","Error" -"Fh","invalid operation. Cannot access settings for a REPL which has already closed.","Error" -"Fi","invalid argument. First argument must be a recognized setting. Value: `%s`.","Error" -"Fj","invalid invocation. `this` is not a boolean array.","TypeError" -"Fk","invalid argument. Unable to parse commits for package: `%s`.","Error" -"Fl","invalid argument. Unrecognized release type: `%s`.","TypeError" -"Fm","invalid argument. First argument must be a supported BLAS memory layout. Value: `%s`.","TypeError" -"Fn","invalid argument. First argument must be an existing theme name. Value: `%s`.","Error" -"Fo","invalid argument. First argument must not be the default theme name. Value: `%s`.","Error" -"Fp","invalid argument. Second argument must be an object. Value: `%s`.","TypeError" -"Fq","invalid arguments. Number of values does not equal the number of falsy values in the mask array.","Error" -"Fr","invalid arguments. Insufficient values to satisfy mask array.","Error" -"Fs","invalid arguments. Input arguments are not broadcast compatible.","Error" -"Ft","invalid arguments. Number of values does not equal the number of truthy values in the mask array.","Error" -"Fu","invalid argument. Third argument cannot be safely cast to the input array data type. Data types: [%s, %s].","TypeError" -"Fv","invalid argument. First argument must be a boolean. Value: `%s`.","TypeError" -"Fw","invalid argument. The third argument must be broadcast compatible with the second argument. Array shape: (%d). Desired shape: (%d).","Error" -"Fx","invalid argument. First argument must be a valid order. Value: `%s`.","TypeError" -"Fy","invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.","TypeError" -"Fz","invalid argument. Third argument must be a nonnegative integer. Value: `%d`.","RangeError" -"G0","invalid argument. Eighth argument must be non-zero. Value: `%d`.","RangeError" -"G1","invalid argument. Twelfth argument must be non-zero. Value: `%d`.","RangeError" -"G2","invalid argument. Seventh argument must be non-zero. Value: `%d`.","RangeError" -"G3","invalid argument. Tenth argument must be non-zero. Value: `%d`.","RangeError" -"G4","invalid argument. Fourth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"G5","invalid argument. First argument must be a string or an array of strings. Value: `%s`.","TypeError" -"G6","invalid option. `%s` option must be a valid mode. Option: `%s`.","TypeError" -"G7","invalid argument. First argument must be a nonnegative integer. Value: `%d`.","RangeError" -"G8","invalid argument. Sixth argument must be greater than or equal to %d. Value: `%d`.","RangeError" -"G9","invalid argument. Eighth argument must be greater than or equal to %d. Value: `%d`.","RangeError" -"GA","invalid argument. Second argument must specify whether to reference the lower or upper triangular matrix. Value: `%s`.","TypeError" -"GB","invalid argument. Sixth argument must be non-zero. Value: `%d`.","RangeError" -"GC","invalid argument. Tenth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"GD","invalid argument. First argument must specify whether the reference the lower or upper triangular matrix. Value: `%s`.","TypeError" -"GE","invalid argument. Second argument must be a nonnegative integer. Value: `%d`.","RangeError" -"GF","invalid argument. Fifth argument must be non-zero. Value: `%d`.","RangeError" -"GG","invalid argument. Second argument must be a valid transpose operation. Value: `%s`.","TypeError" -"GH","invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.","RangeError" -"GI","invalid argument. Ninth argument must be non-zero.","RangeError" -"GJ","invalid argument. Twelfth argument must be non-zero.","RangeError" -"GK","invalid argument. Eleventh argument must be non-zero.","RangeError" -"GL","invalid argument. Fifteenth argument must be non-zero.","RangeError" -"GM","invalid argument. Eighth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"GN","invalid argument. First argument must specify whether to reference the lower or upper triangular matrix. Value: `%s`.","TypeError" -"GO","invalid argument. Third argument must be a valid transpose operation. Value: `%s`.","TypeError" -"GP","invalid argument. Fourth argument must be a valid diagonal type. Value: `%s`.","TypeError" -"GQ","invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.","RangeError" -"GR","invalid argument. Seventh argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"GS","invalid argument. Ninth argument must be non-zero. Value: `%d`.","RangeError" -"GT","invalid argument. First argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.","TypeError" -"GU","invalid argument. Third argument must be a valid diagonal type. Value: `%s`.","TypeError" -"GV","invalid argument. First argument must be a valid transpose operation. Value: `%s`.","TypeError" -"GW","invalid argument. Tenth argument must be non-zero.","RangeError" -"GX","invalid argument. Fourteenth argument must be non-zero.","RangeError" -"GY","invalid arguments. Array must have the same shape.","Error" -"GZ","invalid argument. Second argument must be an array of integers. Value: `%s`.","TypeError" -"Ga","invalid argument. First argument must be an ndarray having at least %d dimensions.","TypeError" -"Gb","invalid argument. Dimension indices must be sorted in ascending order. Value: `%s`.","Error" -"Gc","invalid argument. Dimension indices must be unique. Value: `%s`.","Error" -"Gd","invalid argument. First argument must be an array of ndarrays. Value: `%s`.","TypeError" -"Ge","invalid argument. First argument must be an array of ndarrays which are broadcast-compatible. Value: `%s`.","TypeError" -"Gf","invalid argument. First argument must be an array of ndarrays having at least %d dimensions after broadcasting.","TypeError" -"Gg","invalid argument. Index argument is out-of-bounds. Value: `%d`.","RangeError" -"Gh","invalid argument. Sixth argument must be a nonnegative integer. Value: `%d`.","RangeError" -"Gi","invalid argument. Ninth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"Gj","invalid argument. Eleventh argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"Gk","invalid argument. Fourteenth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"Gl","invalid argument. First argument must be an ndarray containing double-precision floating-point numbers. Value: `%s`.","TypeError" -"Gm","invalid argument. Second argument must be an ndarray containing double-precision floating-point numbers. Value: `%s`.","TypeError" -"Gn","invalid argument. First argument must have at least one dimension.","TypeError" -"Go","invalid argument. Second argument must have at least one dimension.","TypeError" -"Gp","invalid argument. Third argument must be a negative integer. Value: `%s`.","TypeError" -"Gq","invalid argument. Third argument must be a value on the interval: [%d,%d]. Value: `%d`.","RangeError" -"Gr","invalid argument. The size of the contracted dimension must be the same for both input ndarrays. Dim(%s,%d) = %d. Dim(%s,%d) = %d.","RangeError" -"Gs","invalid arguments. Input ndarrays must be broadcast compatible. Shape(%s) = (%s). Shape(%s) = (%s).","Error" -"Gt","invalid argument. Cannot write to read-only array.","Error" -"Gu","invalid arguments. The first and second arguments must have the same shape.","Error" -"Gv","unexpected error. Environment does not support WebAssembly.","Error" -"Gw","invalid invocation. Unable to perform write operation, as the WebAssembly module is not bound to an underlying WebAssembly memory instance.","Error" -"Gx","invalid argument. Second argument is incompatible with the specified byte offset and available memory. Resize the underlying memory instance in order to accommodate the list of provided values.","RangeError" -"Gy","invalid invocation. Unable to perform read operation, as the WebAssembly module is not bound to an underlying WebAssembly memory instance.","Error" -"Gz","invalid argument. Second argument is incompatible with the specified byte offset and available memory. Not enough values to fill the provided output array.","RangeError" -"H0","invalid argument. Must provide a WebAssembly memory instance. Value: `%s`.","TypeError" -"H1","invalid argument. First argument must be an ndarray containing single-precision floating-point numbers. Value: `%s`.","TypeError" -"H2","invalid argument. Second argument must be an ndarray containing single-precision floating-point numbers. Value: `%s`.","TypeError" -"H3","invalid invocation. `this` is not a Float64ArrayFE.","TypeError" -"H4","invalid argument. First argument must be a supported byte order. Value: `%s`.","TypeError" -"H5","invalid argument. Second argument must a data type. Value: `%s`.","TypeError" -"H6","invalid argument. First argument must be an ndarray-like object having a supported data type. Value: `%s`.","TypeError" -"H7","invalid argument. Second argument must be an ndarray-like object having a supported data type. Value: `%s`.","TypeError" -"H8","invalid invocation. `this` is not %s %s.","TypeError" -"H9","invalid argument. First argument must be a supported data type. Value: `%s`.","TypeError" -"HA","invalid argument. Must provide an ArrayBuffer. Value: `%s`.","TypeError" -"HB","invalid argument. Second argument must be a data type. Value: `%s`.","TypeError" -"HC","invalid option. Each key object must have a `name` property. Value: `%s`.","TypeError" -"HD","invalid option. Each key object's `name` property must be a string. Value: `%s`.","TypeError" -"HE","invalid option. Each key object's `%s` property must be a boolean. Value: `%s`.","TypeError" -"HF","invalid option. Each action must be an array of objects. Value: `%s`.","TypeError" -"HG","invalid argument. First argument must be a valid index ndarray.","TypeError" -"HH","invalid operation. This ndarray index instance has already been freed and can no longer be used.","Error" -"HI","invalid operation. Unrecognized ndarray index type. Value: `%s`.","Error" -"HJ","invalid operation. Index exceeds ndarray bounds.","RangeError" -"HK","invalid operation. Number of indices does not match the number of array dimensions. Array shape: (%s). Index dimensions: %u.","RangeError" -"HL","invalid operation. Unable to resolve ndarray index. Value: `%s`.","Error" -"HM","invalid argument. First argument is not compatible with the specified index ""kind"". Type: %s. Kind: %s.","TypeError" -"HN","invalid argument. First argument must be greater than or equal to the number of dimensions in the input ndarray. Number of dimensions: %d. Value: `%d`.","RangeError" -"HO","invalid argument. Specified dimension index is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `[%s]`.","RangeError" -"HP","invalid argument. Must provide unique dimension indices. Value: `[%s]`.","Error" -"HQ","invalid argument. Must provide the same number of dimension indices as the number of dimensions in the input ndarray. Number of dimensions: %d. Value: `[%s]`.","RangeError" -"HR","invalid argument. Must provide dimension indices which resolve to nonnegative indices arranged in ascending order. Value: `[%s]`.","Error" -"HS","invalid argument. Specified axis is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `%d`.","RangeError" -"HT","invalid argument. Each key in the keybindings argument must correspond to a single action. Value: `%s`","TypeError" -"HU","invalid argument. First argument must be a valid action name. Value: `%s`.","TypeError" -"HV","invalid argument. Each key in the keys argument must correspond to a single action. Value: `%s`","TypeError" -"HW","invalid argument. Second argument must be an array of data types. Value: `%s`.","TypeError" -"HX","invalid argument. Third argument must be an array of data types. Value: `%s`.","TypeError" -"HY","invalid argument. Fourth argument must be a supported output data type policy. Value: `%s`.","TypeError" -"HZ","invalid argument. First argument must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"Ha","invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d.","Error" -"Hb","invalid argument. Third argument contains an out-of-bounds dimension index. Value: [%s].","RangeError" -"Hc","invalid argument. Third argument must contain a list of unique dimension indices. Value: [%s].","Error" -"Hd","invalid argument. Number of specified dimensions cannot exceed the number of dimensions in the input array. ndims(x) == %d. Value: [%s].","RangeError" -"He","invalid argument. Arrays which are not being reduced must have the same number of non-reduced dimensions. ndims(x) == %d. Number of reduced dimensions: %d. ndims(arrays[%d]) == %d.","Error" -"Hf","invalid argument. Non-reduced dimensions must be consistent across all provided arrays. Input array shape: [%s]. Non-reduced dimension indices: [%s]. Non-reduced dimensions: [%s]. Array shape: [%s] (index: %d).","Error" -"Hg","invalid argument. The second argument cannot be safely cast to the input array data type. Data type: %s. Value: `%s`.","TypeError" -"Hh","invalid argument. Second argument must be broadcast-compatible with the non-reduced dimensions of the input array.","Error" -"Hi","invalid argument. Second argument cannot be safely cast to the input array data type. Value: `%s`.","TypeError" -"Hj","invalid argument. Third argument must be an ndarray-like object. Value: `%s`.","TypeError" -"Hk","invalid option. `%s` option must be an array of integers. Option: `%s`.","TypeError" -"Hl","invalid option. `%s` option contains an out-of-bounds dimension index. Option: [%s].","RangeError" -"Hm","invalid option. `%s` option specifies more dimensions than exists in the input array. Number of dimensions: %d. Option: [%s].","RangeError" -"Hn","invalid argument. Number of specified dimensions cannot exceed the number of dimensions in the input array. Number of dimensions: %d. Value: [%s].","RangeError" -"Ho","invalid argument. Arrays which are not being reduced must have the same number of non-reduced dimensions. Input array shape: [%s]. Number of non-reduced dimensions: %d. Array shape: [%s] (index: %d).","Error" -"Hp","invalid argument. Second argument must be an ndarray-like object. Value: `%s`.","TypeError" -"Hq","invalid argument. Second argument must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"Hr","invalid argument. Fourteenth argument must be non-zero. Value: `%d`.","RangeError" -"Hs","invalid argument. Seventeenth argument must be non-zero. Value: `%d`.","RangeError" -"Ht","invalid argument. Eighteenth argument must be non-zero. Value: `%d`.","RangeError" -"Hu","invalid option. `%s` option contains duplicate indices. Option: [%s].","Error" -"Hv","invalid argument. First argument must be an object having a ""default"" property and an associated method.","TypeError" -"Hw","invalid argument. Second argument must contain arrays of data types. Value: `%s`.","TypeError" -"Hx","invalid argument. Argument %d must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"Hy","invalid argument. Argument %d must be an ndarray-like object. Value: `%s`.","TypeError" -"Hz","invalid arguments. Input and output arrays must have the same shape.","Error" -"I0","invalid argument. First argument specifies an unexpected number of types. A pair of input and output ndarray data types must be specified for each provided strided function.","Error" -"I1","invalid argument. First argument specifies an unexpected number of types. An input ndarray data type must be specified for each provided strided function.","Error" -"I2","invalid argument. Array arguments after the first two arrays must have the same number of loop dimensions. Input array shape: [%s]. Number of loop dimensions: %d. Array shape: [%s] (index: %d).","Error" -"I3","invalid argument. Loop dimensions must be consistent across all provided arrays. Input array shape: [%s]. Loop dimension indices: [%s]. Loop dimensions: [%s]. Array shape: [%s] (index: %d).","Error" -"I4","invalid argument. First argument must be an object having a ""types"" property whose associated value is an array-like object.","TypeError" -"I5","invalid argument. First argument must be an object having a ""fcns"" property whose associated value is an array-like object containing functions.","TypeError" -"I6","invalid argument. Fourth argument must be an object having a supported output data type policy. Value: `%s`.","TypeError" -"I7","invalid argument. Fourth argument must be an object having a supported casting policy. Value: `%s`.","TypeError" -"I8","invalid operation. Unable to promote the input and output data types. Input data type: %s. Output data type: %s.","Error" -"I9","invalid argument. Third argument must be a supported casting policy. Value: `%s`.","TypeError" -"IA","invalid option. `%s` option must be an object containing properties having values which are objects. Option: `%s`.","TypeError" -"IB","invalid option. `%s` option must be an object having %s `%s` property which is an array of strings. Option: `%s`.","TypeError" -"IC","invalid option. `%s` option must have %s `%s` property.","TypeError" -"ID","invalid argument. Second argument must be either an ndarray or a numeric scalar value. Value: `%s`.","TypeError" -"IE","invalid argument. Eleventh argument must be non-zero. Value: `%d`.","RangeError" -"IF","invalid option. `%s` option must be a valid memory layout. Option: `%s`.","TypeError" -"IG","invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d. ndims(z) == %d.","Error" -"IH","invalid argument. Unable to resolve an output data type. The output data type policy is ""same"" and yet the input data types are not equal. Data types: [%s].","Error" -"II","invalid argument. Unable to apply type promotion rules when resolving a data type to which the input data types can be safely cast. Data types: [%s].","Error" -"IJ","invalid argument. %s argument must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"IK","invalid option. `%s` option must be a valid index mode. Option: `%s`.","TypeError" -"IL","invalid option. `%s` option must be a memory layout. Option: `%s`.","TypeError" -"IM","invalid argument. ArrayBuffer is incompatible with the specified data type. Value: `%s`.","TypeError" -"IN","invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, iterable, data type, or options object. Value: `%s`.","TypeError" -"IO","invalid argument. First argument must be a length, ArrayBuffer, typed array, array-like object, or iterable. Value: `%s`.","TypeError" -"IP","invalid argument. Third argument must be a recognized/supported data type. Value: `%s`.","TypeError" -"IQ","invalid argument. Fourth argument must be a recognized/supported data type. Value: `%s`.","TypeError" -"IR","invalid argument. Fifth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"IS","invalid argument. Second argument must have an integer data type. Value: `%s`.","TypeError" -"IT","invalid argument. Second argument must be an integer or an ndarray-like object. Value: `%s`.","TypeError" -"IU","invalid argument. Union types may only be initialized by a single member.","Error" -"IV","invalid invocation. `this` is not a struct instance.","Error" -"IW","invalid operation. struct does not have any fields.","Error" -"IX","unexpected error. Unrecognized data type. Value: `%s`.","Error" -"IY","invalid assignment. Assigned value cannot be cast to the data type of `%s`. Data types: [%s, %s].","TypeError" -"IZ","invalid argument. Field objects must have the following properties: ""%s"". Value: `%s`.","TypeError" -"Ia","invalid argument. Union types cannot contain nested union types. Value: `%s`.","TypeError" -"Ib","invalid argument. Union types can only contain one field with a default value. Value: `%s`.","TypeError" -"Ic","invalid argument. Union types must contain fields having the same byte length. Value: `%s`.","RangeError" -"Id","invalid argument. `%s` field must be a string. Value: `%s`.","TypeError" -"Ie","invalid argument. `%s` field must be a boolean. Value: `%s`.","TypeError" -"If","invalid argument. `%s` field must be a positive integer. Value: `%s`.","TypeError" -"Ig","invalid assignment. `%s` must be a `struct` instance. Value: `%s`.","TypeError" -"Ih","invalid assignment. Assigned value cannot be cast to the data type of `%s`. Value: `%s`.","TypeError" -"Ii","invalid assignment. `%s` must be a `struct` instance having the same byte length.","RangeError" -"Ij","invalid assignment. `%s` must be an array-like object. Value: `%s`.","TypeError" -"Ik","invalid assignment. `%s` must be an array-like object having length %u.","RangeError" -"Il","invalid argument. Byte length must be a nonnegative integer. Value: `%s`.","TypeError" -"Im","invalid argument. ArrayBuffer has insufficient capacity. Minimum capacity: `%u`.","RangeError" -"In","invalid argument. First argument must be a `struct` instance. Value: `%s`.","TypeError" -"Io","invalid argument. `%s` field must be one of the following: ""%s"". Value: `%s`.","TypeError" -"Ip","invalid argument. First argument must be an array of objects having unique field names. Value: `%s`.","TypeError" -"Iq","invalid argument. `%s` field must be a non-empty string. Value: `%s`.","TypeError" -"Ir","invalid argument. First argument must be an array of objects. Value: `%s`. Index: `%d`.","TypeError" -"Is","invalid argument. Union types must be an array of objects. Value: `%s`. Index: `%d`.","TypeError" -"It","invalid argument. Field name must be one of the following: ""%s"". Value: `%s`.","TypeError" -"Iu","invalid argument. `%s` field must be either a struct type or one of the following: ""%s"". Value: `%s`.","TypeError" -"Iv","invalid assignment. `%s` must be an array-like object containing `struct` instances having the same byte length.","RangeError" -"Iw","invalid argument. First argument must be one of the following: ""%s"". Value: `%s`.","TypeError" -"Ix","invalid argument. First argument must be an ArrayBuffer or a data object. Value: `%s`.","TypeError" -"Iy","invalid argument. First argument must be either a struct constructor or struct schema. Value: `%s`.","TypeError" -"Iz","invalid argument. Each element of a provided input array must be a valid object or a struct instance having the same layout as elements in the desired output array.","TypeError" -"J0","invalid argument. Environment lacks Symbol.iterator support. First argument must be a length, ArrayBuffer, typed array, or array-like object. Value: `%s`.","TypeError" -"J1","invalid argument. First argument must be a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.","TypeError" -"J2","invalid argument. Each element of a provided input iterable must be either a valid object or a struct instance having the same layout as elements in the desired output array.","TypeError" -"J3","invalid argument. Second argument must be a multiple of %u. Value: `%u`.","RangeError" -"J4","invalid argument. Second argument exceeds the bounds of the ArrayBuffer. Value: `%s`.","RangeError" -"J5","invalid argument. ArrayBuffer view byte length must be a multiple of %u. View byte length: `%u`.","RangeError" -"J6","invalid invocation. `this` is not a %s.","TypeError" -"J7","invalid argument. Must provide either a valid object or a struct instance. Value: `%s`.","TypeError" -"J8","invalid argument. First argument must be a valid orientation. Value: `%s`.","TypeError" -"J9","invalid argument. Second argument must be a valid orientation. Value: `%s`.","TypeError" -"JA","invalid argument. The first argument must be an ndarray. Value: `%s`.","TypeError" -"JB","invalid argument. Second argument must be either an ndarray or a scalar value. Value: `%s`.","TypeError" -"JC","invalid argument. Third argument must be an ndarray. Value: `%s`.","TypeError" -"JD","invalid argument. Third argument must be either an ndarray or an integer. Value: `%s`.","TypeError" -"JE","invalid operation. Environment lacks support for HTTP/2. Ensure that you are running on a Node.js version which supports HTTP/2 and has been built to include support for the Node.js `crypto` module.","Error" -"JF","invalid argument. Input arrays must have the same number of dimensions. First array dimensions: %d. Second array dimensions: %d.","Error" -"JG","invalid argument. Input arrays must have the same shape. First array shape: [%s]. Second array shape: [%s].","Error" -"JH","invalid argument. Output array must have the same number of non-reduced dimensions as input arrays. Input array shape: [%s]. Number of non-reduced dimensions: %d. Output array shape: [%s].","Error" -"JI","invalid argument. Array arguments after the first array must have the same number of loop dimensions. Input array shape: [%s]. Number of loop dimensions: %d. Array shape: [%s] (index: %d).","Error" -"JJ","invalid argument. Second argument contains an out-of-bounds index. Array shape: (%s). Value: `[%s]`.","RangeError" -"JK","invalid argument. Thirteenth argument must be non-zero. Value: `%d`.","RangeError" -"JL","invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.","RangeError" -"JM","invalid argument. Fifth argument must be non-zero. Value: `%s`.","RangeError" -"JN","invalid argument. Sixth argument must be non-zero. Value: `%s`.","RangeError" -"JO","invalid arguments. Unable to resolve an ndarray function supporting the provided argument data types.","TypeError" -"JP","invalid argument. First argument specifies an unexpected number of types. Two input ndarray data types must be specified for each provided strided function.","Error" -"JQ","invalid argument. First argument specifies an unexpected number of types. An output ndarray data type must be specified for each provided strided function.","Error" -"JR","invalid operation. Unable to promote the input and output data types. Input data types: [%s]. Output data type: %s.","Error" -"JS","invalid argument. Fourth argument must be a supported casting policy. Value: `%s`.","TypeError" -"JT","invalid argument. Fourth argument must be an ndarray. Value: `%s`.","TypeError" -"JU","invalid option. `%s` option must be a supported data type. Option: `%s`.","TypeError" -"JV","invalid argument. First argument must be either a supported data type string, a struct constructor, or another data type instance. Value: `%s`.","TypeError" -"JW","invalid argument. Second argument must be a valid sort order. Value: `%s`.","TypeError" -"JX","invalid argument. Second argument must be either an ndarray, a numeric scalar value, or a supported string. Value: `%s`.","TypeError" -"JY","invalid argument. Unable to apply type promotion rules when resolving a data type to which the input ndarrays can be safely cast. Data types: [%s].","Error" -"JZ","invalid argument. The list of input ndarrays cannot be safely cast to the data of the output ndarray. Input data types: [%s]. Output data type: %s.","Error" -"Ja","invalid argument. Second argument is not broadcast compatible with the list of input ndarrays. Array shape: (%s). Desired shape: (%s).","TypeError" -"Jb","invalid argument. Second argument must be a negative integer. Value: `%s`.","TypeError" -"Jc","invalid argument. First argument cannot be safely cast to the output data type. Data types: [%s, %s].","TypeError" -"Jd","invalid option. First argument cannot be safely cast to the specified data type. Input data type: %s. Option: `%s`.","TypeError" -"Je","invalid argument. First argument must be an ndarray having at least one dimension.","TypeError" -"Jf","invalid argument. Second argument must be either a number, complex number, or an ndarray. Value: `%s`.","TypeError" -"Jg","invalid argument. Third argument must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"Jh","invalid argument. Third argument must be either a number, complex number, or an ndarray. Value: `%s`.","TypeError" -"Ji","invalid argument. Fourth argument must have one of the following data types: ""%s"". Data type: `%s`.","TypeError" -"Jj","invalid argument. Fourth argument must be either a boolean or an ndarray. Value: `%s`.","TypeError" -"Jk","invalid argument. First argument must be a nonnegative integer or an array of nonnegative integers. Value: `%s`.","TypeError" -"Jl","invalid option. `%s` option must be a supported order. Option: `%s`.","TypeError" -"Jm","invalid argument. Argument %d cannot be safely cast to the desired output data type. Output data type: %s. Argument data type: %s.","TypeError" -"Jn","invalid invocation. Must provide at least two arguments.","Error" -"Jo","invalid invocation. Must provide at least one argument.","Error" -"Jp","invalid argument. Last argument must be a one-dimensional ndarray. Value: `%s`.","TypeError" -"Jq","invalid argument. Each ndarray argument must have fewer than two dimensions. Argument: %d.","TypeError" -"Jr","invalid argument. First argument must contain at least one element greater than zero (i.e., the total number of observations must be greater than zero).","Error" -"Js","invalid argument. First argument must be an ndarray having two or more dimensions.","TypeError" -"Jt","invalid invocation. Must provide at least three arguments.","Error" -"Ju","invalid invocation. `this` is not a floating-point number array.","TypeError" -"Jv","invalid argument. The number of elements (means) in the second argument must match correlation matrix dimensions. Expected: `%u`. Actual: `%u`.","Error" -"Jw","%s %s failed with exit code: %s.","Error" -"Jx","%s %s failed due to termination signal: %s.","Error" -"Jy","invalid argument. Second argument must be either an ndarray or an integer. Value: `%s`.","TypeError" -"Jz","invalid argument. Second argument cannot be safely cast to the desired output data type. Output data type: %s. Argument data type: %s.","TypeError" -"K0","invalid option. `%s` option must be a zero-dimensional ndarray.","TypeError" -"K1","invalid argument. Second argument must be either an ndarray-like object, a numeric value, or a supported string. Value: `%s`.","TypeError" -"K2","invalid argument. Second argument must be a zero-dimensional ndarray.","TypeError" -"K3","invalid argument. Must provide an integer on the interval [0, 2^64-1]. Value: `%s`.","TypeError" -"K4","invalid argument. Must provide an integer on the interval [0, 2^53-1]. Value: `%s`.","TypeError" -"K5","invalid argument. Must provide an array. Value: `%s`.","TypeError" -"K6","invalid argument. Must provide an array of length 2. Value: `[%s]`.","TypeError" -"K7","invalid argument. Must provide an array of integer values on the interval [%u, %u]. Value: `[%s]`.","TypeError" -"K8","invalid argument. First argument must be a nonnegative integer on the interval [%u, %u]. Value: `%s`.","TypeError" -"K9","invalid argument. Second argument must be a nonnegative integer on the interval [%u, %u]. Value: `%s`.","TypeError" -"KA","invalid argument. Must provide an integer on the interval [%d, %d]. Value: `%s`.","TypeError" -"KB","invalid argument. Fourth argument must be an ndarray-like object. Value: `%s`.","TypeError" -"KC","invalid option. `%s` option must be an array of nonnegative integers. Option: `%s`.","TypeError" -"KD","invalid argument. First argument must have one of the following data types: ""%s"". Value: `%s`.","TypeError" -"KE","invalid argument. Must provide an ndarray having two or more dimensions. Number of dimensions: `%u`.","RangeError" -"KF","invalid option. `%s` option must be a negative integer. Option: `%s`.","TypeError" -"KG","invalid argument. Third argument must be an array of integers. Value: `%s`.","TypeError" -"KH","invalid argument. Third argument must be an array of nonnegative integers. Value: `%s`.","TypeError" -"KI","invalid argument. Must provide a complex-valued floating-point ndarray. Value: `%s`.","TypeError" -"KJ","invalid argument. Specified dimension index is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `%d`.","RangeError" -"KK","invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d. ndims(z) == %d. ndims(w) == %d.","Error" -"KL","invalid argument. Second argument must have at least as many elements as the number of dimensions of the first argument. Number of input dimensions: `%u`. Number of repetitions: `%u`.","RangeError" -"KM","invalid argument. Must provide exactly two dimension indices. Value: `[%s]`.","RangeError" -"KN","invalid argument. First argument must be an ndarray having two or more dimensions. Number of dimensions: %d.","RangeError" -"KO","invalid argument. The first argument cannot be safely cast to the output array data type. Data type: %s. Value: `%s`.","TypeError" -"KP","invalid argument. Product of the sizes must be equal to the size of the dimension to be unflattened. Dimension: %d. Size: %d. Value: `[%s]`.","RangeError" -"KQ","invalid argument. First argument must contain one or more ndarrays. Value: `%s`.","RangeError" -"KR","invalid argument. First argument must be an array-like object containing one or more ndarrays. Value: `%s`.","TypeError" -"KS","invalid argument. Must provide one- or two-dimensional ndarrays. Number of dimensions: `%u`.","RangeError" -"KT","invalid argument. All ndarrays must have the same number of columns. Expected number of columns: `%u`. Actual number of columns: `%u`.","Error" -"KU","invalid argument. Second argument must be a two-dimensional ndarray. Number of dimensions: `%u`.","RangeError" -"KV","invalid option. Dimension index exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","RangeError" -"KW","invalid argument. All ndarrays must have the same number of rows. Expected number of rows: `%u`. Actual number of rows: `%u`.","Error" -"KX","invalid argument. Second argument must be a string or an array of strings. Value: `%s`.","TypeError" diff --git a/tools/database/data/data.json b/tools/database/data/data.json deleted file mode 100644 index da27d2c..0000000 --- a/tools/database/data/data.json +++ /dev/null @@ -1 +0,0 @@ -{"10":"invalid operation. Cannot reset a REPL which has already closed.","11":"invalid operation. Cannot clear a REPL which has already closed.","12":"invalid operation. Cannot clear the line of a REPL which has already closed.","13":"invalid operation. Cannot clear the command buffer of a REPL which has already closed.","14":"invalid argument. Provided command either does not contain an `await` expression or contains a top-level `return` which is not allowed.","15":"invalid argument. Must provide a program AST node.","16":"invalid invocation. Insufficient arguments. Must provide a REPL instance.","17":"invalid operation. No presentation to reload. Use the `load()` method to load a presentation.","18":"invalid operation. No presentation file to watch. Use the `load()` method to load a presentation.","19":"unexpected error. Encountered a \"rename\" event for the source presentation file. No longer watching source presentation file for changes.","20":"invalid argument. Must provide a username or, to get a list of repositories an authenticated user is watching, an access token.","21":"unexpected error. Unable to resolve package directory as unable to find a `package.json` in a parent directory.","22":"invalid argument. Source code does not contain JSDoc comment with function options.","23":"unexpected error. Unable to resolve root project directory.","24":"invalid argument. An iterator must return either a two-element array containing real and imaginary components or a complex number. Value: `%s`.","25":"invalid argument. Callback must return either a two-element array containing real and imaginary components or a complex number. Value: `%s`.","26":"invalid argument. Array-like object arguments must have a length which is a multiple of two. Length: `%u`.","27":"invalid argument. Array-like object and typed array arguments must have a length which is a multiple of two. Length: `%u`.","28":"invalid argument. ArrayBuffer byte length must be a multiple of `%u`. Byte length: `%u`.","29":"invalid argument. Environment lacks Symbol.iterator support. Must provide a length, ArrayBuffer, typed array, or array-like object. Value: `%s`.","30":"invalid argument. Fourth argument must be a nonnegative integer. Value: `%s`.","31":"invalid argument. Fifth argument must be a function. Value: `%s`.","32":"invalid argument. Fourth argument must be a function. Value: `%s`.","33":"invalid argument. Second argument must be either an integer (starting index) or a callback function. Value: `%s`.","34":"invalid argument. Third argument must be either an integer (ending index) or a callback function. Value: `%s`.","35":"invalid argument. Second argument must be either an integer (starting view index) or a callback function. Value: `%s`.","36":"invalid argument. Third argument must be either an integer (ending view index) or a callback function. Value: `%s`.","37":"invalid argument. Second argument must be a recognized data type. Value: `%s`.","38":"invalid argument. First argument must be array-like. Value: `%s`.","39":"invalid argument. Second argument must be a string. Value: `%s`.","40":"invalid argument. Must provide either a Date object, a JavaScript timestamp (i.e., a nonnegative integer), or a date string. Value: `%s`.","41":"invalid option. Unrecognized rounding mode. Option: `%s`.","42":"invalid argument. Third argument must be either a nonnegative integer or an options object. Value: `%s`.","43":"invalid argument. Fourth argument must be an object. Value: `%s`.","44":"invalid argument. First argument must an iterator protocol-compliant object. Value: `%s`.","45":"invalid argument. Second argument must be a positive integer. Value: `%s`.","46":"invalid argument. First argument must be an iterator protocol-compliant object. Value: `%s`.","47":"invalid argument. Must provide an object. Value: `%s`.","48":"invalid argument. Object property values must be functions. Key: `%s`. Value: `%s`.","49":"invalid argument. First argument must be a number. Value: `%s`.","50":"invalid option. Second `%s` parameter option must be a positive integer. Option: `%s`.","51":"invalid argument. First argument must be an array. Value: `%s`.","52":"invalid argument. First argument must be an array of length `%u`. Value: `%s`.","53":"invalid argument. First argument must be an array of length %u. Value: `%s`.","54":"unexpected error. Scaling weight vector by nonpositive value, likely due to too large value of eta * lambda. Value: `%f`.","55":"invalid argument. Second argument must be a boolean. Value: `%s`.","56":"invalid argument. Must provide either a valid data source, options argument, or both. Value: `%s`.","57":"invalid option. `%s` option must be an array-like object, typed-array-like, a Buffer, or an ndarray. Option: `%s`.","58":"invalid option. Data source must be an array-like object, typed-array-like, a Buffer, or an ndarray. Value: `%s`.","59":"invalid option. `%s` option must be a recognized casting mode. Option: `%s`.","60":"invalid argument. Input string must have a length equal to %u. Value: `%s`.","61":"invalid assignment. `%s` must be a boolean. Value: `%s`.","62":"invalid assignment. `%s` must be a string. Value: `%s`.","63":"invalid assignment. `%s` must be one of the following: \"%s\". Value: `%s`.","64":"invalid assignment. `%s` must be a positive number. Value: `%s`.","65":"invalid assignment. `%s` must be either an array of strings or an empty array. Value: `%s`.","66":"invalid assignment. `%s` must be a number or number array. Value: `%s`.","67":"invalid assignment. A `%s` must be a number on the interval: [0, 1]. Value: `%f`.","68":"invalid assignment. `%s` must be a string or a string array. Value: `%s`","69":"invalid assignment. Unsupported/unrecognized line style. Must be one of the following: \"%s\". Value: `%s`.","70":"invalid argument. Must provide a Uint32Array. Value: `%s`.","71":"invalid argument. First argument must be a positive number. Value: `%s`.","72":"invalid argument. Second argument must be a positive number. Value: `%s`.","73":"invalid argument. Second argument must be a probability. Value: `%s`.","74":"invalid option. `%s` option must be either a positive integer less than or equal to the maximum unsigned 32-bit integer or an array-like object containing integer values less than or equal to the maximum unsigned 32-bit integer. Option: `%s`.","75":"invalid option. `%s` option must have a `MIN` property specifying the minimum possible pseudorandom integer value.","76":"invalid option. `%s` option must have a `MAX` property specifying the maximum possible pseudorandom integer value.","77":"invalid argument. First argument must be an integer and not NaN. Value: `%s`.","78":"invalid argument. Second argument must be an integer and not NaN. Value: `%s`.","79":"invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%d,%d]`.","80":"invalid argument. First argument must be either a string containing presentation text or an options object specifying a presentation file to load. Value: `%s`.","81":"invalid argument. Second argument must be an options object. Value: `%s`.","82":"invalid argument. Invalid presentation identifier. Must be either a string or nonnegative integer. Value: `%s`.","83":"invalid argument. Workspace name already exists. Value: `%s`.","84":"invalid argument. Must provide a string, regular expression, nonnegative integer, or an array of nonnegative integers. Value: `%s`.","85":"invalid argument. Unrecognized tutorial name. Value: `%s`.","86":"invalid argument. Documentation argument must be a string. Value: `%s`.","87":"invalid option. `%s` option must be a regular expression. Option: `%s`.","88":"internal error. Unrecognized pattern type: `%s`.","89":"invalid option. `%s` option must be a readable stream. Option: `%s`.","90":"invalid argument. Denominator degrees of freedom must be a positive number. Value: `%s`.","91":"invalid argument. Scale parameter must be a number. Value: `%s`.","92":"invalid argument. Mean parameter `%s` must be a probability. Value: `%s`.","93":"invalid argument. Population size must be a nonnegative integer. Value: `%s`.","94":"invalid argument. Subpopulation size must be a nonnegative integer. Value: `%s`.","95":"invalid argument. Number of draws must be a nonnegative integer. Value: `%s`.","96":"invalid assignment. Must be a nonnegative integer. Value: `%s`.","97":"invalid assignment. Must be larger than or equal to %u. Value: `%u`.","98":"invalid assignment. Must be less than or equal to %u. Value: `%u`.","99":"invalid argument. Number of trials until experiment is stopped must be a positive number. Value: `%s`.","00":"not implemented","01":"invalid invocation. `this` context must be a constructor.","02":"invalid invocation. `this` is not a complex number array.","03":"invalid arguments. Target array lacks sufficient storage to accommodate source values.","04":"invalid arguments. Creating a generic array from an ArrayBuffer is not supported.","05":"invalid arguments. Must provide a length, typed array, array-like object, or an iterable.","06":"invalid arguments. Generated array exceeds maximum array length.","07":"invalid arguments. If either of the first two arguments are complex numbers, the output array must be a complex number array or a \"generic\" array-like object.","08":"invalid arguments. If either of the first two arguments are complex numbers, the output array data type must be a complex number data type or \"generic\".","09":"not supported. The current environment does not support SharedArrayBuffers, and, unfortunately, SharedArrayBuffers cannot be polyfilled. For shared memory applications, upgrade your runtime environment to one which supports SharedArrayBuffers.","0A":"insufficient arguments. Must provide a search value.","0B":"invalid argument. Attempted to add duplicate listener.","0C":"exception","0D":"unexpected error. Benchmark failed.","0E":"unexpected error. Invalid benchmark.","0F":"unexpected error.","0G":"invalid invocation. Constructor must be called with the `new` keyword.","0H":"unexpected error. Max retries exceeded. Too many open files.","0I":"insufficient arguments. Must provide two or more iterators.","0J":"insufficient arguments. Must provide both an iterator and a static value.","0K":"invalid invocation. `this` is not a fluent interface iterator.","0L":"insufficient arguments. Must provide a hash function.","0M":"invalid argument. Iterator arguments must be iterator protocol-compliant objects.","0N":"insufficient arguments. Must provide at least one iterator function.","0O":"invalid argument. Providing a number is not supported.","0P":"invalid argument. Providing a complex number is not supported.","0Q":"invalid argument. Providing an ndarray is not supported.","0R":"invalid argument. Providing an array-like object is not supported.","0S":"invalid argument. If the first argument is an ndarray, the second argument must be an ndarray.","0T":"invalid argument. Output array must have the same number of elements (i.e., length) as the input array.","0U":"invalid argument. If the first argument is an array-like object, the second argument must be an array-like object.","0V":"invalid argument. Providing a number is not supported. Consider providing a zero-dimensional ndarray containing the numeric value.","0W":"invalid argument. Providing a complex number is not supported. Consider providing a zero-dimensional ndarray containing the complex number value.","0X":"invalid arguments. Must provide either a data source, array shape, or both.","0Y":"invalid arguments. Array shape is incompatible with provided data source. Number of data source elements does not match array shape.","0Z":"invalid argument. Cannot broadcast an array to a shape having fewer dimensions. Arrays can only be broadcasted to shapes having the same or more dimensions.","0a":"invalid argument. First argument must contain at least one element.","0b":"invalid arguments. The length of the first argument is incompatible with the second and third arguments.","0c":"invalid argument. Must provide an ndarray having two or more dimensions.","0d":"invalid arguments. Arrays must have the same shape.","0e":"invalid invocation. Cannot write to a read-only array.","0f":"invalid argument. Fourth argument length must be equal to 1 when creating a zero-dimensional ndarray.","0g":"invalid arguments. The input buffer is incompatible with the specified meta data. Ensure that the offset is valid with regard to the strides array and that the buffer has enough elements to satisfy the desired array shape.","0h":"invalid arguments. Interface must accept at least one input and/or output ndarray. Based on the provided arguments, `nin+nout` equals `0`.","0i":"invalid arguments. Fourth argument does not equal the number of input and output ndarrays.","0j":"invalid argument. Unexpected number of types. A type must be specified for each input and output ndarray for each provided ndarray function.","0k":"invalid argument. The third argument must have the same number of elements as the first argument.","0l":"invalid invocation. Insufficient arguments.","0m":"invalid invocation. Too many arguments.","0n":"invalid arguments. Unable to resolve an ndarray function supporting the provided array argument data types.","0o":"invalid operation. Unable to load Electron. Ensure Electron is installed and try again.","0p":"invalid operation. A browser environment has no support for changing the current working directory.","0q":"invalid operation. The environment does not support reading from `stdin`.","0r":"unexpected error. PRNG returned NaN.","0s":"invalid argument. Third argument must be less than or equal to the first argument.","0t":"invalid argument. Second argument must be less than or equal to the first argument.","0u":"invalid operation. Cannot delete the `base` workspace.","0v":"invalid invocation. Must provide either a string containing presentation text or an options object specifying a presentation file to load.","0w":"invalid argument. When not provided presentation text, an options argument must specify a presentation file to load.","0x":"invalid invocation. Not currently in a presentation workspace. Must provide either a string or nonnegative integer which corresponds to the identifier of the presentation to be stopped.","0y":"unexpected error. Command execution terminated.","0z":"invalid operation. Cannot load a file into a REPL which has already closed.","1A":"invalid arguments. First and second arguments must be arrays having the same length.","1B":"invalid arguments. Subpopulation size must be less than or equal to population size.","1C":"invalid arguments. Number of draws must be less than or equal to population size.","1D":"invalid argument. First argument must contain at least one element greater than zero (i.e., the total number number of observations must be greater than zero).","1E":"invalid arguments. First and second arguments must have the same length.","1F":"invalid arguments. First and second arguments must be arrays having the same length.","1G":"invalid arguments. First and second argument must have the same length.","1H":"invalid arguments. Not enough observations. First and second arguments must contain at least four observations.","1I":"invalid arguments. The first and second arguments must have the same length.","1J":"`x` or `x - y` cannot be zero for all elements.","1K":"invalid arguments. Strided array parameters are incompatible with the provided array-like object. Linear index exceeds array bounds.","1L":"invalid arguments. Unable to resolve a strided array function supporting the provided array argument data types.","1M":"invalid arguments. Interface must accept at least one strided input and/or output array. Based on the provided arguments, `nin+nout` equals `0`.","1N":"invalid argument. Unexpected number of types. A type must be specified for each strided input and output array for each provided strided array function.","1O":"invalid argument. Fourth argument is incompatible with the number of strided input and output arrays.","1P":"invalid argument. Input array offset must be a nonnegative integer.","1Q":"invalid argument. Output array offset must be a nonnegative integer.","1R":"invalid argument. Input array must be an array-like object.","1S":"invalid argument. Output array must be an array-like object.","1T":"invalid argument. Input array has insufficient elements based on the associated stride and the number of indexed elements.","1U":"invalid argument. Output array has insufficient elements based on the associated stride and the number of indexed elements.","1V":"insufficient arguments. Must provide either an array of code points or one or more code points as separate arguments.","1W":"invalid argument. Third argument must not be an empty string.","1X":"invalid argument. Pad string must not be an empty string.","1Y":"insufficient arguments. Must provide multiple functions to compose.","1Z":"insufficient arguments. Must provide multiple functions to execute sequentially.","1a":"invalid arguments. First and last arguments must be the same length.","1b":"insufficient arguments. Must provide at least two objects.","1c":"invalid invocation. `this` is not a compact adjacency matrix.","1d":"invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.","1e":"invalid argument. The list does not contain the provided list node.","1f":"unexpected error. Unable to resolve global object.","1g":"invalid argument. The output ndarray must be writable. Cannot write to a read-only ndarray.","1h":"invalid arguments. Input and output arrays must have the same length.","1i":"invalid arguments. Input and output arrays must have the same number of elements (i.e., length).","1j":"invalid arguments. Input ndarrays must be broadcast compatible.","1k":"invalid arguments. Input arrays must have the same number of elements (i.e., length).","1l":"insufficient arguments. Must provide both a target object and one or more source objects.","1m":"invalid invocation. `this` is not host tuple.","1n":"invalid invocation. `this` is not the host tuple factory.","1o":"not implemented. Please post an issue on the @stdlib/stdlib issue tracker if you would like this to be implemented.","1p":"invalid argument. Second argument must have a length equal to the size of the outermost input array dimension.","1q":"evaluation error. Did not receive timing results.","1r":"evaluation error. Unable to retrieve evaluation results. Ensure that the provided snippet does not return prematurely.","1s":"invalid argument. Must provide a zipped array.","1t":"invalid argument. Array must only contain arrays.","1u":"invalid argument. Indices must be specified as an array.","1v":"invalid argument. All indices must be integers.","1w":"invalid argument. Must provide valid indices (i.e., an index must be on the interval [0, len], where len is the tuple length).","1x":"insufficient arguments. Must provide at least one array.","1y":"invalid argument. Must provide a username or, to get who an authenticated user is following, an access token.","1z":"invalid argument. Must provide a username or, to get a list of repositories an authenticated user has starred, an access token.","2A":"invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.","2B":"invalid argument. First argument must be an ArrayBuffer. Value: `%s`.","2C":"invalid argument. Byte offset must be a nonnegative integer. Value: `%s`.","2D":"invalid argument. Byte offset must be a multiple of `%u`. Value: `%u`.","2E":"invalid arguments. ArrayBuffer view byte length must be a multiple of %u. View byte length: `%u`.","2F":"invalid argument. Length must be a nonnegative integer. Value: `%s`.","2G":"invalid arguments. ArrayBuffer has insufficient capacity. Either decrease the array length or provide a bigger buffer. Minimum capacity: `%u`.","2H":"invalid argument. Second argument must be a function. Value: `%s`.","2I":"invalid argument. First argument must have a length which is a multiple of two. Length: `%u`.","2J":"invalid argument. First argument must be an array-like object or an iterable. Value: `%s`.","2K":"invalid argument. Must provide a nonnegative integer. Value: `%s`.","2L":"invalid argument. Index argument must be a nonnegative integer. Value: `%s`.","2M":"invalid argument. Index argument is out-of-bounds. Value: `%u`.","2N":"invalid argument. First argument must be either a complex number, an array-like object, or a complex number array. Value: `%s`.","2O":"invalid argument. First argument must be an array-like object. Value: `%s`.","2P":"invalid argument. Second argument must be a recognized array data type. Value: `%s`.","2Q":"invalid argument. Second argument must have a recognized/supported data type. Type: `%s`. Value: `%s`.","2R":"invalid argument. Unable to parse %s date.","2S":"invalid argument. Numeric %s date must be either a Unix or JavaScript timestamp.","2T":"invalid argument. %s date must either be a date string, Date object, Unix timestamp, or JavaScript timestamp.","2U":"invalid argument. Length must be a positive integer. Value: `%s`.","2V":"invalid argument. Options argument must be an object. Value: `%s`.","2W":"invalid option. `%s` option must be a string. Option: `%s`.","2X":"invalid option. `%s` option must be one of the following: \"%s\". Option: `%s`.","2Y":"invalid argument. Must provide a recognized data type. Value: `%s`.","2Z":"invalid argument. Environment lacks Symbol.iterator support. Must provide a length, typed array, or array-like object. Value: `%s`.","2a":"invalid argument. Must provide a length, typed array, array-like object, or an iterable. Value: `%s`.","2b":"invalid argument. Callback argument must be a function. Value: `%s`.","2c":"invalid argument. Iterator argument must be an iterator protocol-compliant object. Value: `%s`.","2d":"invalid argument. First argument must be a nonnegative integer. Value: `%s`.","2e":"invalid argument. Third argument must be a recognized data type. Value: `%s`.","2f":"invalid argument. First argument must be either an array, typed array, or complex typed array. Value: `%s`.","2g":"invalid argument. Start must be numeric. Value: `%s`.","2h":"invalid argument. Stop must be numeric. Value: `%s`.","2i":"invalid argument. Increment must be numeric. Value: `%s`.","2j":"invalid argument. First argument must be either a real or complex number. Value: `%s`.","2k":"invalid argument. Second argument must be either a real or complex number. Value: `%s`.","2l":"invalid argument. Third argument must be an array-like object. Value: `%s`.","2m":"invalid argument. Third argument must be a nonnegative integer. Value: `%s`.","2n":"invalid option. `%s` option must be a real or complex floating-point data type or \"generic\". Option: `%s`.","2o":"invalid option. `%s` option must be a boolean. Option: `%s`.","2p":"invalid argument. Exponent of start value must be numeric. Value: `%s`.","2q":"invalid argument. Exponent of stop value must be numeric. Value: `%s`.","2r":"invalid argument. First argument must be either an array length or an array-like object. Value: `%s`.","2s":"invalid argument. Must provide a typed array or ArrayBuffer. Value: `%s`.","2t":"invalid option. `%s` option must be a nonnegative integer. Option: `%s`.","2u":"invalid argument. Must provide an array-like object. Value: `%s`.","2v":"invalid option. `%s` option must be either `1` or `-1`. Option: `%s`.","2w":"invalid argument. Second argument must be either a function or an options object. Value: `%s`.","2x":"invalid argument. Must provide a typed array. Value: `%s`.","2y":"invalid argument. Second argument must be an array-like object. Value: `%s`.","2z":"invalid argument. Third argument must be an integer. Value: `%s`.","3A":"invalid argument. Key path must be a string or a key array. Value: `%s`.","3B":"invalid argument. Must provide a string. Value: `%s`.","3C":"invalid argument. Must provide a valid position (i.e., a nonnegative integer). Value: `%s`.","3D":"invalid argument. Must provide a valid position (i.e., within string bounds). Value: `%u`.","3E":"invalid argument. Second argument must be callable. Value: `%s`.","3F":"invalid argument. First argument must be a string. Value: `%s`.","3G":"invalid argument. Fourth argument must be one of the following: \"%s\". Value: `%s`.","3H":"invalid argument. Fifth argument must be one of the following: \"%s\". Value: `%s`.","3I":"invalid argument. Second argument must be either an object (except null) or a function. Value: `%s`.","3J":"invalid argument. Must provide a function. Value: `%s`.","3K":"invalid argument. Must provide either an options object or a callback function. Value: `%s`.","3L":"invalid argument. First argument must be an object. Value: `%s`.","3M":"invalid option. `%s` option must be a writable stream. Option: `%s`.","3N":"invalid argument. Third argument must be a function. Value: `%s`.","3O":"invalid option. `%s` option must be either a positive integer or `null`. Option: `%s`.","3P":"invalid option. `%s` option must be a positive integer. Option: `%s`.","3Q":"invalid argument. First argument must be a 1-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","3R":"invalid argument. Second argument must be a 1-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","3S":"invalid argument. Arrays must be the same length. First argument length: `%u`. Second argument length: `%u`.","3T":"invalid argument. First argument must be either an array-like object or a one-dimensional ndarray. Value: `%s`.","3U":"invalid argument. Second argument must be either an array-like object or a one-dimensional ndarray. Value: `%s`.","3V":"invalid argument. First argument must be a 1-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","3W":"invalid argument. Second argument must be a 1-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","3X":"invalid argument. Second argument must be a nonnegative integer. Value: `%s`.","3Y":"invalid argument. Second argument must not exceed the number of bytes in the input ArrayBuffer. Value: `%s`.","3Z":"invalid argument. Last argument must be a nonnegative integer. Value: `%s`.","3a":"invalid argument. Last argument must not exceed the number of bytes in the input ArrayBuffer. Value: `%s`.","3b":"invalid argument. Must provide a Buffer. Value: `%s`.","3c":"invalid argument. First argument must be a function. Value: `%s`.","3d":"invalid argument. Third argument must be a constructor function. Value: `%s`.","3e":"invalid argument. Real component must be a number. Value: `%s`.","3f":"invalid argument. Imaginary component must be a number. Value: `%s`.","3g":"invalid option. `%s` option must be one of the following: \"%s\". Option: `%s`.","3h":"invalid argument. Unsupported/unrecognized dataset name. Value: `%s`.","3i":"invalid option. Unrecognized `%s`. Option: `[%s]`.","3j":"invalid option. `%s` option must be a string or an array of strings. Option: `%s`.","3k":"invalid option. `%s` option must be a positive integer or an array of positive integers. Option: `%s`.","3l":"invalid option. `%s` option must be a positive integer array of length two. Option: `%s`.","3m":"invalid option. `%s` option cannot be less than 1790. Option: `%s`.","3n":"invalid option. `%s` option cannot be greater than 5000. Option: `%s`.","3o":"invalid argument. Must provide an error object. Value: `%s`.","3p":"invalid argument. First argument must be a valid file descriptor (i.e., nonnegative integer). Value: `%s`.","3q":"invalid argument. Last argument must be a function. Value: `%s`.","3r":"invalid argument. Must provide a valid file descriptor (i.e., a nonnegative integer). Value: `%s`.","3s":"invalid argument. First argument must be an array of strings. Value: `%s`.","3t":"invalid argument. Options argument must be either a string or an object. Value: `%s`.","3u":"invalid argument. Predicate function must be a function. Value: `%s`.","3v":"invalid argument. First argument must be an iterator. Value: `%s`.","3w":"invalid argument. Must provide an iterator. Value: `%s`.","3x":"invalid argument. Must provide an iterator protocol-compliant object. Argument: `%u`. Value: `%s`.","3y":"invalid argument. Must provide an iterator protocol-compliant object. Value: `%s`.","3z":"invalid argument. Unable to parse date string. Value: `%s`.","4A":"invalid argument. Second argument must be a number. Value: `%s`.","4B":"invalid argument. Third argument must be a number. Value: `%s`.","4C":"invalid argument. Hash function argument must be a function. Value: `%s`.","4D":"invalid option. `%s` option must be a positive number. Option: `%s`.","4E":"invalid argument. Third argument must be either a nonnegative integer or an object. Value: `%s`.","4F":"invalid arguments. All arguments must be functions. Value: `%s`.","4G":"invalid argument. Each iterator function, except the last iterator function, within an iterator pipeline must return an iterator. Value: `%s`.","4H":"invalid argument. Must provide an an iterator. Value: `%s`.","4I":"invalid return value. Callback function must return an integer. Value: `%s`.","4J":"invalid argument. Fourth argument must be a boolean. Value: `%s`.","4K":"invalid return value. Callback function must return a positive integer. Value: `%s`.","4L":"invalid argument. Fifth argument must be a callback function. Value: `%s`.","4M":"invalid argument. Third argument must be either an integer (starting index) or a callback function. Value: `%s`.","4N":"invalid argument. Fourth argument must be either an integer (ending index) or a callback function. Value: `%s`.","4O":"invalid argument. Unrecognized/unsupported scale function. Value: `%s`.","4P":"invalid argument. Must provide an iterator protocol-compliant object or a number. Argument: `%u`. Value: `%s`.","4Q":"invalid argument. First argument must be a finite number. Value: `%s`.","4R":"invalid option. `%s` option must be a positive finite number. Option: `%s`.","4S":"invalid option. `%s` option must be one of the following: \"%s\". Option: `%s`.","4T":"invalid option. `%s` option must be less than or equal to 79. Option: `%u`.","4U":"invalid option. `%s` option must be less than or equal to 77. Option: `%u`.","4V":"invalid argument. Must provide an argument having a supported data type. Value: `%s`.","4W":"invalid option. Unsupported policy for determining an output array data type. Option: `%s`.","4X":"invalid option. `%s` option must be a recognized/supported data type. Option: `%s`.","4Y":"invalid option. `%s` option must be a recognized/supported output array data type policy. Option: `%s`.","4Z":"invalid argument. Resolution table must be an object. Value: `%s`.","4a":"invalid argument. Resolution table `%s` field value must be either a function or null. Value: `%s`.","4b":"invalid argument. First argument must be a positive integer. Value: `%s`.","4c":"invalid argument. First argument must be a one-dimensional ndarray. Value: `%s`.","4d":"invalid argument. Second argument must be either +1 or -1. Value: `%s`.","4e":"invalid argument. First argument must be a one-dimensional ndarray of length %u. Actual length: `%u`.","4f":"invalid argument. First argument must be an ndarray. Value: `%s`.","4g":"invalid argument. First argument must be an ndarray whose last dimension is of size `%u`. Actual size: `%u`.","4h":"invalid argument. Second argument is incompatible with model loss function. Probability predictions are only supported when the loss function is one of the following: \"%s\". Model loss function: `%s`.","4i":"invalid argument. Second argument must be a string value equal to either \"label\", \"probability\", or \"linear\". Value: `%s`.","4j":"invalid argument. Attempting to scale a weight vector by a nonpositive value. This is likely due to too large a value of `eta*lambda`. Value: `%f`.","4k":"invalid option. `%s` option must be a nonnegative number. Option: `%s`.","4l":"invalid option. `%s` option must be an array-like object. Option: `%s`.","4m":"invalid option. First `%s` option must be one of the following: \"%s\". Option: `%s`.","4n":"invalid option. Second `%s` option must be a positive number. Option: `%s`.","4o":"invalid option. Third `%s` option must be a number. Option: `%s`.","4p":"invalid argument. Argument specifying number of dimensions must be a positive integer. Value: `%s`.","4q":"invalid argument. First argument must either be a positive integer specifying the number of clusters or a matrix containing initial centroids. Value: `%s`.","4r":"invalid option. First `%s` parameter option must be greater than or equal to the number of clusters. Options: `%f`.","4s":"invalid argument. Must provide a 1-dimensional ndarray. Value: `%s`.","4t":"invalid argument. Vector length must match centroid dimensions. Expected: `%u``. Actual: `%u``.","4u":"invalid argument. Output argument must be a 1-dimensional ndarray. Value: `%s`.","4v":"invalid argument. Must provide a 2-dimensional ndarray. Value: `%s`.","4w":"invalid argument. Number of matrix columns must match centroid dimensions. Expected: `%u``. Actual: `%u`.","4x":"invalid argument. Output vector length must match the number of data points. Expected: `%u`. Actual: `%u`.","4y":"invalid option. `%s` option method must be one of the following: \"%s\". Option: `%s`.","4z":"invalid option. First `%s` parameter option must be a positive integer. Option: `%s`.","5A":"invalid option. `%s` option must be a recognized data type. Option: `%s`.","5B":"invalid option. Data type cast is not allowed. Casting mode: `%s`. From: `%s`. To: `%s`.","5C":"invalid option. `%s` option must be a recognized order. Option: `%s`.","5D":"invalid option. `%s` option must be an array-like object containing nonnegative integers. Option: `%s`.","5E":"invalid argument. Linear index must not exceed array dimensions. Number of array elements: `%u`. Value: `%d`.","5F":"invalid argument. Input array cannot be broadcast to the specified shape, as the specified shape has a dimension whose size is less than the size of the corresponding dimension in the input array. Array shape: (%s). Desired shape: (%s). Dimension: %u.","5G":"invalid argument. Input array and the specified shape are broadcast incompatible. Array shape: (%s). Desired shape: (%s). Dimension: %u.","5H":"invalid argument. Specified axis is out-of-bounds. Must be on the interval: [-%u-1, %u]. Value: `%d`.","5I":"invalid argument. Index must be on the interval: [0, %f]. Value: `%f`.","5J":"invalid argument. Subscripts must not exceed array dimensions. Subscript: `%u`. Value: `%d`.","5K":"invalid argument. First argument must be a recognized data type. Value: `%s`.","5L":"invalid argument. First argument must have a recognized data type. Value: `%s`.","5M":"invalid arguments. Number of indices must match the number of dimensions. ndims: `%u`. nargs: `%u`.","5N":"invalid argument. Indices must be integer valued. Argument: `%u`. Value: `%s`.","5O":"invalid argument. Index must be an integer. Value: `%s`.","5P":"invalid argument. First argument must be a supported ndarray data type. Value: `%s`.","5Q":"invalid argument. Second argument must be an array-like object, typed-array-like, or a Buffer. Value: `%s`.","5R":"invalid argument. Second argument `get` and `set` properties must be functions. Value: `%s`.","5S":"invalid argument. Third argument must be an array-like object containing nonnegative integers. Value: `%s`.","5T":"invalid argument. Number of dimensions must not exceed %u due to stack limits. Value: `%u`.","5U":"invalid argument. Fourth argument must be an array-like object containing integers. Value: `%s`.","5V":"invalid argument. Fourth argument length must match the number of dimensions. Expected number of dimensions: `%u`. Strides length: `%u`.","5W":"invalid argument. Fourth argument must contain a single element equal to `0`. Value: `%d`.","5X":"invalid argument. Fifth argument must be a nonnegative integer. Value: `%s`.","5Y":"invalid argument. Sixth argument must be a supported order. Value: `%s`.","5Z":"invalid argument. Indices must be integer valued. Argument: `%i`. Value: `%u`.","5a":"invalid option. `%s` option must be a recognized mode. Option: `%s`.","5b":"invalid option. `%s` option must be an array containing recognized modes. Option: `%s`.","5c":"invalid option. Each submode must be a recognized mode. Option: `%s`.","5d":"invalid argument. First argument must be either a function or an array of functions. Value: `%s`.","5e":"invalid argument. Third argument must be an array-like object or null. Value: `%s`.","5f":"invalid argument. Fourth argument must be a positive integer. Value: `%s`.","5g":"invalid argument. Sixth argument must be a nonnegative integer. Value: `%s`.","5h":"invalid argument. Input array must be an ndarray-like object. Value: `%s`.","5i":"invalid argument. Output array must be an ndarray-like object. Value: `%s`.","5j":"invalid argument. Output argument must be either an array, typed array, or object. Value: `%s`.","5k":"invalid argument. Shape argument must be an array-like object containing nonnegative integers. Value: `%s`.","5l":"invalid argument. Linear index must be integer valued. Value: `%s`.","5m":"invalid option. `%s` option must be a supported/recognized mode. Option: `%s`.","5n":"invalid option. `%s` option must be a supported/recognized order. Option: `%s`.","5o":"invalid argument. First argument must be an array-like object containing nonnegative integers. Value: `%s`.","5p":"invalid argument. Number of provided subscripts must match the number of dimensions. ndims: `%u`. Number of subscripts: `%u`.","5q":"invalid argument. Subscripts must be integer valued. Argument: `%u`. Value: `%s`.","5r":"invalid option. `%s` option cannot be an empty array.","5s":"invalid argument. First argument must be either a nonnegative integer or an array of nonnegative integers. Value: `%s`.","5t":"invalid argument. First argument must be an ndarray-like object. Value: `%s`.","5u":"invalid option. `%s` option must either be a nonnegative integer or an array of nonnegative integers. Option: `%s`.","5v":"invalid option. `%s` option must be either a Buffer or a string. Option: `%s`.","5w":"invalid argument. Request listener must be a function. Value: `%s`.","5x":"invalid argument. Third argument must be a positive integer. Value: `%s`.","5y":"invalid argument. Number of topics must be a positive integer. Value: `%s`.","5z":"invalid argument. First argument must be a nonnegative integer which is less than the total number of topics. Value: `%s`.","6A":"invalid assignment. `%s` must be a nonnegative integer or nonnegative integer array. Value: `%s`.","6B":"invalid assignment. `%s` must be a nonnegative integer. Value: `%s`.","6C":"invalid assignment. Unrecognized/unsupported `%s`. Must be one of the following: \"%s\". Value: `%s`.","6D":"invalid assignment. Unrecognized/unsupported `%s`. Value: `%s`.","6E":"invalid assignment. `%s` must be a nonnegative integer or null. Value: `%s`.","6F":"invalid assignment. `%s` must be a string or null. Value: `%s`.","6G":"invalid argument. Must provide a supported viewer. Value: `%s`.","6H":"invalid assignment. `%s` must be a function. Value: `%s`.","6I":"invalid assignment. `%s` must be either null or an array. Value: `%s`.","6J":"invalid assignment. `%s` must be a string, function, or null. Value: `%s`.","6K":"invalid argument. `options` argument must be an object. Value: `%s`.","6L":"invalid assignment. `%s` must be a number. Value: `%s`.","6M":"invalid assignment. `%s` must be a number on the interval `[0,1]`. Value: `%f`.","6N":"invalid assignment. `%s` must be array-like. Value: `%s`.","6O":"invalid arguments. Must provide equal length array-like objects. x length: `%u`, y length: `%u`.","6P":"invalid assignment. `%s` must be a string or a function. Value: `%s`.","6Q":"invalid assignment. `%s` must be a number or a function. Value: `%s`.","6R":"invalid assignment. `%s` must be one of the following: \"%s\". Value: `%s`.","6S":"invalid assignment. `%s` must be a nonnegative integer or a function. Value: `%s`.","6T":"invalid assignment. `%s` must be a supported symbol. Symbols: \"%s\". Value: `%s`.","6U":"invalid argument. `options` argument must be a plain object. Value: `%s`.","6V":"invalid assignment. `%s` must be either a string or a string array. Value: `%s`.","6W":"invalid assignment. `%s` must be a string or a string array. Value: `%s`.","6X":"invalid assignment. `%s` must be a string or string array. Value: `%s`.","6Y":"invalid assignment. Unrecognized/unsupported symbol. Value: `[%s]`.","6Z":"invalid assignment. `%s` must be an array. Value: `%s`.","6a":"invalid assignment. `%s` must be either a finite number, Date, or null. Value: `%s`.","6b":"invalid assignment. `%s` must be a boolean or boolean array. Value: `%s`.","6c":"invalid assignment. `%s` must be either a string or string array. Value: `%s`.","6d":"invalid assignment. Unrecognized/unsupported orientation. A `%s` value must be one of the following: \"%s\". Value: `%s`.","6e":"invalid assignment. `%s` must be either a finite number or null. Value: `%s`.","6f":"invalid state. x and y are different lengths. x length: `%u`, y length: `%u`.","6g":"invalid state. Each `x[i]:y[i]` pair must be the same length. x[%u].length: `%u`, y[","6h":"invalid assignment. `%s` must be a positive integer or null. Value: `%s`.","6i":"invalid assignment. `%s` size is smaller than the number of data elements. Number of elements: `%u`. Value: `%u`.","6j":"invalid assignment. `%s` must be an array-like object or an ndarray. Value: `%s`.","6k":"invalid assignment. `%s` length exceeds maximum data buffer size. Buffer size: `%u`. Length: `%u`.","6l":"invalid assignment. `%s` must be a finite number or null. Value: `%s`.","6m":"invalid assignment. `%s` must be a finite number or null. Value: `%s.","6n":"invalid assignment. Must be an array or typed array. Value: `%s`.","6o":"invalid option. `%s` option must be an array or typed array. Option: `%s`.","6p":"invalid option. `%s` option must be a function. Option: `%s`.","6q":"invalid argument. Encoding argument must be a string. Value: `%s`.","6r":"invalid argument. Must provide either a string, nonnegative integer, or an options object. Value: `%s`.","6s":"invalid argument. First argument must be either a string or nonnegative integer. Value: `%s`.","6t":"invalid argument. Unable to parse mask expression. Ensure the expression is properly formatted, only uses the class letters \"u\", \"g\", \"o\", and \"a\", only uses the operators \"+\", \"-\", and \"=\", and only uses the permission symbols \"r\", \"w\", and \"x\". Value: `%s`.","6u":"invalid option. `%s` option must be a pseudorandom number generator function. Option: `%s`.","6v":"invalid argument. First argument must be a number and not NaN. Value: `%s`.","6w":"invalid argument. Second argument must be a number and not NaN. Value: `%s`.","6x":"invalid argument. Minimum support must be less than maximum support. Value: `[%f,%f]`.","6y":"invalid argument. First argument must be a probability. Value: `%s`.","6z":"invalid option. `%s` option must be a Uint32Array. Option: `%s`.","7A":"invalid argument. First argument must be a positive number and not NaN. Value: `%s`.","7B":"invalid argument. Second argument must be a positive number and not NaN. Value: `%s`.","7C":"invalid argument. Third argument must be a number and not NaN. Value: `%s`.","7D":"invalid argument. Third argument must be less than or equal to the first argument. Value: `%u`.","7E":"invalid argument. Second argument must be less than or equal to the first argument. Value: `%u`.","7F":"invalid %s. State array has insufficient length.","7G":"invalid %s. State array has an incompatible schema version. Expected: `%s`. Actual: `%s`.","7H":"invalid %s. State array has an incompatible number of sections. Expected: `%s`. Actual: `%s`.","7I":"invalid %s. State array has an incompatible state length. Expected: `%u`. Actual: `%u`.","7J":"invalid %s. State array length is incompatible with seed section length. Expected: `%u`. Actual: `%u`.","7K":"invalid option. `%s` option must be an Int32Array. Option: `%s`.","7L":"invalid option. `%s` option must be a positive integer less than the maximum signed 32-bit integer. Option: `%u`.","7M":"invalid option. `%s` option must be either a positive integer less than the maximum signed 32-bit integer or an array-like object containing integer values less than the maximum signed 32-bit integer. Option: `%s`.","7N":"invalid argument. Must provide an Int32Array. Value: `%s`.","7O":"invalid %s. State array has an incompatible table length. Expected: `%s`. Actual: `%s`.","7P":"invalid %s. `state` array has insufficient length.","7Q":"invalid %s. `state` array has an incompatible schema version. Expected: %s. Actual: %s.","7R":"invalid %s. `state` array has an incompatible number of sections. Expected: %s. Actual: %s.","7S":"invalid %s. `state` array has an incompatible state length. Expected: `%u`. Actual: `%u`.","7T":"invalid %s. `state` array has an incompatible section length. Expected: `%u`. Actual: `%u`.","7U":"invalid %s. `state` array length is incompatible with seed section length. Expected: `%u`. Actual: `%u`.","7V":"invalid option. `%s` option must be a positive integer less than or equal to the maximum unsigned 32-bit integer. Option: `%u`.","7W":"invalid option. `%s` option must be either a positive integer less than or equal to the maximum unsigned 32-bit integer or an array-like object containing integer values less than or equal to the maximum unsigned 32-bit integer. Option: `%u`.","7X":"invalid argument. Second argument must be on the interval: (0, 1). Value: `%f`.","7Y":"invalid option. `%s` option cannot be undefined. Option: `%s`.","7Z":"invalid option. Unrecognized/unsupported PRNG. Option: `%s`.","7a":"invalid argument. First argument must be a positive number or an options object. Value: `%s`.","7b":"invalid arguments. Parameters must satisfy the following condition: %s. Value: `[%f, %f, %f]`.","7c":"invalid argument. Scale parameter must be a positive number. Value: `%s`.","7d":"invalid argument. Shape parameter must be a positive number. Value: `%s`.","7e":"invalid argument. First argument must be an integer. Value: `%s`.","7f":"invalid argument. Second argument must be an integer. Value: `%s`.","7g":"invalid argument. `n` must be less than or equal to `N`. Value: `%u`.","7h":"invalid argument. `K` must be less than or equal to `N`. Value: `%u`.","7i":"invalid argument. `%s` argument must be array-like. Value: `%s`.","7j":"invalid input option. `size` option must be less than or equal to the length of `x` when `replace` is `false`. Option: `%s`.","7k":"invalid input option. `size` option must be less than or equal to the population size when `replace` is `false`. Option: `%s`.","7l":"invalid option. `%s` option must be an array of probabilities that sum to one. Option: `%s`.","7m":"invalid argument. Minimum support must be less than maximum support. Value: `[%s,%s]`.","7n":"invalid option. `%s` option must be a string or null. Option: `%s`.","7o":"invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%s,%s]`.","7p":"invalid argument. Must be one of the following: \"%s\". Value: `%s`.","7q":"invalid argument. Mode must be one of the following: \"%s\". Value: `%s`.","7r":"invalid argument. Must be one of the following: \"%s\". Value: `%s`.","7s":"invalid operation. Alias already exists in the provided context. Alias: `%s`. Value: `%s`.","7t":"invalid argument. Unrecognized workspace name. Value: `%s`.","7u":"invalid operation. Cannot read from write-only variable `%s`.","7v":"Cannot assign to read only property %s of object #","7w":"invalid option. `%s` option must be a regular expression or an array-like object. Option: `%s`.","7x":"invalid option. `%s` option must be one of `%s`. Option: `%s`.","7y":"invalid argument. Must provide either an options object or a workspace name. Value: `%s`.","7z":"invalid argument. Must provide either a string or regular expression. Value: `%s`.","8A":"invalid argument. Must provide an integer. Value: `%s`.","8B":"invalid argument. Must provide a positive integer. Value: `%s`.","8C":"invalid argument. Presentation text must be a string. Value: `%s`.","8D":"invalid argument. REPL argument must be a REPL instance. Value: `%s`.","8E":"unexpected error. Unable to reload presentation. Error: %s","8F":"unexpected error. Unable to watch presentation source file. Error: %s","8G":"invalid option. `%s` option must be either a recognized string or boolean. Option: `%s`.","8H":"invalid option. `%s` option must be either a positive integer or null. Option: `%s`.","8I":"invalid operation. Alias already exists in REPL context. Alias: `%s`. Value: `%s`.","8J":"invalid argument. Third argument must be an object. Value: `%s`.","8K":"invalid option. `%s` option must be less than or equal to the period. Option: `%u`.","8L":"invalid option. `%s` option must be greater than 2. Option: `%s`.","8M":"invalid option. `%s` option must be an integer. Option: `%s`.","8N":"invalid option. `%s` option must be an positive integer. Option: `%s`.","8O":"invalid option. `%s` option must be less than the period. Option: `%s`.","8P":"invalid option. `%s` option must be a number. Option: `%s`.","8Q":"invalid option. `%s` option must be an positive even integer. Option: `%s`.","8R":"invalid argument. First argument must be a numeric array. Value: `%s`.","8S":"invalid argument. First argument must contain at least two elements. Value: `%s`.","8T":"invalid argument. Second argument must be an array. Value: `%s`.","8U":"invalid argument. Second argument must contain at least two unique elements. Value: `%s`.","8V":"invalid option. `%s` option must be a number on the interval: [0, 1]. Option: `%f`.","8W":"invalid option. `%s` option must be an array containing at least two unique elements. Option: `%s`.","8X":"invalid argument. Must provide array-like arguments. Value: `%s`.","8Y":"invalid argument. Supplied arrays cannot be empty. Value: `%s`.","8Z":"invalid option. `%s` option must be an array. Option: `%s`.","8a":"invalid argument. Minimum support must be a number. Value: `%s`.","8b":"invalid argument. Maximum support must be a number. Value: `%s`.","8c":"invalid arguments. Minimum support must be less than maximum support. Value: `%f, %f`.","8d":"invalid assignment. Must be a number. Value: `%s`.","8e":"invalid assignment. Must be less than %f. Value: `%f`.","8f":"invalid assignment. Must be greater than %f. Value: `%f`.","8g":"invalid argument. Mean parameter `p` must be a probability. Value: `%s`.","8h":"invalid assignment. Must be a probability. Value: `%s`.","8i":"invalid argument. First shape parameter must be a positive number. Value: `%s`.","8j":"invalid argument. Second shape parameter must be a positive number. Value: `%s`.","8k":"invalid assignment. Must be a positive number. Value: `%s`.","8l":"invalid argument. Number of trials must be a positive integer. Value: `%s`.","8m":"invalid argument. Success probability must be a number between 0 and 1. Value: `%s`.","8n":"invalid assignment. Must be a positive integer. Value: `%s`.","8o":"invalid assignment. Must be a number on the interval: [0, 1]. Value: `%s`.","8p":"invalid argument. Location parameter must be a number. Value: `%s`.","8q":"invalid argument. Rate parameter must be a positive number. Value: `%s`.","8r":"invalid argument. Mean parameter `%s` must be a number. Value: `%s`.","8s":"invalid argument. Minimum support must be an integer. Value: `%s`.","8t":"invalid argument. Maximum support must be an integer. Value: `%s`.","8u":"invalid arguments. Minimum support must be less than or equal to maximum support. Value: `%d, %d`.","8v":"invalid assignment. Must be an integer. Value: `%s`.","8w":"invalid assignment. Must be less than or equal to %u. Value: `%d`.","8x":"invalid assignment. Must be greater than or equal to %u. Value: `%s`.","8y":"invalid argument. Shape parameter must be a positive integer. Value: `%s`.","8z":"invalid argument. Numerator degrees of freedom must be a positive number. Value: `%s`.","9A":"invalid argument. Mean parameter `lambda` must be a positive number. Value: `%s`.","9B":"invalid argument. Mode must be a number. Value: `%s`.","9C":"invalid arguments. Parameters must satisfy the following condition: %s. a: `%f`. b: `%f`. c: `%f`.","9D":"invalid assignment. Must be less than or equal to both the maximum support and the mode. Value: `%f`.","9E":"invalid assignment. Must be greater than or equal to both the minimum support and the mode. Value: `%f`.","9F":"invalid assignment. Must be greater than or equal to the minimum support and less than or equal to the maximum support. Value: `%f`.","9G":"invalid argument. An array argument must contain two elements. Value: `%s`.","9H":"invalid argument. Must provide a nonnegative integer or a two-element array. Value: `%s`.","9I":"invalid arguments. Number of successes cannot be larger than the total number of observations. x: `%u`. n: `%u`.","9J":"invalid option. `%s` option must be a probability. Option: `%f`.","9K":"invalid argument. Unsupported/unrecognized distribution name. Value: `%s`.","9L":"invalid argument. First argument must contain nonnegative integers. Index: `%u`. Value: `%s`.","9M":"invalid argument. Probability mass function (PMF) arguments must be numbers. Argument: `%u`. Value: `%s`.","9N":"invalid argument. Second argument must be either an array-like object (or one-dimensional ndarray) of probabilities summing to one, an array-like object (or one-dimensional ndarray) of expected frequencies, or a discrete probability distribution name. Value: `%s`.","9O":"invalid argument. Second argument must only contain numbers. Index: `%u`. Value: `%s`.","9P":"invalid argument. Second argument must only contain nonnegative numbers. Index: `%u`. Value: `%d`.","9Q":"invalid option. `%s` option must be a number on the interval: [0, 1]. Value: `%s`.","9R":"invalid argument. First argument must be an array of arrays or ndarray-like object with dimension two. Value: `%s`.","9S":"invalid argument. First argument must contain nonnegative integers. Value: `%s`.","9T":"invalid argument. First argument must either specify the order of the covariance matrix or be a square 2-dimensional ndarray for storing the covariance matrix. Value: `%s`.","9U":"invalid argument. Second argument must be a 1-dimensional ndarray. Value: `%s`.","9V":"invalid argument. The number of elements (means) in the second argument must match covariance matrix dimensions. Expected: `%u`. Actual: `%u`.","9W":"invalid argument. Vector length must match covariance matrix dimensions. Expected: `%u`. Actual: `%u`.","9X":"invalid argument. Must provide a number. Value: `%s`.","9Y":"invalid argument. Must provide a nonnegative number. Value: `%s`.","9Z":"invalid argument. Must provide a nonnegative number on the interval [0,1]. Value: `%f`.","9a":"invalid argument. Output argument must be an array-like object. Value: `%s`.","9b":"invalid argument. Window size must be a positive integer. Value: `%s`.","9c":"invalid argument. Window size must be greater than or equal to 3. Value: `%s`.","9d":"invalid option. `%s` option must be on the interval [0,1]. Option: `%f`.","9e":"invalid argument. First argument must either specify the order of the correlation distance matrix or be a square 2-dimensional ndarray for storing the correlation distance matrix. Value: `%s`.","9f":"invalid argument. The number of elements (means) in the second argument must match correlation distance matrix dimensions. Expected: `%u`. Actual: `%u`.","9g":"invalid argument. Vector length must match correlation matrix dimensions. Expected: `%u`. Actual: `%u`.","9h":"invalid argument. Vector length must match correlation distance matrix dimensions. Expected: `%u`. Actual: `%u`.","9i":"invalid argument. First argument must either specify the order of the correlation matrix or be a square 2-dimensional ndarray for storing the correlation matrix. Value: `%s`.","9j":"invalid argument. Unsupported/unrecognized kernel. Value: `%s`.","9k":"invalid argument. Second argument must be a numeric array. Value: `%s`.","9l":"invalid option. Lower bound `%s` must be strictly less than the upper bound `%s`.","9m":"invalid option. `%s` option must be an array of positive numbers. Option: `%s`.","9n":"invalid option. `%s` option must be an array of length two. Option: `%s`.","9o":"invalid option. `%s` option must be a string denoting a known kernel function or a custom function. Option: `%s`.","9p":"invalid arguments. First argument and `%s` must be arrays having the same length.","9q":"invalid invocation. Incorrect number of arguments. Must provide at least two array-like arguments. Value: `%s`.","9r":"invalid option. `%s` must be a number on the interval: [0, 1]. Value: `%f`.","9s":"invalid argument. First argument must be a typed array or number array. Value: `%s`.","9t":"invalid argument. Second argument must be either a CDF function or a string. Value: `%s`.","9u":"invalid argument. Distribution parameter must be a number. Value: `%s`.","9v":"invalid option. `%s` option must contain at least two unique elements. Value: `%s`.","9w":"invalid argument. Provided arrays cannot be empty. Value: `%s`.","9x":"invalid argument. First argument must be an array of probabilities. Value: `%s`.","9y":"invalid argument. When specified, `%s` arguments must contain at least a length of %u. Value: `%u`.","9z":"invalid argument. Second argument must be one of the following: %s. Value: `%s`.","A0":"invalid option. `%s` option must be a number in `[0,1]`. Option: `%s`.","A1":"invalid option. `%s` option must be a number on the interval: [-1, 1]. Option: `%s`.","A2":"invalid argument. First argument must contain at least two elements. Value: `%s`.","A3":"invalid argument. Second argument must be either a numeric array or an options object. Value: `%s`.","A4":"invalid option. `%s` option must be either `equal` or `unequal`. Option: `%s`.","A5":"invalid argument. `%s` argument must be a numeric array. Value: `%s`.","A6":"invalid option. `%s` option must be one of the following: %s. Option: `%s`.","A7":"invalid argument. Third argument must be a positive number. Value: `%s`.","A8":"invalid argument. Fourth argument must be a positive number. Value: `%s`.","A9":"invalid operation. Serialization function must return a string or Buffer. Value: `%s`.","AA":"invalid argument. In binary mode, a provided value must be a string, Buffer, or Uint8Array. Value: `%s`.","AB":"invalid option. `%s` option must be either a string or a regular expression. Option: `%s`.","AC":"invalid argument. First input array offset must be a nonnegative integer. Value: `%s`.","AD":"invalid argument. Second input array offset must be a nonnegative integer. Value: `%s`.","AE":"invalid argument. Output array offset must be a nonnegative integer. Value: `%s`.","AF":"invalid argument. Must provided recognized data types. Unable to resolve a data type string. Value: `%s`.","AG":"invalid argument. Input array offset must be a nonnegative integer. Value: `%s`.","AH":"invalid argument. Input array stride must be an integer. Value: `%s`.","AI":"invalid argument. Output array stride must be an integer. Value: `%s`.","AJ":"invalid option. `%s` option must be an array of strings. Option: `%s`.","AK":"invalid argument. Must provide a valid position (i.e., within string bounds). Value: `%s`.","AL":"invalid argument. Third argument must be a boolean. Value: `%s`.","AM":"invalid argument. Must provide valid code points (i.e., nonnegative integers). Value: `%s`.","AN":"invalid argument. Must provide a valid code point (cannot exceed max). Value: `%s`.","AO":"invalid argument. Third argument must be a string. Value: `%s`.","AP":"invalid argument. Output string length exceeds maximum allowed string length. Value: `%u`.","AQ":"invalid argument. Third argument must be a string or an array of strings. Value: `%s`.","AR":"invalid argument. At least one padding option must have a length greater than 0. Left padding: `%s`. Right padding: `%s`.","AS":"invalid argument. Second argument must be an array of strings. Value: `%s`.","AT":"invalid argument. Second argument must be a string or regular expression. Value: `%s`.","AU":"invalid argument. Third argument must be a string or replacement function. Value: `%s`.","AV":"invalid argument. Must provide a string or an array of strings. Value: `%s`.","AW":"invalid argument. If only providing a single argument, must provide a Date object. Value: `%s`.","AX":"invalid argument. First argument must be either a string or integer. Value: `%s`.","AY":"invalid argument. Day number must be on the interval: `[1, %u]`. Value: `%d`.","AZ":"invalid argument. First argument must be either a string, integer, or Date object. Value: `%s`.","Aa":"invalid argument. An integer month value must be on the interval: [1, 12]. Value: `%s`.","Ab":"invalid argument. Must provide a recognized month. Value: `%s`.","Ac":"invalid argument. Must provide either an integer or a `Date` object. Value: `%s`.","Ad":"invalid argument. Must provide either a string, integer, or Date object. Value: `%s`.","Ae":"invalid argument. Must provide an array of nonnegative integers. Value: `%s`.","Af":"invalid argument. Input array must contain two elements. Value: `%s`.","Ag":"invalid argument. Must provide a collection. Value: `%s`.","Ah":"invalid argument. First argument must be a collection. Value: `%s`.","Ai":"invalid argument. First argument must be either an array, typed array, or an array-like object. Value: `%s`.","Aj":"invalid argument. All arguments must be functions. Value: `%s`.","Ak":"invalid argument. Number of function invocations must be a nonnegative integer. Value: `%s`.","Al":"invalid argument. First argument must be an array of functions. Value: `%s`.","Am":"invalid argument. Last argument must be a collection. Value: `%s`.","An":"invalid argument. Must provide either a valid buffer size (i.e., a positive integer) or an array-like object which can serve as the underlying buffer. Value: `%s`.","Ao":"invalid argument. An iterator must return an array-like object containing vertices. Value: `%s`.","Ap":"invalid argument. Callback must return an array-like object containing vertices. Value: `%s`.","Aq":"invalid argument. Callback must return an array-like object. Value: `%s`.","Ar":"invalid argument. Each element of the adjacency list must be an array-like object. Value: `%s`.","As":"invalid argument. Each element of the edge list must be an array-like object. Value: `%s`.","At":"invalid argument. Second argument must be an array-like object or an iterable. Value: `%s`.","Au":"invalid argument. First argument exceeds matrix dimensions. Value: `%u`.","Av":"invalid argument. Second argument exceeds matrix dimensions. Value: `%u`.","Aw":"invalid argument. Vertex cannot exceed matrix dimensions. Value: `%u`.","Ax":"invalid argument. Second argument must be a recognized output path convention. Value: `%s`.","Ay":"invalid argument. Cannot convert Windows extended-length paths to POSIX paths. Value: `%s`.","Az":"invalid argument. Arity argument must be a positive integer. Value: `%s`.","B0":"invalid argument. Property descriptor must be an object. Value: `%s`.","B1":"invalid argument. The `value` property of the property descriptor must be a function. Value: `%s`.","B2":"invalid argument. Second argument must be an object of property descriptors. Value: `%s`.","B3":"invalid argument. Path must be a string. Value: `%s`.","B4":"invalid argument. Third argument must be a recognized location. Value: `%s`.","B5":"invalid argument. Must provide a recognized iteration direction. Value: `%s`.","B6":"invalid argument. Must provide an object-like value. Value: `%s`.","B7":"invalid argument. Must provide a regular expression string. Value: `%s`.","B8":"invalid argument. Filename must be a string. Value: `%s`.","B9":"invalid argument. First argument must be an array of positive integers. Value: `%s`.","BA":"invalid argument. First argument must be object-like. Value: `%s`.","BB":"invalid argument. Must provide an array of arrays. Value: `%s`.","BC":"invalid argument. Must provide a boolean. Value: `%s`.","BD":"invalid argument. Second argument must have a prototype from which another object can inherit. Value: `%s`.","BE":"invalid argument. A provided constructor must be either an object (except null) or a function. Value: `%s`.","BF":"invalid argument. If the input array is an ndarray, the output array must also be an ndarray. Value: `%s`.","BG":"invalid argument. If the input array is an array-like object, the output array must also be an array-like object. Value: `%s`.","BH":"invalid argument. First argument must be an array-like object or an ndarray. Value: `%s`.","BI":"invalid argument. If the first input array is an ndarray, the second input array must also be an ndarray. Value: `%s`.","BJ":"invalid argument. If the input arrays are ndarrays, the output array must also be an ndarray. Value: `%s`.","BK":"invalid argument. If the first input array is an array-like object, the second input array must also be an array-like object. Value: `%s`.","BL":"invalid argument. If the input arrays are array-like objects, the output array must also be an array-like object. Value: `%s`.","BM":"invalid argument. First argument must be an array-like object containing array-like objects. Index: `%u`. Value: `%s`.","BN":"invalid argument. First argument must be a three-dimensional nested array. Index: `%u`. Value: `%s`.","BO":"invalid argument. First argument must be a four-dimensional nested array. Index: `%u`. Value: `%s`.","BP":"invalid argument. First argument must be a four-dimensional nested array. Indices: (%u, %u). Value: `%s`.","BQ":"invalid argument. First argument must be a four-dimensional nested array. Indices: (%u, %u, %u). Value: `%s`.","BR":"invalid argument. First argument must be a five-dimensional nested array. Index: `%u`. Value: `%s`.","BS":"invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u). Value: `%s`.","BT":"invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u, %u). Value: `%s`.","BU":"invalid argument. First argument must be a five-dimensional nested array. Indices: (%u, %u, %u, %u). Value: `%s`.","BV":"invalid argument. A merge source must be an object. Value: `%s`.","BW":"invalid option. `%s` option must be either a boolean or a function. Option: `%s`.","BX":"invalid argument. Source argument must be an object. Value: `%s`.","BY":"invalid argument. Target argument must be an object. Value: `%s`.","BZ":"invalid argument. Must provide an array of strings. Value: `%s`.","Ba":"invalid argument. Field names must be distinct. Value: `%s`.","Bb":"invalid argument. Provided field name is reserved. Name: `%s`.","Bc":"invalid arguments. Arguments are incompatible with the number of tuple fields. Number of fields: `%u`. Number of data elements: `%u`.","Bd":"invalid argument. Source is incompatible with the number of tuple fields. Number of fields: `%u`. Source length: `%u`.","Be":"invalid invocation. Number of arguments is incompatible with the number of tuple fields. Number of fields: `%u`. Number of arguments: `%u`.","Bf":"invalid option. `%s` option must be a recognized data type. Option: `%s`.","Bg":"invalid argument. Second argument must be either a string or an array of strings. Value: `%s`.","Bh":"invalid argument. Must provide a valid URI. Value: `%s`.","Bi":"unexpected error. Child process failed with exit code: `%u`.","Bj":"unexpected error. Child process failed due to termination signal: `%s`.","Bk":"invalid argument. Reviver argument must be a function. Value: `%s`.","Bl":"invalid argument. Second argument must be an array-like object containing nonnegative integers. Value: `%s`.","Bm":"invalid argument. Must provide either an array, typed array, or an array-like object. Value: `%s`.","Bn":"invalid argument. Must provide a recognized type. Value: `%s`.","Bo":"invalid argument. Second argument must be an array containing only nonnegative integers. Value: `%s`.","Bp":"invalid invocation. Unexpected number of input arguments. Expected: `%u`. Actual: `%u`.","Bq":"evaluation error. Encountered an error when evaluating snippet. %s","Br":"invalid option. `%s` option must be a positive integer or null. Option: `%s`.","Bs":"insufficient arguments. Expected %u argument(s) and only received %u argument(s).","Bt":"invalid invocation. The configured arity exceeds the number of possible curried function invocations. Expected: %u. Actual: %u.","Bu":"invalid invocation. Number of arguments exceeds the number of possible curried function invocations. Expected: `%u`. Actual: `%u`.","Bv":"invalid invocation. The configured arity exceeds the number of possible curried function invocations. Expected: `%u`. Actual: `%u`.","Bw":"invalid argument. Must provide array arguments. Value: `%s`.","Bx":"invalid argument. Last argument must be either an array or an options object. Value: `%s`.","By":"invalid argument. Repository slug must be a string. Value: `%s`.","Bz":"invalid argument. Issue title must be a string. Value: `%s`.","C0":"invalid option. `%s` must be one of the following: \"%s\". Option: `%s`.","C1":"invalid argument. Repository name must be a string. Value: `%s`.","C2":"invalid option. `%s` option must be a valid URI. Option: `%s`.","C3":"invalid option. `%s` option must be a 20-character string. Option: `%s`.","C4":"invalid option. `%s` option must be a 40-character string. Option: `%s`.","C5":"invalid argument. Token id must be a nonnegative integer. Value: `%s`.","C6":"invalid argument. Workflow identifier must be a string. Value: `%s`.","C7":"invalid option. `%s` option must be an object of input key-value pairs. Option: `%s`.","C8":"invalid option. `%s` option must be a positive integer or \"last\". Option: `%s`.","C9":"invalid option. `%s` organization name option must be a string. Option: `%s`.","CA":"invalid option. Unknown method. Option: `%s`.","CB":"invalid option. Unrecognized `%s` option. Must be one of the following: \"%s\". Option: `%s`.","CC":"invalid argument. Repository slug must consist of an owner and a repository (e.g., \"stdlib-js/utils\"). Value: `%s`.","CD":"invalid argument. Topics argument must be an array of strings. Value: `%s`.","CE":"invalid option. `%s` option must be one of the following: \"%s\" or \"%s\". Option: `%s`.","CF":"invalid argument. Must provide a supported license SPDX identifier. Value: `%s`.","CG":"invalid argument. Must provide a supported file type. Value: `%s`.","CH":"invalid argument. First argument must be either a string or Buffer. Value: `%s`.","CI":"invalid argument. Second argument must be either a string or Buffer. Value: `%s`.","CJ":"invalid argument. A header object must map each filename extension to a license header string. `%s: %s`. Value: `%s`.","CK":"invalid argument. Second argument must be either a string or an object whose keys are filename extensions and whose values are header strings. Value: `%s`.","CL":"invalid argument. Second argument must be either a string, Buffer, or regular expression. Value: `%s`.","CM":"invalid argument. A header object must map each filename extension to a license header string or regular expression. `%s: %s`. Value: `%s`.","CN":"invalid argument. Second argument must be either a string, a regular expression, or an object whose keys are filename extensions and whose values are header strings or regular expressions. Value: `%s`.","CO":"invalid argument. Third argument must be either a string or Buffer. Value: `%s`.","CP":"invalid argument. Third argument must be either a string or an object whose keys are filename extensions and whose values are header strings. Value: `%s`.","CQ":"invalid argument. Database already contains an entry for the provided URI: `%s`.","CR":"invalid argument. Database already contains an entry for the provided id: `%s`.","CS":"invalid argument. First argument must be a URI. Value: `%s`.","CT":"invalid argument. Second argument must be either a string or regular expression. Value: `%s`.","CU":"invalid option. A `%s` option object must map each filename extension to a license header string or regular expression. `%s: %s`. Value: `%s`.","CV":"invalid option. `%s` option must be either a string, a regular expression, or an object whose keys are filename extensions and whose values are header strings or regular expressions. Option: `%s`.","CW":"invalid option. `%s` option must end with \"package.json\". Option: `%s`.","CX":"invalid argument. Last argument must be a callback function. Value: `%s`.","CY":"invalid option. `%s` option must be an array of package names. Option: `%s`.","CZ":"invalid argument. Version argument must be a string. Value: `%s`.","Ca":"invalid argument. Must provide either a string or a Buffer. Value: `%s`.","Cb":"invalid argument. Must provide either a string or Buffer. Value: `%s`.","Cc":"invalid argument. First argument must be either a string or array of strings. Value: `%s`.","Cd":"invalid option. `%s` option must be an object. Option: `%s`.","Ce":"unexpected error. File does not exist. Unable to resolve file: %s.","Cf":"invalid argument. Must provide either a string or an array of strings. Value: `%s`.","Cg":"invalid argument. Must provide either a string or an array of strings. Value: `%s`. Index: `%u`.","Ch":"unexpected error. Failed to sort packages. Detected the following dependency chain containing a cycle: `%s`.","Ci":"invalid node. Equation comments must have a valid label. Node: `%s`.","Cj":"invalid node. Equation comments must have valid alternate text. Node: `%s`.","Ck":"invalid node. Equation comments must have valid raw equation text. Node: `%s`.","Cl":"invalid node. Invalid equation comment. Ensure that the Markdown file includes both starting and ending equation comments. Node: `%s`.","Cm":"invalid node. Equation element must have a valid label. Node: `%s`.","Cn":"unexpected error. Code block configuration settings should be provided as comma-separated `key:value` pairs (e.g., `foo:true, bar:\"string\", baz:[\"error\",2]`). Value: `%s`.","Co":"unexpected error. Code block configuration values should be parseable as JSON. Value: `%s`.","Cp":"unexpected error. Encountered an error when executing code block. File: `%s`. Message: `%s`.","Cq":"unexpected error. Expected code block to throw an exception. File: `%s`.","Cr":"invalid node. Ensure that the Markdown file includes both a starting `
` and closing `
\\n\\n`. Node: `%s`.","Cs":"invalid node. Equation comments must have valid equation text. Node: `%s`.","Ct":"invalid node. Equation comments must have valid labels. Node: `%s`.","Cu":"invalid option. `%s` option must begin with \"@stdlib/\". Option: `%s`.","Cv":"invalid argument. First argument must be a list of file paths. Value: `%s`.","Cw":"invalid arguments. Subpopulation size must be less than or equal to the population size.","Cx":"invalid arguments. Number of draws must be less than or equal to the population size.","Cy":"invalid arguments. Fourth argument is not compatible with the number of input and output ndarrays.","Cz":"invalid arguments. Input buffer is incompatible with the specified meta data. Ensure that the offset is valid with regard to the strides array and that the buffer has enough elements to satisfy the desired array shape.","D0":"invalid arguments. Length of the first argument is incompatible with the second and third arguments.","D1":"invalid argument. Provided collections must have the same length.","D2":"invalid argument. First argument must be an array-like object containing nonnegative integers.","D3":"invalid arguments. Input arrays must have the same length.","D4":"invalid argument. Must provide valid indices (i.e., must be a nonnegative integer less than or equal to the tuple length).","D5":"not implemented. Please post an issue on the @stdlib/stdlib issue tracker if you would like this to be implemented. https://github.com/stdlib-js/stdlib/issues/new/choose","D6":"invalid operation. Parser is unable to parse new chunks, as the parser has been closed. To parse new chunks, create a new parser instance.","D7":"invalid operation. Parser is in an unrecoverable error state. To parse new chunks, create a new parser instance.","D8":"invalid argument. First argument must be a one-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","D9":"invalid argument. Second argument must be a one-dimensional ndarray containing double-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float64Array). Value: `%s`.","DA":"invalid argument. First argument must be a one-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","DB":"invalid argument. Second argument must be a one-dimensional ndarray containing single-precision floating-point numbers (i.e., an ndarray whose underlying data buffer is a Float32Array). Value: `%s`.","DC":"invalid assignment. `%s` size is less than the number of data elements. Number of elements: `%u`. Value: `%u`.","DD":"invalid assignment. `%s` must be a string or an array of strings. Value: `%s`.","DE":"invalid assignment. `%s` must be a number or an array of numbers. Value: `%s`.","DF":"invalid assignment. `%s` must be a nonnegative integer or an array of nonnegative integers. Value: `%s`.","DG":"invalid assignment. `%s` must be a finite number, Date, or null. Value: `%s`.","DH":"invalid assignment. `%s` must be a boolean or an array of booleans. Value: `%s`.","DI":"invalid assignment. `%s` must be a number or null. Value: `%s`.","DJ":"invalid assignment. `%s` must be an array of strings or an empty array. Value: `%s`.","DK":"invalid state. x and y are different lengths. x length: `%u`. y length: `%u`.","DL":"invalid state. Each `x[i]:y[i]` pair must be the same length. x[%u].length: `%u`, y[%u].length: `%u`.","DM":"invalid assignment. `%s` must be a number on the interval: [0, 1]. Value: `%f`.","DN":"invalid assignment. `%s` must be null or an array. Value: `%s`.","DO":"invalid arguments. Must provide equal length array-like objects. x length: `%u`. y length: `%u`.","DP":"invalid argument. The number of comparisons must be greater or equal to the number of p-values to be adjusted. Value: `%u`.","DQ":"invalid argument. Second argument must be one of the following: \"%s\". Value: `%s`.","DR":"invalid option. `%s` option must be a number on the interval: [0, 1]. Option: `%s`.","DS":"invalid argument. First argument must contain nonnegative integers. Indices: (%s). Value: `%s`.","DT":"invalid argument. First argument must be an array of arrays or a two-dimensional ndarray-like object. Number of input array dimensions: %u.","DU":"invalid argument. First argument must be an array of arrays or a two-dimensional ndarray-like object. Value: `%s`.","DV":"invalid arguments. Minimum support must be less than maximum support. Value: `(%f, %f)`.","DW":"invalid arguments. Minimum support must be less than or equal to maximum support. Value: `(%d, %d)`.","DX":"invalid argument. Mean parameter must be a positive number. Value: `%s`.","DY":"invalid argument. Mean parameter must be a probability. Value: `%s`.","DZ":"invalid option. `%s` option must be on the interval: [0, 1]. Option: `%f`.","Da":"invalid argument. Must provide a nonnegative number on the interval: [0, 1]. Value: `%f`.","Db":"invalid argument. First argument must either specify the order of the covariance matrix or be a square two-dimensional ndarray for storing the covariance matrix. Value: `%s`.","Dc":"invalid argument. Second argument must be a one-dimensional ndarray. Value: `%s`.","Dd":"invalid argument. Must provide a one-dimensional ndarray. Value: `%s`.","De":"invalid argument. First argument must either specify the order of the correlation distance matrix or be a square two-dimensional ndarray for storing the correlation distance matrix. Value: `%s`.","Df":"invalid argument. First argument must either specify the order of the correlation matrix or be a square two-dimensional ndarray for storing the correlation matrix. Value: `%s`.","Dg":"invalid argument. Input array must be an array-like object. Value: `%s`.","Dh":"invalid argument. Output array must be an array-like object. Value: `%s`.","Di":"invalid argument. Mask array offset must be a nonnegative integer. Value: `%s`.","Dj":"invalid argument. Must provide recognized data types. Unable to resolve a data type string. Value: `%s`.","Dk":"invalid option. `%s` option must be one of the following: ['%s']. Option: `%s`.","Dl":"invalid argument. Database already contains an entry for the provided URI. Value: `%s`.","Dm":"invalid argument. Database already contains an entry for the provided id. Value: `%s`.","Dn":"invalid argument. First argument must be an array of objects. Value: `%s`.","Do":"unexpected error. File does not exist. Unable to resolve file: `%s`.","Dp":"invalid argument. First argument must be either a string or an array of strings. Value: `%s`.","Dq":"invalid argument. First argument must be either a string or an array of strings. Value: `%s`. Index: `%u`.","Dr":"invalid argument. Must provide either an options object or a function. Value: `%s`.","Ds":"invalid option. `%s` option must be a nonnegative integer or an array of nonnegative integers. Option: `%s`.","Dt":"invalid argument. Fourth argument must contain a single element equal to 0. Value: `%d`.","Du":"invalid argument. Indices must be integer valued. Argument: `%i`. Value: `%s`.","Dv":"invalid argument. Must provide an ndarray. Value: `%s`.","Dw":"invalid argument. Second argument must be a supported data type policy. Value: `%s`.","Dx":"invalid argument. Must provide either an integer or a Date object. Value: `%s`.","Dy":"invalid argument. Must provide a valid duration string. Value: `%s`.","Dz":"invalid argument. Day number must be on the interval: [1, %u]. Value: `%d`.","E0":"invalid argument. First argument must be a string or integer. Value: `%s`.","E1":"invalid option. `%s` option must be one of the following: \"%s\". Value: `%s`.","E2":"invalid argument. Third argument must be either an integer (starting index) or a function. Value: `%s`.","E3":"invalid argument. Fourth argument must be either an integer (ending index) or a function. Value: `%s`.","E4":"invalid argument. Second argument must be a valid position (i.e., be within string bounds). Value: `%d`.","E5":"invalid argument. Must provide a valid code point (i.e., cannot exceed %u). Value: `%s`.","E6":"invalid argument. First argument must be astring. Value: `%s`.","E7":"invalid argument. Second argument must be either an integer (starting index) or a function. Value: `%s`.","E8":"invalid argument. Third argument must be either an integer (ending index) or a function. Value: `%s`.","E9":"invalid argument. ArrayBuffer byte length must be a multiple of %u. Byte length: `%u`.","EA":"invalid argument. Byte offset must be a multiple of %u. Value: `%u`.","EB":"invalid argument. First argument must have a length which is a multiple of %u. Length: `%u`.","EC":"invalid argument. Second argument must be a supported data type. Value: `%s`.","ED":"invalid argument. First argument must be one of the following data types: \"%s\". Value: `%s`.","EE":"invalid argument. Second argument must be either an integer (starting view index) or a function. Value: `%s`.","EF":"invalid argument. Third argument must be either an integer (ending view index) or a function. Value: `%s`.","EG":"invalid option. `size` option must be less than or equal to the length of `x` when `replace` is `false`. Option: `%s`.","EH":"invalid option. `size` option must be less than or equal to the population size when `replace` is `false`. Option: `%s`.","EI":"invalid argument. Second argument must be either a scalar or an ndarray-like object. Value: `%s`.","EJ":"invalid argument. Minimum support must be less than maximum support. Value: `[%f, %f]`.","EK":"invalid argument. Minimum support must be less than or equal to maximum support. Value: `[%d, %d]`.","EL":"invalid %s. `state` array has an incompatible schema version. Expected: `%s`. Actual: `%s.`","EM":"invalid %s. `state` array has an incompatible number of sections. Expected: `%s`. Actual: `%s`.","EN":"invalid argument. Number of draws must be less than or equal to the population size. Value: `%u`.","EO":"invalid argument. Subpopulation size must be less than or equal to the population size. Value: `%u`.","EP":"invalid argument. Must provide a regular expression. Value: `%s`.","EQ":"invalid argument. Second argument must be an object containing property descriptors. Value: `%s`.","ER":"invalid argument. Must provide an object (except null). Value: `%s`.","ES":"invalid argument. First argument must be an object (except null). Value: `%s`.","ET":"unexpected error. Encountered an invalid record. Field %d on line %d contains a closing quote which is not immediately followed by a delimiter or newline.","EU":"unexpected error. Encountered an invalid record. Field %d on line %d contains an opening quote which does not immediately follow a delimiter or newline.","EV":"unexpected error. Encountered an invalid record. Field %d on line %d contains an escape sequence which is not immediately followed by a special character sequence.","EW":"unexpected error. Encountered an invalid record. Field %d on line %d contains an escape sequence within a quoted field which is not immediately followed by a quote sequence.","EX":"invalid argument. First argument must be a function having at least one parameter. Value: `%s`.","EY":"invalid argument. All arguments must be objects. Index: `%u`. Value: `%s`.","EZ":"invalid argument. First argument must be a non-null object. Value: `%s`.","Ea":"invalid argument. First argument must be an ndarray whose last dimension is of size %u. Actual size: `%u`.","Eb":"invalid argument. Attempting to scale a weight vector by a nonpositive value. This is likely due to too large a value of eta * lambda. Value: `%f`.","Ec":"invalid argument. Output argument must be a one-dimensional ndarray. Value: `%s`.","Ed":"invalid argument. Must provide a two-dimensional ndarray. Value: `%s`.","Ee":"invalid argument. Number of matrix columns must match centroid dimensions. Expected: `%u`. Actual: `%u`.","Ef":"invalid argument. First argument must be an integer, null, or undefined. Value: `%s`.","Eg":"invalid argument. Second argument must be an integer, null, or undefined. Value: `%s`.","Eh":"invalid argument. Third argument must be an integer, null, or undefined. Value: `%s`.","Ei":"invalid argument. Third argument cannot be zero. Value: `%s`.","Ej":"invalid argument. First argument must be a valid subsequence string. Value: `%s`.","Ek":"invalid argument. A subsequence string must have a non-zero increment. Value: `%s`.","El":"invalid argument. The subsequence string resolves to a slice which exceeds index bounds. Value: `%s`.","Em":"invalid argument. Provided arguments must be either a Slice, integer, null, or undefined. Argument: `%d`. Value: `%s`.","En":"invalid operation. Unsupported slice operation. Value: `%s`.","Eo":"invalid operation. Number of array dimensions does not match the number of slice dimensions. Array shape: (%s). Slice dimensions: %u.","Ep":"invalid operation. Slice exceeds array bounds. Array shape: (%s).","Eq":"invalid operation. A subsequence increment must be a non-zero integer. Value: `%s`.","Er":"invalid operation. A subsequence may only include a single ellipsis. Value: `%s`.","Es":"invalid argument. Cannot write to a read-only array.","Et":"invalid argument. Number of slice dimensions does not match the number of array dimensions. Array shape: (%s). Slice dimensions: %u.","Eu":"invalid argument. Slice arguments must be either a Slice, integer, null, or undefined. Value: `%s`.","Ev":"invalid operation. Number of slice dimensions does not match the number of array dimensions. Array shape: (%s). Slice dimensions: %u.","Ew":"invalid operation. Assigned value cannot be safely cast to the target array data type. Data types: [%s, %s].","Ex":"invalid operation. Unsupported target array data type. Data type: `%s`.","Ey":"invalid argument. Index must be on the interval: [0, %d]. Value: `%d`.","Ez":"invalid argument. Slice exceeds array bounds. Array shape: (%s).","F0":"invalid argument. Input array values cannot be safely cast to the output array data type. Data types: [%s, %s].","F1":"invalid argument. Second argument must be an ndarray. Value: `%s`.","F2":"invalid argument. First argument must be an ndarray having at least two dimensions.","F3":"invalid argument. Second argument must be an array of nonnegative integers. Value: `%s`.","F4":"invalid option. Cannot write to read-only array.","F5":"invalid argument. First argument must be an array of nonnegative integers. Value: `%s`.","F6":"invalid argument. Must provide an ndarray having a supported data type. Value: `%s`.","F7":"invalid argument. First argument must be an ndarray having one or more dimensions. Number of dimensions: %d.","F8":"invalid argument. Dimension index exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","F9":"invalid argument. Third argument must be either a Slice, integer, null, or undefined. Value: `%s`.","FA":"invalid argument. First argument must be an ndarray having at least three dimensions.","FB":"invalid argument. Index must resolve to a value on the interval: [0, %d]. Value: `%d`.","FC":"invalid argument. First argument must be a recognized index mode. Value: `%s`.","FD":"invalid argument. Third argument exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","FE":"invalid argument. Number of indices does not match the number of array dimensions. Array shape: (%s). Number of indices: %u.","FF":"invalid argument. Each index argument must be either an integer, null, or undefined. Value: `%s`.","FG":"invalid argument. First argument must be a complex number. Value: `%s`.","FH":"invalid arguments. Input arrays must be broadcast compatible.","FI":"invalid argument. The first and second arguments must have the same length.","FJ":"invalid argument. First argument must be either an ndarray or an array of ndarrays. Value: `%s`.","FK":"invalid argument. An ndarray argument must be an ndarray. Value: `%s`.","FL":"invalid argument. Second argument must be a valid property name. Value: `%s`.","FM":"invalid argument. First argument must have a `%s` method.","FN":"invalid argument. Second argument must an array of strings. Value: `%s`.","FO":"invalid argument. Third argument must be a supported data type. Value: `%s`.","FP":"invalid argument. Index argument is out-of-bounds. Value: `%s`.","FQ":"invalid argument. Second argument must be a complex number. Value: `%s`.","FR":"invalid argument. Index arguments must be integers. Value: `%s`.","FS":"invalid argument. Slice exceeds array bounds. Array length: %d.","FT":"invalid argument. Input array and the output array slice are broadcast incompatible. Array length: %u. Desired length: %u.","FU":"invalid operation. Slice exceeds array bounds.","FV":"invalid argument. First argument must be a valid index array.","FW":"invalid operation. This array index instance has already been freed and can no longer be used.","FX":"invalid argument. First argument must be a complex-valued floating-point array. Value: `%s`.","FY":"invalid operation. Index exceeds array bounds.","FZ":"invalid operation. Unrecognized array index type. Value: `%s`.","Fa":"invalid operation. Unable to resolve array index. Value: `%s`.","Fb":"invalid option. `%s` option is missing a `%s` method. Option: `%s`.","Fc":"invalid operation. If not provided an initial value, an array must contain at least one element.","Fd":"invalid arguments. Must provide equal length array-like objects.","Fe":"Index out of bounds","Ff":"invalid option. `%s` option must be less than or equal to 64. Option: `%u`.","Fg":"invalid argument. Unable to parse input string as a complex number. Value: `%s`.","Fh":"invalid operation. Cannot access settings for a REPL which has already closed.","Fi":"invalid argument. First argument must be a recognized setting. Value: `%s`.","Fj":"invalid invocation. `this` is not a boolean array.","Fk":"invalid argument. Unable to parse commits for package: `%s`.","Fl":"invalid argument. Unrecognized release type: `%s`.","Fm":"invalid argument. First argument must be a supported BLAS memory layout. Value: `%s`.","Fn":"invalid argument. First argument must be an existing theme name. Value: `%s`.","Fo":"invalid argument. First argument must not be the default theme name. Value: `%s`.","Fp":"invalid argument. Second argument must be an object. Value: `%s`.","Fq":"invalid arguments. Number of values does not equal the number of falsy values in the mask array.","Fr":"invalid arguments. Insufficient values to satisfy mask array.","Fs":"invalid arguments. Input arguments are not broadcast compatible.","Ft":"invalid arguments. Number of values does not equal the number of truthy values in the mask array.","Fu":"invalid argument. Third argument cannot be safely cast to the input array data type. Data types: [%s, %s].","Fv":"invalid argument. First argument must be a boolean. Value: `%s`.","Fw":"invalid argument. The third argument must be broadcast compatible with the second argument. Array shape: (%d). Desired shape: (%d).","Fx":"invalid argument. First argument must be a valid order. Value: `%s`.","Fy":"invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.","Fz":"invalid argument. Third argument must be a nonnegative integer. Value: `%d`.","G0":"invalid argument. Eighth argument must be non-zero. Value: `%d`.","G1":"invalid argument. Twelfth argument must be non-zero. Value: `%d`.","G2":"invalid argument. Seventh argument must be non-zero. Value: `%d`.","G3":"invalid argument. Tenth argument must be non-zero. Value: `%d`.","G4":"invalid argument. Fourth argument must be greater than or equal to max(1,%d). Value: `%d`.","G5":"invalid argument. First argument must be a string or an array of strings. Value: `%s`.","G6":"invalid option. `%s` option must be a valid mode. Option: `%s`.","G7":"invalid argument. First argument must be a nonnegative integer. Value: `%d`.","G8":"invalid argument. Sixth argument must be greater than or equal to %d. Value: `%d`.","G9":"invalid argument. Eighth argument must be greater than or equal to %d. Value: `%d`.","GA":"invalid argument. Second argument must specify whether to reference the lower or upper triangular matrix. Value: `%s`.","GB":"invalid argument. Sixth argument must be non-zero. Value: `%d`.","GC":"invalid argument. Tenth argument must be greater than or equal to max(1,%d). Value: `%d`.","GD":"invalid argument. First argument must specify whether the reference the lower or upper triangular matrix. Value: `%s`.","GE":"invalid argument. Second argument must be a nonnegative integer. Value: `%d`.","GF":"invalid argument. Fifth argument must be non-zero. Value: `%d`.","GG":"invalid argument. Second argument must be a valid transpose operation. Value: `%s`.","GH":"invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.","GI":"invalid argument. Ninth argument must be non-zero.","GJ":"invalid argument. Twelfth argument must be non-zero.","GK":"invalid argument. Eleventh argument must be non-zero.","GL":"invalid argument. Fifteenth argument must be non-zero.","GM":"invalid argument. Eighth argument must be greater than or equal to max(1,%d). Value: `%d`.","GN":"invalid argument. First argument must specify whether to reference the lower or upper triangular matrix. Value: `%s`.","GO":"invalid argument. Third argument must be a valid transpose operation. Value: `%s`.","GP":"invalid argument. Fourth argument must be a valid diagonal type. Value: `%s`.","GQ":"invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.","GR":"invalid argument. Seventh argument must be greater than or equal to max(1,%d). Value: `%d`.","GS":"invalid argument. Ninth argument must be non-zero. Value: `%d`.","GT":"invalid argument. First argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.","GU":"invalid argument. Third argument must be a valid diagonal type. Value: `%s`.","GV":"invalid argument. First argument must be a valid transpose operation. Value: `%s`.","GW":"invalid argument. Tenth argument must be non-zero.","GX":"invalid argument. Fourteenth argument must be non-zero.","GY":"invalid arguments. Array must have the same shape.","GZ":"invalid argument. Second argument must be an array of integers. Value: `%s`.","Ga":"invalid argument. First argument must be an ndarray having at least %d dimensions.","Gb":"invalid argument. Dimension indices must be sorted in ascending order. Value: `%s`.","Gc":"invalid argument. Dimension indices must be unique. Value: `%s`.","Gd":"invalid argument. First argument must be an array of ndarrays. Value: `%s`.","Ge":"invalid argument. First argument must be an array of ndarrays which are broadcast-compatible. Value: `%s`.","Gf":"invalid argument. First argument must be an array of ndarrays having at least %d dimensions after broadcasting.","Gg":"invalid argument. Index argument is out-of-bounds. Value: `%d`.","Gh":"invalid argument. Sixth argument must be a nonnegative integer. Value: `%d`.","Gi":"invalid argument. Ninth argument must be greater than or equal to max(1,%d). Value: `%d`.","Gj":"invalid argument. Eleventh argument must be greater than or equal to max(1,%d). Value: `%d`.","Gk":"invalid argument. Fourteenth argument must be greater than or equal to max(1,%d). Value: `%d`.","Gl":"invalid argument. First argument must be an ndarray containing double-precision floating-point numbers. Value: `%s`.","Gm":"invalid argument. Second argument must be an ndarray containing double-precision floating-point numbers. Value: `%s`.","Gn":"invalid argument. First argument must have at least one dimension.","Go":"invalid argument. Second argument must have at least one dimension.","Gp":"invalid argument. Third argument must be a negative integer. Value: `%s`.","Gq":"invalid argument. Third argument must be a value on the interval: [%d,%d]. Value: `%d`.","Gr":"invalid argument. The size of the contracted dimension must be the same for both input ndarrays. Dim(%s,%d) = %d. Dim(%s,%d) = %d.","Gs":"invalid arguments. Input ndarrays must be broadcast compatible. Shape(%s) = (%s). Shape(%s) = (%s).","Gt":"invalid argument. Cannot write to read-only array.","Gu":"invalid arguments. The first and second arguments must have the same shape.","Gv":"unexpected error. Environment does not support WebAssembly.","Gw":"invalid invocation. Unable to perform write operation, as the WebAssembly module is not bound to an underlying WebAssembly memory instance.","Gx":"invalid argument. Second argument is incompatible with the specified byte offset and available memory. Resize the underlying memory instance in order to accommodate the list of provided values.","Gy":"invalid invocation. Unable to perform read operation, as the WebAssembly module is not bound to an underlying WebAssembly memory instance.","Gz":"invalid argument. Second argument is incompatible with the specified byte offset and available memory. Not enough values to fill the provided output array.","H0":"invalid argument. Must provide a WebAssembly memory instance. Value: `%s`.","H1":"invalid argument. First argument must be an ndarray containing single-precision floating-point numbers. Value: `%s`.","H2":"invalid argument. Second argument must be an ndarray containing single-precision floating-point numbers. Value: `%s`.","H3":"invalid invocation. `this` is not a Float64ArrayFE.","H4":"invalid argument. First argument must be a supported byte order. Value: `%s`.","H5":"invalid argument. Second argument must a data type. Value: `%s`.","H6":"invalid argument. First argument must be an ndarray-like object having a supported data type. Value: `%s`.","H7":"invalid argument. Second argument must be an ndarray-like object having a supported data type. Value: `%s`.","H8":"invalid invocation. `this` is not %s %s.","H9":"invalid argument. First argument must be a supported data type. Value: `%s`.","HA":"invalid argument. Must provide an ArrayBuffer. Value: `%s`.","HB":"invalid argument. Second argument must be a data type. Value: `%s`.","HC":"invalid option. Each key object must have a `name` property. Value: `%s`.","HD":"invalid option. Each key object's `name` property must be a string. Value: `%s`.","HE":"invalid option. Each key object's `%s` property must be a boolean. Value: `%s`.","HF":"invalid option. Each action must be an array of objects. Value: `%s`.","HG":"invalid argument. First argument must be a valid index ndarray.","HH":"invalid operation. This ndarray index instance has already been freed and can no longer be used.","HI":"invalid operation. Unrecognized ndarray index type. Value: `%s`.","HJ":"invalid operation. Index exceeds ndarray bounds.","HK":"invalid operation. Number of indices does not match the number of array dimensions. Array shape: (%s). Index dimensions: %u.","HL":"invalid operation. Unable to resolve ndarray index. Value: `%s`.","HM":"invalid argument. First argument is not compatible with the specified index \"kind\". Type: %s. Kind: %s.","HN":"invalid argument. First argument must be greater than or equal to the number of dimensions in the input ndarray. Number of dimensions: %d. Value: `%d`.","HO":"invalid argument. Specified dimension index is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `[%s]`.","HP":"invalid argument. Must provide unique dimension indices. Value: `[%s]`.","HQ":"invalid argument. Must provide the same number of dimension indices as the number of dimensions in the input ndarray. Number of dimensions: %d. Value: `[%s]`.","HR":"invalid argument. Must provide dimension indices which resolve to nonnegative indices arranged in ascending order. Value: `[%s]`.","HS":"invalid argument. Specified axis is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `%d`.","HT":"invalid argument. Each key in the keybindings argument must correspond to a single action. Value: `%s`","HU":"invalid argument. First argument must be a valid action name. Value: `%s`.","HV":"invalid argument. Each key in the keys argument must correspond to a single action. Value: `%s`","HW":"invalid argument. Second argument must be an array of data types. Value: `%s`.","HX":"invalid argument. Third argument must be an array of data types. Value: `%s`.","HY":"invalid argument. Fourth argument must be a supported output data type policy. Value: `%s`.","HZ":"invalid argument. First argument must have one of the following data types: \"%s\". Data type: `%s`.","Ha":"invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d.","Hb":"invalid argument. Third argument contains an out-of-bounds dimension index. Value: [%s].","Hc":"invalid argument. Third argument must contain a list of unique dimension indices. Value: [%s].","Hd":"invalid argument. Number of specified dimensions cannot exceed the number of dimensions in the input array. ndims(x) == %d. Value: [%s].","He":"invalid argument. Arrays which are not being reduced must have the same number of non-reduced dimensions. ndims(x) == %d. Number of reduced dimensions: %d. ndims(arrays[%d]) == %d.","Hf":"invalid argument. Non-reduced dimensions must be consistent across all provided arrays. Input array shape: [%s]. Non-reduced dimension indices: [%s]. Non-reduced dimensions: [%s]. Array shape: [%s] (index: %d).","Hg":"invalid argument. The second argument cannot be safely cast to the input array data type. Data type: %s. Value: `%s`.","Hh":"invalid argument. Second argument must be broadcast-compatible with the non-reduced dimensions of the input array.","Hi":"invalid argument. Second argument cannot be safely cast to the input array data type. Value: `%s`.","Hj":"invalid argument. Third argument must be an ndarray-like object. Value: `%s`.","Hk":"invalid option. `%s` option must be an array of integers. Option: `%s`.","Hl":"invalid option. `%s` option contains an out-of-bounds dimension index. Option: [%s].","Hm":"invalid option. `%s` option specifies more dimensions than exists in the input array. Number of dimensions: %d. Option: [%s].","Hn":"invalid argument. Number of specified dimensions cannot exceed the number of dimensions in the input array. Number of dimensions: %d. Value: [%s].","Ho":"invalid argument. Arrays which are not being reduced must have the same number of non-reduced dimensions. Input array shape: [%s]. Number of non-reduced dimensions: %d. Array shape: [%s] (index: %d).","Hp":"invalid argument. Second argument must be an ndarray-like object. Value: `%s`.","Hq":"invalid argument. Second argument must have one of the following data types: \"%s\". Data type: `%s`.","Hr":"invalid argument. Fourteenth argument must be non-zero. Value: `%d`.","Hs":"invalid argument. Seventeenth argument must be non-zero. Value: `%d`.","Ht":"invalid argument. Eighteenth argument must be non-zero. Value: `%d`.","Hu":"invalid option. `%s` option contains duplicate indices. Option: [%s].","Hv":"invalid argument. First argument must be an object having a \"default\" property and an associated method.","Hw":"invalid argument. Second argument must contain arrays of data types. Value: `%s`.","Hx":"invalid argument. Argument %d must have one of the following data types: \"%s\". Data type: `%s`.","Hy":"invalid argument. Argument %d must be an ndarray-like object. Value: `%s`.","Hz":"invalid arguments. Input and output arrays must have the same shape.","I0":"invalid argument. First argument specifies an unexpected number of types. A pair of input and output ndarray data types must be specified for each provided strided function.","I1":"invalid argument. First argument specifies an unexpected number of types. An input ndarray data type must be specified for each provided strided function.","I2":"invalid argument. Array arguments after the first two arrays must have the same number of loop dimensions. Input array shape: [%s]. Number of loop dimensions: %d. Array shape: [%s] (index: %d).","I3":"invalid argument. Loop dimensions must be consistent across all provided arrays. Input array shape: [%s]. Loop dimension indices: [%s]. Loop dimensions: [%s]. Array shape: [%s] (index: %d).","I4":"invalid argument. First argument must be an object having a \"types\" property whose associated value is an array-like object.","I5":"invalid argument. First argument must be an object having a \"fcns\" property whose associated value is an array-like object containing functions.","I6":"invalid argument. Fourth argument must be an object having a supported output data type policy. Value: `%s`.","I7":"invalid argument. Fourth argument must be an object having a supported casting policy. Value: `%s`.","I8":"invalid operation. Unable to promote the input and output data types. Input data type: %s. Output data type: %s.","I9":"invalid argument. Third argument must be a supported casting policy. Value: `%s`.","IA":"invalid option. `%s` option must be an object containing properties having values which are objects. Option: `%s`.","IB":"invalid option. `%s` option must be an object having %s `%s` property which is an array of strings. Option: `%s`.","IC":"invalid option. `%s` option must have %s `%s` property.","ID":"invalid argument. Second argument must be either an ndarray or a numeric scalar value. Value: `%s`.","IE":"invalid argument. Eleventh argument must be non-zero. Value: `%d`.","IF":"invalid option. `%s` option must be a valid memory layout. Option: `%s`.","IG":"invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d. ndims(z) == %d.","IH":"invalid argument. Unable to resolve an output data type. The output data type policy is \"same\" and yet the input data types are not equal. Data types: [%s].","II":"invalid argument. Unable to apply type promotion rules when resolving a data type to which the input data types can be safely cast. Data types: [%s].","IJ":"invalid argument. %s argument must have one of the following data types: \"%s\". Data type: `%s`.","IK":"invalid option. `%s` option must be a valid index mode. Option: `%s`.","IL":"invalid option. `%s` option must be a memory layout. Option: `%s`.","IM":"invalid argument. ArrayBuffer is incompatible with the specified data type. Value: `%s`.","IN":"invalid argument. Must provide a length, ArrayBuffer, typed array, array-like object, iterable, data type, or options object. Value: `%s`.","IO":"invalid argument. First argument must be a length, ArrayBuffer, typed array, array-like object, or iterable. Value: `%s`.","IP":"invalid argument. Third argument must be a recognized/supported data type. Value: `%s`.","IQ":"invalid argument. Fourth argument must be a recognized/supported data type. Value: `%s`.","IR":"invalid argument. Fifth argument must be greater than or equal to max(1,%d). Value: `%d`.","IS":"invalid argument. Second argument must have an integer data type. Value: `%s`.","IT":"invalid argument. Second argument must be an integer or an ndarray-like object. Value: `%s`.","IU":"invalid argument. Union types may only be initialized by a single member.","IV":"invalid invocation. `this` is not a struct instance.","IW":"invalid operation. struct does not have any fields.","IX":"unexpected error. Unrecognized data type. Value: `%s`.","IY":"invalid assignment. Assigned value cannot be cast to the data type of `%s`. Data types: [%s, %s].","IZ":"invalid argument. Field objects must have the following properties: \"%s\". Value: `%s`.","Ia":"invalid argument. Union types cannot contain nested union types. Value: `%s`.","Ib":"invalid argument. Union types can only contain one field with a default value. Value: `%s`.","Ic":"invalid argument. Union types must contain fields having the same byte length. Value: `%s`.","Id":"invalid argument. `%s` field must be a string. Value: `%s`.","Ie":"invalid argument. `%s` field must be a boolean. Value: `%s`.","If":"invalid argument. `%s` field must be a positive integer. Value: `%s`.","Ig":"invalid assignment. `%s` must be a `struct` instance. Value: `%s`.","Ih":"invalid assignment. Assigned value cannot be cast to the data type of `%s`. Value: `%s`.","Ii":"invalid assignment. `%s` must be a `struct` instance having the same byte length.","Ij":"invalid assignment. `%s` must be an array-like object. Value: `%s`.","Ik":"invalid assignment. `%s` must be an array-like object having length %u.","Il":"invalid argument. Byte length must be a nonnegative integer. Value: `%s`.","Im":"invalid argument. ArrayBuffer has insufficient capacity. Minimum capacity: `%u`.","In":"invalid argument. First argument must be a `struct` instance. Value: `%s`.","Io":"invalid argument. `%s` field must be one of the following: \"%s\". Value: `%s`.","Ip":"invalid argument. First argument must be an array of objects having unique field names. Value: `%s`.","Iq":"invalid argument. `%s` field must be a non-empty string. Value: `%s`.","Ir":"invalid argument. First argument must be an array of objects. Value: `%s`. Index: `%d`.","Is":"invalid argument. Union types must be an array of objects. Value: `%s`. Index: `%d`.","It":"invalid argument. Field name must be one of the following: \"%s\". Value: `%s`.","Iu":"invalid argument. `%s` field must be either a struct type or one of the following: \"%s\". Value: `%s`.","Iv":"invalid assignment. `%s` must be an array-like object containing `struct` instances having the same byte length.","Iw":"invalid argument. First argument must be one of the following: \"%s\". Value: `%s`.","Ix":"invalid argument. First argument must be an ArrayBuffer or a data object. Value: `%s`.","Iy":"invalid argument. First argument must be either a struct constructor or struct schema. Value: `%s`.","Iz":"invalid argument. Each element of a provided input array must be a valid object or a struct instance having the same layout as elements in the desired output array.","J0":"invalid argument. Environment lacks Symbol.iterator support. First argument must be a length, ArrayBuffer, typed array, or array-like object. Value: `%s`.","J1":"invalid argument. First argument must be a length, ArrayBuffer, typed array, array-like object, or an iterable. Value: `%s`.","J2":"invalid argument. Each element of a provided input iterable must be either a valid object or a struct instance having the same layout as elements in the desired output array.","J3":"invalid argument. Second argument must be a multiple of %u. Value: `%u`.","J4":"invalid argument. Second argument exceeds the bounds of the ArrayBuffer. Value: `%s`.","J5":"invalid argument. ArrayBuffer view byte length must be a multiple of %u. View byte length: `%u`.","J6":"invalid invocation. `this` is not a %s.","J7":"invalid argument. Must provide either a valid object or a struct instance. Value: `%s`.","J8":"invalid argument. First argument must be a valid orientation. Value: `%s`.","J9":"invalid argument. Second argument must be a valid orientation. Value: `%s`.","JA":"invalid argument. The first argument must be an ndarray. Value: `%s`.","JB":"invalid argument. Second argument must be either an ndarray or a scalar value. Value: `%s`.","JC":"invalid argument. Third argument must be an ndarray. Value: `%s`.","JD":"invalid argument. Third argument must be either an ndarray or an integer. Value: `%s`.","JE":"invalid operation. Environment lacks support for HTTP/2. Ensure that you are running on a Node.js version which supports HTTP/2 and has been built to include support for the Node.js `crypto` module.","JF":"invalid argument. Input arrays must have the same number of dimensions. First array dimensions: %d. Second array dimensions: %d.","JG":"invalid argument. Input arrays must have the same shape. First array shape: [%s]. Second array shape: [%s].","JH":"invalid argument. Output array must have the same number of non-reduced dimensions as input arrays. Input array shape: [%s]. Number of non-reduced dimensions: %d. Output array shape: [%s].","JI":"invalid argument. Array arguments after the first array must have the same number of loop dimensions. Input array shape: [%s]. Number of loop dimensions: %d. Array shape: [%s] (index: %d).","JJ":"invalid argument. Second argument contains an out-of-bounds index. Array shape: (%s). Value: `[%s]`.","JK":"invalid argument. Thirteenth argument must be non-zero. Value: `%d`.","JL":"invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.","JM":"invalid argument. Fifth argument must be non-zero. Value: `%s`.","JN":"invalid argument. Sixth argument must be non-zero. Value: `%s`.","JO":"invalid arguments. Unable to resolve an ndarray function supporting the provided argument data types.","JP":"invalid argument. First argument specifies an unexpected number of types. Two input ndarray data types must be specified for each provided strided function.","JQ":"invalid argument. First argument specifies an unexpected number of types. An output ndarray data type must be specified for each provided strided function.","JR":"invalid operation. Unable to promote the input and output data types. Input data types: [%s]. Output data type: %s.","JS":"invalid argument. Fourth argument must be a supported casting policy. Value: `%s`.","JT":"invalid argument. Fourth argument must be an ndarray. Value: `%s`.","JU":"invalid option. `%s` option must be a supported data type. Option: `%s`.","JV":"invalid argument. First argument must be either a supported data type string, a struct constructor, or another data type instance. Value: `%s`.","JW":"invalid argument. Second argument must be a valid sort order. Value: `%s`.","JX":"invalid argument. Second argument must be either an ndarray, a numeric scalar value, or a supported string. Value: `%s`.","JY":"invalid argument. Unable to apply type promotion rules when resolving a data type to which the input ndarrays can be safely cast. Data types: [%s].","JZ":"invalid argument. The list of input ndarrays cannot be safely cast to the data of the output ndarray. Input data types: [%s]. Output data type: %s.","Ja":"invalid argument. Second argument is not broadcast compatible with the list of input ndarrays. Array shape: (%s). Desired shape: (%s).","Jb":"invalid argument. Second argument must be a negative integer. Value: `%s`.","Jc":"invalid argument. First argument cannot be safely cast to the output data type. Data types: [%s, %s].","Jd":"invalid option. First argument cannot be safely cast to the specified data type. Input data type: %s. Option: `%s`.","Je":"invalid argument. First argument must be an ndarray having at least one dimension.","Jf":"invalid argument. Second argument must be either a number, complex number, or an ndarray. Value: `%s`.","Jg":"invalid argument. Third argument must have one of the following data types: \"%s\". Data type: `%s`.","Jh":"invalid argument. Third argument must be either a number, complex number, or an ndarray. Value: `%s`.","Ji":"invalid argument. Fourth argument must have one of the following data types: \"%s\". Data type: `%s`.","Jj":"invalid argument. Fourth argument must be either a boolean or an ndarray. Value: `%s`.","Jk":"invalid argument. First argument must be a nonnegative integer or an array of nonnegative integers. Value: `%s`.","Jl":"invalid option. `%s` option must be a supported order. Option: `%s`.","Jm":"invalid argument. Argument %d cannot be safely cast to the desired output data type. Output data type: %s. Argument data type: %s.","Jn":"invalid invocation. Must provide at least two arguments.","Jo":"invalid invocation. Must provide at least one argument.","Jp":"invalid argument. Last argument must be a one-dimensional ndarray. Value: `%s`.","Jq":"invalid argument. Each ndarray argument must have fewer than two dimensions. Argument: %d.","Jr":"invalid argument. First argument must contain at least one element greater than zero (i.e., the total number of observations must be greater than zero).","Js":"invalid argument. First argument must be an ndarray having two or more dimensions.","Jt":"invalid invocation. Must provide at least three arguments.","Ju":"invalid invocation. `this` is not a floating-point number array.","Jv":"invalid argument. The number of elements (means) in the second argument must match correlation matrix dimensions. Expected: `%u`. Actual: `%u`.","Jw":"%s %s failed with exit code: %s.","Jx":"%s %s failed due to termination signal: %s.","Jy":"invalid argument. Second argument must be either an ndarray or an integer. Value: `%s`.","Jz":"invalid argument. Second argument cannot be safely cast to the desired output data type. Output data type: %s. Argument data type: %s.","K0":"invalid option. `%s` option must be a zero-dimensional ndarray.","K1":"invalid argument. Second argument must be either an ndarray-like object, a numeric value, or a supported string. Value: `%s`.","K2":"invalid argument. Second argument must be a zero-dimensional ndarray.","K3":"invalid argument. Must provide an integer on the interval [0, 2^64-1]. Value: `%s`.","K4":"invalid argument. Must provide an integer on the interval [0, 2^53-1]. Value: `%s`.","K5":"invalid argument. Must provide an array. Value: `%s`.","K6":"invalid argument. Must provide an array of length 2. Value: `[%s]`.","K7":"invalid argument. Must provide an array of integer values on the interval [%u, %u]. Value: `[%s]`.","K8":"invalid argument. First argument must be a nonnegative integer on the interval [%u, %u]. Value: `%s`.","K9":"invalid argument. Second argument must be a nonnegative integer on the interval [%u, %u]. Value: `%s`.","KA":"invalid argument. Must provide an integer on the interval [%d, %d]. Value: `%s`.","KB":"invalid argument. Fourth argument must be an ndarray-like object. Value: `%s`.","KC":"invalid option. `%s` option must be an array of nonnegative integers. Option: `%s`.","KD":"invalid argument. First argument must have one of the following data types: \"%s\". Value: `%s`.","KE":"invalid argument. Must provide an ndarray having two or more dimensions. Number of dimensions: `%u`.","KF":"invalid option. `%s` option must be a negative integer. Option: `%s`.","KG":"invalid argument. Third argument must be an array of integers. Value: `%s`.","KH":"invalid argument. Third argument must be an array of nonnegative integers. Value: `%s`.","KI":"invalid argument. Must provide a complex-valued floating-point ndarray. Value: `%s`.","KJ":"invalid argument. Specified dimension index is out-of-bounds. Must be on the interval: [-%u, %u]. Value: `%d`.","KK":"invalid arguments. Arrays must have the same number of dimensions (i.e., same rank). ndims(x) == %d. ndims(y) == %d. ndims(z) == %d. ndims(w) == %d.","KL":"invalid argument. Second argument must have at least as many elements as the number of dimensions of the first argument. Number of input dimensions: `%u`. Number of repetitions: `%u`.","KM":"invalid argument. Must provide exactly two dimension indices. Value: `[%s]`.","KN":"invalid argument. First argument must be an ndarray having two or more dimensions. Number of dimensions: %d.","KO":"invalid argument. The first argument cannot be safely cast to the output array data type. Data type: %s. Value: `%s`.","KP":"invalid argument. Product of the sizes must be equal to the size of the dimension to be unflattened. Dimension: %d. Size: %d. Value: `[%s]`.","KQ":"invalid argument. First argument must contain one or more ndarrays. Value: `%s`.","KR":"invalid argument. First argument must be an array-like object containing one or more ndarrays. Value: `%s`.","KS":"invalid argument. Must provide one- or two-dimensional ndarrays. Number of dimensions: `%u`.","KT":"invalid argument. All ndarrays must have the same number of columns. Expected number of columns: `%u`. Actual number of columns: `%u`.","KU":"invalid argument. Second argument must be a two-dimensional ndarray. Number of dimensions: `%u`.","KV":"invalid option. Dimension index exceeds the number of dimensions. Number of dimensions: %d. Value: `%d`.","KW":"invalid argument. All ndarrays must have the same number of rows. Expected number of rows: `%u`. Actual number of rows: `%u`.","KX":"invalid argument. Second argument must be a string or an array of strings. Value: `%s`."} diff --git a/tools/database/datapackage.json b/tools/database/datapackage.json deleted file mode 100644 index c925958..0000000 --- a/tools/database/datapackage.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "name": "stdlib-error-database", - "version": "", - "title": "Standard library error code database.", - "description": "A mapping of standard library error codes to their corresponding error messages.", - "resources": [ - { - "name": "stdlib-error-database-json", - "title": "Standard Library Error Code Database", - "description": "A mapping of standard library error codes to their corresponding error messages.", - "format": "json", - "mediatype": "application/json", - "encoding": "UTF-8", - "hash": "", - "path": "./data/data.json" - }, - { - "name": "stdlib-error-database-csv", - "title": "Standard Library Error Code Database", - "description": "A mapping of standard library error codes to their corresponding error messages.", - "format": "csv", - "mediatype": "plain/csv", - "encoding": "UTF-8", - "hash": "", - "path": "./data/data.csv", - "schema": { - "fields": [ - { - "name": "code", - "title": "Error Code", - "description": "Error code.", - "type": "string", - "format": "default" - }, - { - "name": "message", - "title": "Error Message", - "description": "Error message.", - "type": "string", - "format": "default" - }, - { - "name": "type", - "title": "Error Type", - "description": "Error type.", - "type": "string", - "format": "default" - } - ] - } - } - ], - "sources": [], - "keywords": [ - "stdlib", - "error", - "code", - "database", - "db", - "mapping", - "message", - "msg" - ], - "license": "PDDL-1.0 AND CC0-1.0" -} diff --git a/tools/database/docs/repl.txt b/tools/database/docs/repl.txt deleted file mode 100644 index 5ebbda7..0000000 --- a/tools/database/docs/repl.txt +++ /dev/null @@ -1,18 +0,0 @@ - -{{alias}}() - Returns a mapping of standard library error codes to their corresponding - error messages. - - Returns - ------- - out: Object - Mapping of error codes to corresponding error messages. - - Examples - -------- - > var o = {{alias}}() - {...} - - See Also - -------- - diff --git a/tools/database/docs/types/index.d.ts b/tools/database/docs/types/index.d.ts deleted file mode 100644 index 1f98bbb..0000000 --- a/tools/database/docs/types/index.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Interface describing an object mapping standard library error codes to their corresponding error messages. -*/ -interface Table { - // Table properties: - [code: string]: string; -} - -/** -* Returns a mapping of standard library error codes to their corresponding error messages. -* -* @returns mapping of error codes to corresponding error messages -* -* @example -* var db = database(); -* // returns {...} -*/ -declare function database(): Table; - - -// EXPORTS // - -export = database; diff --git a/tools/database/docs/types/test.ts b/tools/database/docs/types/test.ts deleted file mode 100644 index b856f59..0000000 --- a/tools/database/docs/types/test.ts +++ /dev/null @@ -1,32 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import database = require( './index' ); - - -// TESTS // - -// The function returns a table... -{ - database(); // $ExpectType Table -} - -// The compiler throws an error if the function is provided arguments... -{ - database( 3.12 ); // $ExpectError -} diff --git a/tools/database/examples/index.js b/tools/database/examples/index.js deleted file mode 100644 index cc0c718..0000000 --- a/tools/database/examples/index.js +++ /dev/null @@ -1,36 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var invertObject = require( '@stdlib/object/inverse' ); -var replace = require( '@stdlib/string/replace' ); -var database = require( './../lib' ); - -var db = database(); -var errorMap = invertObject( db ); -var RE_ERR_MSG = /Error\( '([^']+)' \)/; - -function replacer( match, p1 ) { - return 'Error( formatProdErrorMessage( \'' + errorMap[ p1 ] + '\' ) )'; -} - -var code = 'throw new Error( \'insufficient arguments. Must provide at least one iterator function.\' );'; -var transformed = replace( code, RE_ERR_MSG, replacer ); -console.log( transformed ); -// e.g., => 'throw new Error( formatProdErrorMessage( \'0N\' ) );' diff --git a/tools/database/lib/index.js b/tools/database/lib/index.js deleted file mode 100644 index 699c4f3..0000000 --- a/tools/database/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Standard library error code database. -* -* @module @stdlib/error/tools/database -* -* @example -* var database = require( '@stdlib/error/tools/database' ); -* -* var db = database(); -* // returns {...} -*/ - -// MODULES // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/tools/database/lib/main.js b/tools/database/lib/main.js deleted file mode 100644 index 1d0233b..0000000 --- a/tools/database/lib/main.js +++ /dev/null @@ -1,45 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var copy = require( '@stdlib/utils/copy' ); -var CODES = require( './../data/data.json' ); - - -// MAIN // - -/** -* Returns a mapping of standard library error codes to their corresponding error messages. -* -* @returns {Object} mapping of error codes to corresponding error messages -* -* @example -* var db = database(); -* // returns {...} -*/ -function database() { - return copy( CODES ); -} - - -// EXPORTS // - -module.exports = database; diff --git a/tools/database/package.json b/tools/database/package.json deleted file mode 100644 index c5179c2..0000000 --- a/tools/database/package.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "name": "@stdlib/error/tools/database", - "version": "0.0.0", - "description": "Standard library error code database.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "data": "./data", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "scripts": "./scripts", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "utils", - "util", - "utilities", - "utility", - "error", - "err", - "message", - "msg", - "database", - "db", - "code", - "codebase" - ] -} diff --git a/tools/database/scripts/build.js b/tools/database/scripts/build.js deleted file mode 100644 index bacfb40..0000000 --- a/tools/database/scripts/build.js +++ /dev/null @@ -1,232 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var shell = require( 'child_process' ).execSync; -var logger = require( 'debug' ); -var writeFile = require( '@stdlib/fs/write-file' ).sync; -var objectKeys = require( '@stdlib/utils/keys' ); -var merge = require( '@stdlib/utils/merge' ); -var existing = require( './../data/data.json' ); - - -// VARIABLES // - -var debug = logger( 'error:database:build' ); -var RE_DOUBLE_QUOTE = /"/g; - -// Output file paths: -var OUTPUT_JSON = resolve( __dirname, '..', 'data', 'data.json' ); -var OUTPUT_CSV = resolve( __dirname, '..', 'data', 'data.csv' ); - - -// FUNCTIONS // - -/** -* Escapes double quotes in a string. -* -* @private -* @param {string} str - input string -* @returns {string} escaped string -*/ -function escapeQuotes( str ) { - return str.replace( RE_DOUBLE_QUOTE, '""' ); -} - -/** -* Returns the next code in the sequence of form `[a-zA-Z0-9]{2}` (in lexicographical order). -* -* @private -* @param {string} [prev=null] - previous code -* @returns {string} code -*/ -function nextCode( prev ) { - var i; - var c; - var n; - if ( !prev ) { - return '00'; - } - - // Iterate from the last character in the code: - n = prev.length; - for ( i = n-1; i >= 0; i-- ) { - c = prev.charCodeAt( i ); - - // If the last character is a digit between 0 and 8, increment it: - if ( c >= 48 && c <= 56 ) { - return ( prev.substring( 0, i ) + - String.fromCharCode( c+1 ) + - prev.substring( i+1 ) - ); - } - // If the last character is equal to 9, set it to 'A': - if ( c === 57 ) { - return prev.substring( 0, i ) + 'A' + prev.substring( i+1 ); - } - // If the last character is a letter between `A` and `Y`, increment it: - if ( c >= 65 && c <= 89 ) { - return ( prev.substring( 0, i ) + - String.fromCharCode( c+1 ) + - prev.substring( i+1 ) ); - } - // If the last character is equal to `Z`, set it to `a`: - if ( c === 90 ) { - return prev.substring( 0, i ) + 'a' + prev.substring( i+1 ); - } - // If the last character is a letter between `a` and `y`, increment it: - if ( c >= 97 && c <= 121 ) { - return ( prev.substring( 0, i ) + - String.fromCharCode( c+1 ) + - prev.substring( i+1 ) ); - } - // If the last character is equal to `z`, set it to `0`: - if ( c === 122 ) { - prev = prev.substring( 0, i ) + '0' + prev.substring( i+1 ); - } - } -} - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var messages; - var command; - var errType; - var errMsg; - var types; - var parts; - var codes; - var fopts; - var code; - var data; - var msgs; - var next; - var keys; - var csv; - var key; - var msg; - var i; - - debug( 'Extracting errors and generate error codes if not yet present...' ); - messages = new Set(); - next = '00'; - codes = objectKeys( existing ); - for ( i = 0; i < codes.length; i++ ) { - code = codes[ i ]; - messages.add( existing[ code ] ); - if ( code >= next ) { - next = nextCode( code ); - } - } - debug( '%d unique error messages present in the database.', messages.size ); - - // Extract error messages consisting of string literals: - command = [ - 'root_dir="$(git rev-parse --show-toplevel)"', // Determine the root project directory - '\n', - 'base_dir="${root_dir}/lib/node_modules/@stdlib"', // Determine the base directory - '\n', - 'find "${base_dir}" -type f -name \'*.js\' ', - '! -path "**/test/*" ! -path "**/examples/*" ! -path "**/benchmark/*" ! -path "**/scripts/*" ! -path "**/cli/*" ! -path "**/docs/*" ', - '-exec grep -E "^[^*]+new [a-zA-Z]*Error\\( \'[^\']+\' \\)" {} \\;', - '|', - 'sed -E ', - '"s/\\\\\\\'/ESCAPED_QUOTE/g; ', - 's/^.*new ([a-zA-Z]*Error)\\( \'([^\']+)\' \\).*$/\\2 | \\1/; ', - 's/ESCAPED_QUOTE/\\\'/g"' - ].join( '' ); - debug( 'Executing command: %s', command ); - msgs = shell( command ).toString().split( '\n' ); - - // Extract error messages using `@stdlib/string/format`: - command = [ - 'root_dir="$(git rev-parse --show-toplevel)"', // Determine the root project directory - '\n', - 'base_dir="${root_dir}/lib/node_modules/@stdlib"', // Determine the base directory - '\n', - 'find "${base_dir}" -type f -name \'*.js\' ', - '! -path "**/test/*" ! -path "**/examples/*" ! -path "**/benchmark/*" ! -path "**/scripts/*" ! -path "**/cli/*" ! -path "**/docs/*" ', - '-exec grep -E "^[^*]+new [a-zA-Z]*Error\\( format\\( \'[^\']+\'" {} \\;', - '|', - 'sed -E ', - '"s/\\\\\\\'/ESCAPED_QUOTE/g; ', - 's/^.*new ([a-zA-Z]*Error)\\( format\\( \'([^\']+)\'.*$/\\2 | \\1/; ', - 's/ESCAPED_QUOTE/\\\'/g"' - ].join( '' ); - debug( 'Executing command: %s', command ); - msgs = msgs.concat( shell( command ).toString().split( '\n' ) ); - - data = {}; - types = {}; - for ( i = 0; i < msgs.length; i++ ) { - msg = msgs[ i ]; - if ( !msg ) { - continue; - } - parts = msg.split( ' | ' ); - errMsg = parts[ 0 ]; - errType = parts[ 1 ]; - if ( !messages.has( errMsg ) ) { - messages.add( errMsg ); - data[ next ] = errMsg; - types[ next ] = errType; - next = nextCode( next ); - } - } - keys = objectKeys( data ); - if ( keys.length === 0 ) { - debug( 'No new error messages found.' ); - return; - } - debug( 'Writing to JSON file...' ); - fopts = { - 'encoding': 'utf8' - }; - writeFile( OUTPUT_JSON, JSON.stringify( merge( existing, data ), fopts )+'\n' ); - - debug( 'Writing to CSV file...' ); - fopts = { - 'encoding': 'utf8', - 'flag': 'a' // Append to existing file - }; - - csv = ''; - for ( i = 0; i < keys.length; i++ ) { - key = keys[ i ]; - csv += '"' + key + '","' + escapeQuotes( data[ key ] ) + '","' + types[ key ] + '"\n'; // Note: ensures trailing newline - } - writeFile( OUTPUT_CSV, csv, fopts ); -} - - -// MAIN // - -main(); diff --git a/tools/database/test/test.js b/tools/database/test/test.js deleted file mode 100644 index 03d013f..0000000 --- a/tools/database/test/test.js +++ /dev/null @@ -1,43 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var objectKeys = require( '@stdlib/utils/keys' ); -var isPlainObject = require( '@stdlib/assert/is-plain-object' ); -var database = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof database, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function returns an object mappping error codes to error messages', function test( t ) { - var data = database(); - var keys = objectKeys( data ); - t.strictEqual( isPlainObject( data ), true, 'returns expected value' ); - t.strictEqual( keys.length > 0, true, 'the returned object has keys' ); - t.end(); -}); diff --git a/tools/docs/types/index.d.ts b/tools/docs/types/index.d.ts deleted file mode 100644 index 9ad0ecd..0000000 --- a/tools/docs/types/index.d.ts +++ /dev/null @@ -1,134 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/* eslint-disable max-lines */ - -import database = require( './../../../tools/database' ); -import fmtprodmsg = require( './../../../tools/fmtprodmsg' ); -import fmtprodmsgFactory = require( './../../../tools/fmtprodmsg-factory' ); -import id2msg = require( './../../../tools/id2msg' ); -import id2pkg = require( './../../../tools/id2pkg' ); -import msg2id = require( './../../../tools/msg2id' ); -import pkg2id = require( './../../../tools/pkg2id' ); - -/** -* Interface describing the `tools` namespace. -*/ -interface Namespace { - /** - * Returns a mapping of standard library error codes to their corresponding error messages. - * - * @returns mapping of error codes to corresponding error messages - * - * @example - * var db = ns.database(); - * // returns {...} - */ - database: typeof database; - - /** - * Formats an error message for production. - * - * @param code - error code - * @param args - error message arguments - * @returns formatted error message - * - * @example - * var msg = ns.fmtprodmsg( '3', 'wrong_type' ); - * // returns - */ - fmtprodmsg: typeof fmtprodmsg; - - /** - * Returns a function which formats an error message for production. - * - * @param options - function options - * @param options.url - website URL for full error message (default: `'https://stdlib.io/docs/api/latest/error-decoder.html'`) - * @param options.message - error message template with `{{url}}` and `{{code}}` placeholders that will be replaced (default: `'Minified stdlib error code: {{code}}. Visit {{url}} for the full message.'`) - * @returns error formatting function - * - * @example - * var opts = { - * 'url': 'https://stdlib.io/error-decoder.html' - * }; - * - * var fcn = ns.fmtprodmsgFactory( opts ); - * // returns - */ - fmtprodmsgFactory: typeof fmtprodmsgFactory; - - /** - * Returns an error message corresponding to a provided two-character error identifier. - * - * @param id - error identifier - * @returns error message - * - * @example - * var v = ns.id2msg( '8t' ); - * // returns - */ - id2msg: typeof id2msg; - - /** - * Returns a package name associated with a specified error code identifier prefix. - * - * @param id - identifier prefix - * @returns package name - * - * @example - * var v = ns.id2pkg( '0YK' ); - * // returns '@stdlib/math/base/special/sin' - */ - id2pkg: typeof id2pkg; - - /** - * Returns a two-character error identifier corresponding to a provided error message. - * - * @param msg - error message - * @returns two-character error identifier - * - * @example - * var v = ns.msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ); - * // returns '8Z' - */ - msg2id: typeof msg2id; - - /** - * Returns an error code identifier prefix associated with a specified package name. - * - * @param pkg - package name - * @returns identifier prefix - * - * @example - * var v = ns.pkg2id( '@stdlib/math/base/special/sin' ); - * // returns '0YK' - */ - pkg2id: typeof pkg2id; -} - -/** -* Error tools. -*/ -declare var ns: Namespace; - - -// EXPORTS // - -export = ns; diff --git a/tools/docs/types/test.ts b/tools/docs/types/test.ts deleted file mode 100644 index e344b79..0000000 --- a/tools/docs/types/test.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -/* eslint-disable @typescript-eslint/no-unused-expressions */ - -import ns = require( './index' ); - - -// TESTS // - -// The exported value is the expected interface... -{ - ns; // $ExpectType Namespace -} diff --git a/tools/examples/index.js b/tools/examples/index.js deleted file mode 100644 index d903e87..0000000 --- a/tools/examples/index.js +++ /dev/null @@ -1,24 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var objectKeys = require( '@stdlib/utils/keys' ); -var ns = require( './../lib' ); - -console.log( objectKeys( ns ) ); diff --git a/tools/fmtprodmsg-factory/README.md b/tools/fmtprodmsg-factory/README.md deleted file mode 100644 index 1bb4066..0000000 --- a/tools/fmtprodmsg-factory/README.md +++ /dev/null @@ -1,121 +0,0 @@ - - -# fmtprodmsgFactory - -> Return a `function` which formats an error message for production. - -
- -## Usage - -```javascript -var fmtprodmsgFactory = require( '@stdlib/error/tools/fmtprodmsg-factory' ); -``` - -#### fmtprodmsgFactory( \[options] ) - -Returns a `function` which formats an error message for production. - -```javascript -var opts = {}; -var fcn = fmtprodmsgFactory( opts ); -// returns - -var msg = fcn( '3' ); -// returns 'Minified stdlib error code: 3. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=3 for the full message.' -``` - -The function accepts the following `options`: - -- **url**: website URL for full error message. -- **message**: error message template with `{{url}}` and `{{code}}` placeholders that will be replaced. - -To set a custom URL, use the `url` option: - -```javascript -var opts = { - 'url': 'https://stdlib.io/error-decoder.html' -}; - -var fcn = fmtprodmsgFactory( opts ); -// returns - -var msg = fcn( '8' ); -// returns 'Minified stdlib error code: 8. Visit https://stdlib.io/error-decoder.html?code=8 for the full message.' -``` - -To change the error message template, use the `message` option: - -```javascript -var opts = { - 'message': 'Error code: {{code}}. See: {{url}}.' -}; - -var fcn = fmtprodmsgFactory( opts ); -// returns - -var msg = fcn( '27', 'foo', 'bar' ); -// returns 'Error code: 27. See: https://stdlib.io/docs/api/latest/error-decoder.html?code=27&arg[]=foo&arg[]=bar.' -``` - -
- - - -
- -## Examples - - - -```javascript -var fmtprodmsgFactory = require( '@stdlib/error/tools/fmtprodmsg-factory' ); - -var formatProdErrorMessage = fmtprodmsgFactory(); -var msg = formatProdErrorMessage( '3', 'foo' ); -// returns 'Minified stdlib error code: 3. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=3&arg[]=foo for the full message.' - -msg = formatProdErrorMessage( '5', 'foo', 'bar' ); -// returns 'Minified stdlib error code: 5. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=5&arg[]=foo&arg[]=bar for the full message.' - -msg = formatProdErrorMessage( '5', 'foo', 'bar', 123 ); -// returns 'Minified stdlib error code: 5. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=5&arg[]=foo&arg[]=bar&arg[]=123 for the full message.' -``` - -
- - - - - - - - - - - - - - diff --git a/tools/fmtprodmsg-factory/docs/types/index.d.ts b/tools/fmtprodmsg-factory/docs/types/index.d.ts deleted file mode 100644 index 5b93610..0000000 --- a/tools/fmtprodmsg-factory/docs/types/index.d.ts +++ /dev/null @@ -1,69 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/// - -/** -* Formats an error message for production. -* -* @param code - error code -* @param args - error message arguments -* @returns formatted error message -*/ -type FormatProdErrorMsgFunction = ( code: any, ...args: Array ) => string; - -/** -* Interface defining function options. -*/ -interface Options { - /** - * Website URL for full error message. - */ - url?: string; - - /** - * Error message template with `{{url}}` and `{{code}}` placeholders that will be replaced. - */ - message?: string; -} - - -/** -* Returns a function which formats an error message for production. -* -* @param options - function options -* @param options.url - website URL for full error message (default: `'https://stdlib.io/docs/api/latest/error-decoder.html'`) -* @param options.message - error message template with `{{url}}` and `{{code}}` placeholders that will be replaced (default: `'Minified stdlib error code: {{code}}. Visit {{url}} for the full message.'`) -* @returns error formatting function -* -* @example -* var opts = { -* 'url': 'https://stdlib.io/error-decoder.html' -* }; -* -* var fcn = fmtprodmsgFactory( opts ); -* // returns -*/ -declare function fmtprodmsgFactory( options?: Options ): FormatProdErrorMsgFunction; - - -// EXPORTS // - -export = fmtprodmsgFactory; diff --git a/tools/fmtprodmsg-factory/docs/types/test.ts b/tools/fmtprodmsg-factory/docs/types/test.ts deleted file mode 100644 index 1e2125b..0000000 --- a/tools/fmtprodmsg-factory/docs/types/test.ts +++ /dev/null @@ -1,63 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import fmtprodmsgFactory = require( './index' ); - - -// TESTS // - -// The function returns an error formatting function... -{ - fmtprodmsgFactory( {} ); // $ExpectType FormatProdErrorMsgFunction -} - -// The compiler throws an error if the function is provided an unsupported number of arguments... -{ - fmtprodmsgFactory( {}, 21 ); // $ExpectError - fmtprodmsgFactory( {}, 'abc', 123 ); // $ExpectError -} - -// The function returns a function which returns a string... -{ - const opts = { - 'url': 'https://stdlib.io/error-decoder.html' - }; - const fcn = fmtprodmsgFactory( opts ); - fcn( '1' ); // $ExpectType string - fcn( '3', 'wrong_type' ); // $ExpectType string -} - -// The compiler throws an error if the function is provided a `url` option which is not a string... -{ - fmtprodmsgFactory( { 'url': true } ); // $ExpectError - fmtprodmsgFactory( { 'url': false } ); // $ExpectError - fmtprodmsgFactory( { 'url': 123 } ); // $ExpectError - fmtprodmsgFactory( { 'url': [] } ); // $ExpectError - fmtprodmsgFactory( { 'url': {} } ); // $ExpectError - fmtprodmsgFactory( { 'url': ( x: number ): number => x } ); // $ExpectError -} - -// The compiler throws an error if the function is provided a `message` option which is not a string... -{ - fmtprodmsgFactory( { 'message': true } ); // $ExpectError - fmtprodmsgFactory( { 'message': false } ); // $ExpectError - fmtprodmsgFactory( { 'message': 123 } ); // $ExpectError - fmtprodmsgFactory( { 'message': [] } ); // $ExpectError - fmtprodmsgFactory( { 'message': {} } ); // $ExpectError - fmtprodmsgFactory( { 'message': ( x: number ): number => x } ); // $ExpectError -} diff --git a/tools/fmtprodmsg-factory/examples/index.js b/tools/fmtprodmsg-factory/examples/index.js deleted file mode 100644 index 08a1dc8..0000000 --- a/tools/fmtprodmsg-factory/examples/index.js +++ /dev/null @@ -1,34 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var fmtprodmsgFactory = require( './../lib' ); - -var formatProdErrorMessage = fmtprodmsgFactory(); -var msg = formatProdErrorMessage( '3', 'foo' ); -console.log( msg ); -// => 'Minified stdlib error code: 3. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=3&arg[]=foo for the full message.' - -msg = formatProdErrorMessage( '5', 'foo', 'bar' ); -console.log( msg ); -// => 'Minified stdlib error code: 5. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=5&arg[]=foo&arg[]=bar for the full message.' - -msg = formatProdErrorMessage( '5', 'foo', 'bar', 123 ); -console.log( msg ); -// => 'Minified stdlib error code: 5. Visit https://stdlib.io/docs/api/latest/error-decoder.html?code=5&arg[]=foo&arg[]=bar&arg[]=123 for the full message.' diff --git a/tools/fmtprodmsg-factory/lib/defaults.js b/tools/fmtprodmsg-factory/lib/defaults.js deleted file mode 100644 index eca28f1..0000000 --- a/tools/fmtprodmsg-factory/lib/defaults.js +++ /dev/null @@ -1,39 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2023 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MAIN // - -/** -* Returns default options. -* -* @private -* @returns {Object} default options -*/ -function defaults() { - return { - 'url': 'https://stdlib.io/docs/api/latest/error-decoder.html', - 'message': 'Minified stdlib error code: {{code}}. Visit {{url}} for the full message.' - }; -} - - -// EXPORTS // - -module.exports = defaults; diff --git a/tools/fmtprodmsg-factory/lib/index.js b/tools/fmtprodmsg-factory/lib/index.js deleted file mode 100644 index 41a716d..0000000 --- a/tools/fmtprodmsg-factory/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return a function which formats an error message for production. -* -* @module @stdlib/error/tools/fmtprodmsg-factory -* -* @example -* var fmtprodmsgFactory = require( '@stdlib/error/tools/fmtprodmsg-factory' ); -* -* var formatProdErrorMessage = fmtprodmsgFactory(); -* // returns -*/ - -// MAIN // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/tools/fmtprodmsg-factory/lib/main.js b/tools/fmtprodmsg-factory/lib/main.js deleted file mode 100644 index cc65da0..0000000 --- a/tools/fmtprodmsg-factory/lib/main.js +++ /dev/null @@ -1,83 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var replace = require( '@stdlib/string/replace' ); -var validate = require( './validate.js' ); -var defaults = require( './defaults.js' ); - - -// MAIN // - -/** -* Returns a function which formats an error message for production. -* -* @param {Options} [options] - function options -* @param {string} [options.url] - website URL for full error message -* @param {string} [options.message] - error message template with `{{url}}` and `{{code}}` placeholders that will be replaced -* @returns {Function} error formatting function -* -* @example -* var opts = { -* 'url': 'https://stdlib.io/error-decoder.html' -* }; -* -* var fcn = fmtprodmsgFactory( opts ); -* // returns -*/ -function fmtprodmsgFactory( options ) { - var opts; - var err; - opts = defaults(); - if ( arguments.length > 0 ) { - err = validate( opts, options ); - } - if ( err ) { - throw err; - } - return formatProdErrorMessage; - - /** - * Formats an error message for production. - * - * @private - * @param {string} code - error code - * @param {*} ...args - error message arguments - * @returns {string} formatted error message - */ - function formatProdErrorMessage() { - var code = arguments[ 0 ]; - var url = opts.url + '?code='+code; - var msg; - var i; - for ( i = 1; i < arguments.length; i++ ) { - url += '&arg[]=' + encodeURIComponent( arguments[ i ] ); - } - msg = replace( opts.message, '{{url}}', url ); - msg = replace( msg, '{{code}}', code ); - return msg; - } -} - - -// EXPORTS // - -module.exports = fmtprodmsgFactory; diff --git a/tools/fmtprodmsg-factory/lib/validate.js b/tools/fmtprodmsg-factory/lib/validate.js deleted file mode 100644 index 7d51697..0000000 --- a/tools/fmtprodmsg-factory/lib/validate.js +++ /dev/null @@ -1,63 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var isObject = require( '@stdlib/assert/is-plain-object' ); -var hasOwnProp = require( '@stdlib/assert/has-own-property' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var format = require( '@stdlib/string/format' ); - - -// MAIN // - -/** -* Validates function options. -* -* @private -* @param {Object} opts - destination object -* @param {Options} options - options to validate -* @param {string} [options.url] - website URL for full error message -* @param {string} [options.message] - error message template with `{{url}}` and `{{code}}` placeholders that will be replaced -* @returns {(Error|null)} error object or null -*/ -function validate( opts, options ) { - if ( !isObject( options ) ) { - return new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) ); - } - if ( hasOwnProp( options, 'url' ) ) { - opts.url = options.url; - if ( !isString( opts.url ) ) { - return new TypeError( format( 'invalid option. `%s` option must be a string. Option: `%s`.', 'url', opts.url ) ); - } - } - if ( hasOwnProp( options, 'message' ) ) { - opts.message = options.message; - if ( !isString( opts.message ) ) { - return new TypeError( format( 'invalid option. `%s` option must be a string. Option: `%s`.', 'message', opts.message ) ); - } - } - return null; -} - - -// EXPORTS // - -module.exports = validate; diff --git a/tools/fmtprodmsg-factory/package.json b/tools/fmtprodmsg-factory/package.json deleted file mode 100644 index 5d2b8a9..0000000 --- a/tools/fmtprodmsg-factory/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "name": "@stdlib/error/tools/fmtprodmsg-factory", - "version": "0.0.0", - "description": "Return a function which formats an error message for production.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "utils", - "util", - "utilities", - "utility", - "error", - "err", - "message", - "msg", - "format", - "fmt", - "minify", - "minification", - "factory" - ] -} diff --git a/tools/fmtprodmsg-factory/test/test.js b/tools/fmtprodmsg-factory/test/test.js deleted file mode 100644 index 97cf9a5..0000000 --- a/tools/fmtprodmsg-factory/test/test.js +++ /dev/null @@ -1,100 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var fmtprodmsgFactory = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof fmtprodmsgFactory, 'function', 'export is a function' ); - t.end(); -}); - -tape( 'if provided an `options` argument which is not an object, the function will throw a type error', function test( t ) { - var values; - var i; - - values = [ - '5', - 5, - null, - NaN, - void 0, - true, - [], - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided ' + values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - fmtprodmsgFactory( value ); - }; - } -}); - -tape( 'if provided an invalid option, the function will throw a type error', function test( t ) { - var values; - var i; - - values = [ - 5, - null, - NaN, - void 0, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws a type error when provided ' + values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - fmtprodmsgFactory({ - 'message': value - }); - }; - } -}); - -tape( 'the function returns an error message function', function test( t ) { - var formatProdErrorMessage; - var opts; - var str; - - opts = {}; - formatProdErrorMessage = fmtprodmsgFactory( opts ); - str = formatProdErrorMessage( '6', 'boop' ); - - t.strictEqual( typeof formatProdErrorMessage, 'function', 'returns expected value' ); - t.strictEqual( typeof str, 'string', 'returned function returns a string' ); - t.end(); -}); diff --git a/tools/fmtprodmsg-factory/test/test.validate.js b/tools/fmtprodmsg-factory/test/test.validate.js deleted file mode 100644 index 5116608..0000000 --- a/tools/fmtprodmsg-factory/test/test.validate.js +++ /dev/null @@ -1,145 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var validate = require( './../lib/validate.js' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof validate, 'function', 'export is a function' ); - t.end(); -}); - -tape( 'if provided an `options` argument which is not an `object`, the function returns a type error', function test( t ) { - var values; - var err; - var i; - - values = [ - '5', - 5, - null, - NaN, - void 0, - true, - [], - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - err = validate( {}, values[i] ); - t.ok( err instanceof TypeError, 'returns type error when provided ' + values[i] ); - } - t.end(); -}); - -tape( 'if provided a `message` option which is not a string primitive, the function returns a type error', function test( t ) { - var values; - var err; - var i; - - values = [ - -5, - 5.1234, - 0, - null, - NaN, - void 0, - true, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - err = validate( {}, { - 'message': values[i] - }); - t.ok( err instanceof TypeError, 'returns type error when provided ' + values[i] ); - } - t.end(); -}); - -tape( 'if provided a `url` option which is not a string primitive, the function returns a type error', function test( t ) { - var values; - var err; - var i; - - values = [ - -5, - 5.1234, - 0, - null, - NaN, - void 0, - true, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - err = validate( {}, { - 'url': values[i] - }); - t.ok( err instanceof TypeError, 'returns type error when provided ' + values[i] ); - } - t.end(); -}); - -tape( 'the function returns `null` if all options are valid', function test( t ) { - var opts; - var obj; - var err; - - opts = { - 'url': 'https://stdlib.io/docs/api/latest/error-decoder.html', - 'message': 'Error: {{code}}: {{url}}.' - }; - obj = {}; - err = validate( obj, opts ); - - t.strictEqual( err, null, 'returns expected value' ); - t.strictEqual( obj.url, opts.url, 'sets url option' ); - t.strictEqual( obj.message, opts.message, 'sets message option' ); - - t.end(); -}); - -tape( 'the function ignores unsupported/unrecognized options', function test( t ) { - var opts; - var obj; - var err; - - opts = { - 'beep': 'boop', - 'a': 'b', - 'c': [ 1, 2, 3 ] - }; - obj = {}; - err = validate( obj, opts ); - - t.strictEqual( err, null, 'returns expected value' ); - t.deepEqual( obj, {}, 'does not set any options' ); - - t.end(); -}); diff --git a/tools/fmtprodmsg/README.md b/tools/fmtprodmsg/README.md deleted file mode 100644 index 3880a9e..0000000 --- a/tools/fmtprodmsg/README.md +++ /dev/null @@ -1,93 +0,0 @@ - - -# fmtprodmsg - -> Format an error message for production. - -
- -## Usage - -```javascript -var fmtprodmsg = require( '@stdlib/error/tools/fmtprodmsg' ); -``` - -#### fmtprodmsg( code, ...args ) - -Formats an error message for production. - -```javascript -var msg = fmtprodmsg( '27', 'foo', 'bar' ); -// returns 'https://stdlib.io/e/27?&arg[]=foo&arg[]=bar' -``` - -
- - - - - -
- -
- - - -
- -## Examples - - - - - -```javascript -var fmtprodmsg = require( '@stdlib/error/tools/fmtprodmsg' ); - -var msg = fmtprodmsg( '3', 'foo' ); -// returns 'https://stdlib.io/e/3?&arg[]=foo' - -msg = fmtprodmsg( '5', 'foo', 'bar' ); -// returns 'https://stdlib.io/e/5?&arg[]=foo&arg[]=bar' - -msg = fmtprodmsg( '5', 'foo', 'bar', 123 ); -// returns 'https://stdlib.io/e/5?&arg[]=foo&arg[]=bar&arg[]=123' -``` - -
- - - - - - - - - - - - - - diff --git a/tools/fmtprodmsg/docs/types/index.d.ts b/tools/fmtprodmsg/docs/types/index.d.ts deleted file mode 100644 index f5357b3..0000000 --- a/tools/fmtprodmsg/docs/types/index.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/// - -/** -* Formats an error message for production. -* -* @param code - error code -* @param args - error message arguments -* @returns formatted error message -* -* @example -* var msg = fmtprodmsg( '3', 'wrong_type' ); -* // returns -*/ -declare function fmtprodmsg( code: any, ...args: Array ): string; - - -// EXPORTS // - -export = fmtprodmsg; diff --git a/tools/fmtprodmsg/docs/types/test.ts b/tools/fmtprodmsg/docs/types/test.ts deleted file mode 100644 index 1b20be1..0000000 --- a/tools/fmtprodmsg/docs/types/test.ts +++ /dev/null @@ -1,33 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import fmtprodmsg = require( './index' ); - - -// TESTS // - -// The function returns a string... -{ - fmtprodmsg( '1' ); // $ExpectType string - fmtprodmsg( '3', 'wrong_type' ); // $ExpectType string -} - -// The compiler throws an error if the function is not provided at least one argument... -{ - fmtprodmsg(); // $ExpectError -} diff --git a/tools/fmtprodmsg/examples/index.js b/tools/fmtprodmsg/examples/index.js deleted file mode 100644 index 918de34..0000000 --- a/tools/fmtprodmsg/examples/index.js +++ /dev/null @@ -1,33 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var fmtprodmsg = require( './../lib' ); - -var msg = fmtprodmsg( '3', 'foo' ); -console.log( msg ); -// => 'https://stdlib.io/e/3?&arg[]=foo' - -msg = fmtprodmsg( '5', 'foo', 'bar' ); -console.log( msg ); -// => 'https://stdlib.io/e/5?arg[]=foo&arg[]=bar' - -msg = fmtprodmsg( '5', 'foo', 'bar', 123 ); -console.log( msg ); -// => 'https://stdlib.io/e/5?arg[]=foo&arg[]=bar&arg[]=123' diff --git a/tools/fmtprodmsg/lib/index.js b/tools/fmtprodmsg/lib/index.js deleted file mode 100644 index 245046e..0000000 --- a/tools/fmtprodmsg/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Format an error message for production. -* -* @module @stdlib/error/tools/fmtprodmsg -* -* @example -* var fmtprodmsg = require( '@stdlib/error/tools/fmtprodmsg' ); -* -* var msg = fmtprodmsg( '3', 'wrong_type' ); -* // returns -*/ - -// MAIN // - -var main = require( './main.js' ); - - -// EXPORTS // - -module.exports = main; diff --git a/tools/fmtprodmsg/lib/main.js b/tools/fmtprodmsg/lib/main.js deleted file mode 100644 index a271a37..0000000 --- a/tools/fmtprodmsg/lib/main.js +++ /dev/null @@ -1,48 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MAIN // - -/** -* Formats an error message for production. -* -* @param {string} code - error code -* @param {*} ...args - error message arguments -* @returns {string} formatted error message -* -* @example -* var msg = fmtprodmsg( '3', 'wrong_type' ); -* // returns 'https://stdlib.io/e/3?&arg[]=wrong_type' -*/ -function fmtprodmsg() { - var a = arguments; - var c = a[ 0 ]; - var u = 'https://stdlib.io/e/'+c+'?'; - var i; - for ( i = 1; i < a.length; i++ ) { - u += '&arg[]=' + encodeURIComponent( a[ i ] ); - } - return u; -} - - -// EXPORTS // - -module.exports = fmtprodmsg; diff --git a/tools/fmtprodmsg/package.json b/tools/fmtprodmsg/package.json deleted file mode 100644 index 4cf9381..0000000 --- a/tools/fmtprodmsg/package.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "@stdlib/error/tools/fmtprodmsg", - "version": "0.0.0", - "description": "Format an error message for production.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "utils", - "util", - "utilities", - "utility", - "error", - "err", - "message", - "msg", - "format", - "fmt", - "minify", - "minification" - ] -} diff --git a/tools/fmtprodmsg/test/test.js b/tools/fmtprodmsg/test/test.js deleted file mode 100644 index 3168acf..0000000 --- a/tools/fmtprodmsg/test/test.js +++ /dev/null @@ -1,42 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var fmtprodmsg = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof fmtprodmsg, 'function', 'export is a function' ); - t.end(); -}); - -tape( 'the function returns a formatted error message', function test( t ) { - var actual; - - actual = fmtprodmsg( 'foo' ); - - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.end(); -}); diff --git a/tools/id2msg/README.md b/tools/id2msg/README.md deleted file mode 100644 index 1b74e6d..0000000 --- a/tools/id2msg/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# id2msg - -> Return an error message corresponding to a provided two-character error identifier. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var id2msg = require( '@stdlib/error/tools/id2msg' ); -``` - -#### id2msg( id ) - -Returns an error message corresponding to a provided two-character error identifier. - -```javascript -var v = id2msg( '8t' ); -// e.g., returns 'invalid option. `%s` option must be an array. Option: `%s`.' -``` - -If provided an unrecognized error identifier, the function returns `null`. - -```javascript -var v = id2msg( 'beep_boop' ); -// returns null -``` - -
- - - - - -
- -
- - - - - -
- -## Examples - - - - - -```javascript -var id2msg = require( '@stdlib/error/tools/id2msg' ); - -var list; -var v; -var i; - -list = [ - '01', - '03', - '8t', - '0a', - '9W' -]; - -for ( i = 0; i < list.length; i++ ) { - v = list[ i ]; - console.log( 'id: "%s". msg: "%s".', v, id2msg( v ) ); -} -``` - -
- - - - - -* * * - -
- -## CLI - - - -
- -### Usage - -```text -Usage: stdlib-id2msg [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. -``` - -
- - - - - -
- -
- - - - - -
- -### Examples - -```bash -$ stdlib-id2msg '8t' - -``` - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - diff --git a/tools/id2msg/benchmark/benchmark.js b/tools/id2msg/benchmark/benchmark.js deleted file mode 100644 index ea11d88..0000000 --- a/tools/id2msg/benchmark/benchmark.js +++ /dev/null @@ -1,59 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var pkg = require( './../package.json' ).name; -var id2msg = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var values; - var v; - var i; - - values = [ - '01', - '03', - '8t', - '0a', - '9W', - '0A', - '7Z' - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - v = id2msg( values[ i%values.length ] ); - if ( typeof v !== 'string' ) { - b.fail( 'should return a string' ); - } - } - b.toc(); - if ( !isString( v ) ) { - b.fail( 'should return a string' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/tools/id2msg/bin/cli b/tools/id2msg/bin/cli deleted file mode 100755 index ed7ec05..0000000 --- a/tools/id2msg/bin/cli +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var CLI = require( '@stdlib/cli/ctor' ); -var id2msg = require( './../lib' ); - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var flags; - var args; - var cli; - var out; - - // Create a command-line interface: - cli = new CLI({ - 'pkg': require( './../package.json' ), - 'options': require( './../etc/cli_opts.json' ), - 'help': readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }) - }); - - // Get any provided command-line options: - flags = cli.flags(); - if ( flags.help || flags.version ) { - return; - } - - // Get any provided command-line arguments: - args = cli.args(); - - // Resolve a provided error code to an error message: - out = id2msg( args[ 0 ] ); - if ( out ) { - console.log( out ); // eslint-disable-line no-console - } else { - cli.close( 1 ); - } -} - -main(); diff --git a/tools/id2msg/docs/repl.txt b/tools/id2msg/docs/repl.txt deleted file mode 100644 index 65f5b23..0000000 --- a/tools/id2msg/docs/repl.txt +++ /dev/null @@ -1,22 +0,0 @@ - -{{alias}}( id ) - Returns an error message corresponding to a provided two-character error - identifier. - - Parameters - ---------- - id: string - Error identifier. - - Returns - ------- - out: string|null - Error message. - - Examples - -------- - > var v = {{alias}}( '8t' ) - - - See Also - -------- diff --git a/tools/id2msg/docs/types/index.d.ts b/tools/id2msg/docs/types/index.d.ts deleted file mode 100644 index 91e1b8c..0000000 --- a/tools/id2msg/docs/types/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Returns an error message corresponding to a provided two-character error identifier. -* -* @param id - error identifier -* @returns error message -* -* @example -* var v = id2msg( '8t' ); -* // returns -*/ -declare function id2msg( id: string ): string | null; - - -// EXPORTS // - -export = id2msg; diff --git a/tools/id2msg/docs/types/test.ts b/tools/id2msg/docs/types/test.ts deleted file mode 100644 index 57bdee6..0000000 --- a/tools/id2msg/docs/types/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import id2msg = require( './index' ); - - -// TESTS // - -// The function returns a string or null... -{ - id2msg( '0H' ); // $ExpectType string | null -} - -// The compiler throws an error if the function is not provided a string... -{ - id2msg( 5 ); // $ExpectError - id2msg( true ); // $ExpectError - id2msg( false ); // $ExpectError - id2msg( null ); // $ExpectError - id2msg( undefined ); // $ExpectError - id2msg( [] ); // $ExpectError - id2msg( {} ); // $ExpectError - id2msg( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided an unsupported number of arguments... -{ - id2msg( '0H', 'beep' ); // $ExpectError -} diff --git a/tools/id2msg/docs/usage.txt b/tools/id2msg/docs/usage.txt deleted file mode 100644 index 0c75c09..0000000 --- a/tools/id2msg/docs/usage.txt +++ /dev/null @@ -1,7 +0,0 @@ - -Usage: stdlib-id2msg [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. diff --git a/tools/id2msg/etc/cli_opts.json b/tools/id2msg/etc/cli_opts.json deleted file mode 100644 index 92119c4..0000000 --- a/tools/id2msg/etc/cli_opts.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "string": [], - "boolean": [ - "help", - "version" - ], - "alias": { - "help": [ - "h" - ], - "version": [ - "V" - ] - } -} diff --git a/tools/id2msg/examples/index.js b/tools/id2msg/examples/index.js deleted file mode 100644 index 2a22e9e..0000000 --- a/tools/id2msg/examples/index.js +++ /dev/null @@ -1,38 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var id2msg = require( './../lib' ); - -var list; -var v; -var i; - -list = [ - '01', - '03', - '8t', - '0a', - '9W' -]; - -for ( i = 0; i < list.length; i++ ) { - v = list[ i ]; - console.log( 'id: "%s". msg: "%s".', v, id2msg( v ) ); -} diff --git a/tools/id2msg/lib/index.js b/tools/id2msg/lib/index.js deleted file mode 100644 index f510819..0000000 --- a/tools/id2msg/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return an error message corresponding to a provided two-character error identifier. -* -* @module @stdlib/error/tools/id2msg -* -* @example -* var id2msg = require( '@stdlib/error/tools/id2msg' ); -* -* var v = id2msg( '8t' ); -* // e.g., returns 'invalid option. `%s` option must be an array. Option: `%s`.' -*/ - -// MODULES // - -var id2msg = require( './main.js' ); - - -// EXPORTS // - -module.exports = id2msg; diff --git a/tools/id2msg/lib/main.js b/tools/id2msg/lib/main.js deleted file mode 100644 index 99539b2..0000000 --- a/tools/id2msg/lib/main.js +++ /dev/null @@ -1,67 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var hasOwnProp = require( '@stdlib/assert/has-own-property' ); -var database = require( './../../../tools/database' ); -var format = require( '@stdlib/string/format' ); - - -// VARIABLES // - -var db; - - -// MAIN // - -/** -* Returns an error message corresponding to a provided two-character error identifier. -* -* @param {string} id - error identifier -* @throws {TypeError} must provide a string -* @returns {(string|null)} error message -* -* @example -* var v = id2msg( '9b' ); -* // returns -* -* @example -* var v = id2msg( 'boop' ); -* // returns null -*/ -function id2msg( id ) { - if ( !isString( id ) ) { - throw new TypeError( format( 'invalid argument. Must provide a string. Value: `%s`.', id ) ); - } - if ( !db ) { - db = database(); - } - if ( hasOwnProp( db, id ) ) { - return db[ id ]; - } - return null; -} - - -// EXPORTS // - -module.exports = id2msg; diff --git a/tools/id2msg/package.json b/tools/id2msg/package.json deleted file mode 100644 index 5e082ca..0000000 --- a/tools/id2msg/package.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "@stdlib/error/tools/id2msg", - "version": "0.0.0", - "description": "Return an error message corresponding to a provided two-character error identifier.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "bin": { - "stdlib-id2msg": "./bin/cli" - }, - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "standard", - "library", - "lib", - "identifier", - "id", - "error", - "err", - "code", - "message", - "msg" - ] -} diff --git a/tools/id2msg/test/test.cli.js b/tools/id2msg/test/test.cli.js deleted file mode 100644 index 1ab6ca0..0000000 --- a/tools/id2msg/test/test.cli.js +++ /dev/null @@ -1,183 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var exec = require( 'child_process' ).exec; -var tape = require( 'tape' ); -var IS_BROWSER = require( '@stdlib/assert/is-browser' ); -var IS_WINDOWS = require( '@stdlib/assert/is-windows' ); -var EXEC_PATH = require( '@stdlib/process/exec-path' ); -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var id2msg = require( './../lib' ); - - -// VARIABLES // - -var fpath = resolve( __dirname, '..', 'bin', 'cli' ); -var opts = { - 'skip': IS_BROWSER || IS_WINDOWS -}; - - -// FIXTURES // - -var PKG_VERSION = require( './../package.json' ).version; - - -// TESTS // - -tape( 'command-line interface', function test( t ) { - t.ok( true, __filename ); - t.end(); -}); - -tape( 'when invoked with a `--help` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '--help' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-h` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '-h' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `--version` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '--version' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-V` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '-V' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'the command-line interface prints an error message', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '0H' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), id2msg( '0H' ) + '\n', 'prints expected value' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - } - t.end(); - } -}); - -tape( 'if unable to resolve an error message, the command-line interface sets a non-zero exit code', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - 'fjaldfjadljfeoejreandfljasdfjadsfjs' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.pass( error.message ); - t.strictEqual( error.code, 1, 'expected exit code' ); - } - t.strictEqual( stdout.toString(), '', 'does not print to` stdout`' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - t.end(); - } -}); diff --git a/tools/id2msg/test/test.js b/tools/id2msg/test/test.js deleted file mode 100644 index c2a811c..0000000 --- a/tools/id2msg/test/test.js +++ /dev/null @@ -1,96 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var msg2id = require( './../../../tools/msg2id' ); -var id2msg = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof id2msg, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function throws an error if not provided a string', function test( t ) { - var values; - var i; - - values = [ - 5, - NaN, - true, - false, - null, - void 0, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - id2msg( value ); - }; - } -}); - -tape( 'the function returns an error message', function test( t ) { - var actual; - var list; - var i; - - list = [ - '01', - '03', - '8t', - '0a', - '9W' - ]; - for ( i = 0; i < list.length; i++ ) { - actual = id2msg( list[ i ] ); - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.strictEqual( msg2id( actual ), list[ i ], 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns `null` if provided an unrecognized error code', function test( t ) { - var values; - var i; - - values = [ - '0H5', - '0H6', - '0H7' - ]; - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( id2msg( values[ i ] ), null, 'returns expected value' ); - } - t.end(); -}); diff --git a/tools/id2pkg/LICENSE b/tools/id2pkg/LICENSE deleted file mode 100644 index dc6d53e..0000000 --- a/tools/id2pkg/LICENSE +++ /dev/null @@ -1,356 +0,0 @@ -The use of the database is licensed under an Open Data Commons Public Domain -Dedication & License 1.0 (PDDL 1.0), while the database contents are licensed -under Creative Commons Zero v1.0 Universal (CC0 1.0). The software is licensed -under an Apache-2.0 license. - - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - - -Creative Commons Zero v1.0 Universal - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: - -the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; -moral rights retained by the original author(s) and/or performer(s); -publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; -rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; -rights protecting the extraction, dissemination, use and reuse of data in a Work; -database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and -other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. -2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. - -4. Limitations and Disclaimers. - -No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. -Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. -Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. -Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. - - - - -Open Data Commons Public Domain Dedication & License 1.0 - -Preamble - -The Open Data Commons – Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. - -Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the "sui generis" database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a "some rights reserved" approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data. - -The position of the recipient of the work - -Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others. - -The position of the dedicator of the work - -Copyright law, as with most other law under the banner of "intellectual property", is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims. - -The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to "dual license" their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can’t re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts. - -This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content – not just factual data – rightsholders should use the Open Data Commons – Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. - -Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the "Work", which can be either – or both – the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it. - -Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document. - -This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. - -Part I: Introduction - -The Rightsholder (the Person holding rights or claims over the Work) agrees as follows: - -1.0 Definitions of Capitalised Words - -"Copyright" – Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4. - -"Data" – The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. - -"Database" – A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. - -"Database Right" – Means rights over Data resulting from the Chapter III ("sui generis") rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. - -"Document" – means this relinquishment and waiver of rights and claims and back up licence agreement. - -"Person" – Means a natural or legal person or a body of persons corporate or incorporate. - -"Use" – As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work. - -"Work" – Means either or both of the Database and Data offered under the terms of this Document. - -"You" – the Person acquiring rights under the licence elements of this Document. - -Words in the singular include the plural and vice versa. - -2.0 What this document covers - -2.1. Legal effect of this Document. This Document is: - -a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and - -b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver. - -2.2. Legal rights covered. - -a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and - -b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright. - -2.2 Rights not covered. - -a. This Document does not apply to computer programs used in the making or operation of the Database; - -b. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and - -c. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details. - -Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work. - -Part II: Dedication to the public domain - -3.0 Dedication, waiver, and licence of Copyright and Database Rights - -3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work. - -a. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use. - -b. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors. - -The above relinquishment of rights applies worldwide and includes media and formats now known or created in the future. - -3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in: - -a. Copyright; and - -b. Database Rights. - -To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. - -3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows: - -a. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. - -3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment: - -a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; - -b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and - -c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work. - -Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions. - -4.0 Relationship to other rights - -4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document. - -4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences. Part III: General provisions - -5.0 Warranties, disclaimer, and limitation of liability - -5.1 The Work is provided by the Rightsholder "as is" and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. - -5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages. - -5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder. - -6.0 General - -6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms of this Document. - -6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. - -6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. - -6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document. diff --git a/tools/id2pkg/README.md b/tools/id2pkg/README.md deleted file mode 100644 index 75f8ff1..0000000 --- a/tools/id2pkg/README.md +++ /dev/null @@ -1,200 +0,0 @@ - - -# id2pkg - -> Return the package name associated with a specified error identifier prefix. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var id2pkg = require( '@stdlib/error/tools/id2pkg' ); -``` - -#### id2pkg( id ) - -Returns the package name associated with a specified error identifier prefix. - -```javascript -var v = id2pkg( '0H5' ); -// returns '@stdlib/math/base/special/sin' -``` - -If provided an unrecognized error identifier prefix, the function returns `null`. - -```javascript -var v = id2pkg( 'unrecognized_alias_beep_boop_bop_bip' ); -// returns null -``` - -
- - - - - -
- -
- - - - - -
- -## Examples - - - - - -```javascript -var id2pkg = require( '@stdlib/error/tools/id2pkg' ); - -var list; -var len; -var v; -var i; - -list = [ - '001', - '0A3', - '0Ab' -]; -len = list.length; - -for ( i = 0; i < len; i++ ) { - v = list[ i ]; - console.log( 'id: %s. pkg: %s.', v, id2pkg( v ) ); -} -``` - -
- - - - - -* * * - -
- -## CLI - - - -
- -### Usage - -```text -Usage: stdlib-id2pkg [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. -``` - -
- - - - - -
- -
- - - - - -
- -### Examples - -```bash -$ stdlib-id2pkg '0H5' -@stdlib/math/base/special/sin -``` - -
- - - -
- - - - - -
- -
- - - - - -## License - -The data files (databases) are licensed under an [Open Data Commons Public Domain Dedication & License 1.0][pddl-1.0] and their contents are licensed under [Creative Commons Zero v1.0 Universal][cc0]. The software is licensed under [Apache License, Version 2.0][apache-license]. - - - - - - - - - - - - - - diff --git a/tools/id2pkg/benchmark/benchmark.js b/tools/id2pkg/benchmark/benchmark.js deleted file mode 100644 index f3d3b56..0000000 --- a/tools/id2pkg/benchmark/benchmark.js +++ /dev/null @@ -1,55 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var pkg = require( './../package.json' ).name; -var id2pkg = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var values; - var v; - var i; - - values = [ - '001', - '0A3', - '0Ab' - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - v = id2pkg( values[ i%values.length ] ); - if ( typeof v !== 'string' ) { - b.fail( 'should return a string' ); - } - } - b.toc(); - if ( !isString( v ) ) { - b.fail( 'should return a string' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/tools/id2pkg/bin/cli b/tools/id2pkg/bin/cli deleted file mode 100755 index 4d93ba3..0000000 --- a/tools/id2pkg/bin/cli +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var CLI = require( '@stdlib/cli/ctor' ); -var id2pkg = require( './../lib' ); - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var flags; - var args; - var cli; - var out; - - // Create a command-line interface: - cli = new CLI({ - 'pkg': require( './../package.json' ), - 'options': require( './../etc/cli_opts.json' ), - 'help': readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }) - }); - - // Get any provided command-line options: - flags = cli.flags(); - if ( flags.help || flags.version ) { - return; - } - - // Get any provided command-line arguments: - args = cli.args(); - - // Resolve a provided error identifier prefix to a package name... - out = id2pkg( args[ 0 ] ); - if ( out ) { - console.log( out ); // eslint-disable-line no-console - } else { - cli.close( 1 ); - } -} - -main(); diff --git a/tools/id2pkg/data/data.csv b/tools/id2pkg/data/data.csv deleted file mode 100644 index 29b0e7a..0000000 --- a/tools/id2pkg/data/data.csv +++ /dev/null @@ -1,10548 +0,0 @@ -"100",@stdlib/stats/base/dists/f/cdf -"101",@stdlib/stats-base-dists-f-cdf -"102",@stdlib/stats/base/dists/f/ctor -"103",@stdlib/stats-base-dists-f-ctor -"104",@stdlib/stats/base/dists/f/entropy -"105",@stdlib/stats-base-dists-f-entropy -"106",@stdlib/stats/base/dists/f/kurtosis -"107",@stdlib/stats-base-dists-f-kurtosis -"108",@stdlib/stats/base/dists/f/mean -"109",@stdlib/stats-base-dists-f-mean -"110",@stdlib/stats/base/dists/gamma/logcdf -"111",@stdlib/stats-base-dists-gamma-logcdf -"112",@stdlib/stats/base/dists/gamma/logpdf -"113",@stdlib/stats-base-dists-gamma-logpdf -"114",@stdlib/stats/base/dists/gamma/mean -"115",@stdlib/stats-base-dists-gamma-mean -"116",@stdlib/stats/base/dists/gamma/mgf -"117",@stdlib/stats-base-dists-gamma-mgf -"118",@stdlib/stats/base/dists/gamma/mode -"119",@stdlib/stats-base-dists-gamma-mode -"120",@stdlib/stats/base/dists/gumbel/logcdf -"121",@stdlib/stats-base-dists-gumbel-logcdf -"122",@stdlib/stats/base/dists/gumbel/logpdf -"123",@stdlib/stats-base-dists-gumbel-logpdf -"124",@stdlib/stats/base/dists/gumbel/mean -"125",@stdlib/stats-base-dists-gumbel-mean -"126",@stdlib/stats/base/dists/gumbel/median -"127",@stdlib/stats-base-dists-gumbel-median -"128",@stdlib/stats/base/dists/gumbel/mgf -"129",@stdlib/stats-base-dists-gumbel-mgf -"130",@stdlib/stats/base/dists/invgamma -"131",@stdlib/stats-base-dists-invgamma -"132",@stdlib/stats/base/dists/invgamma/pdf -"133",@stdlib/stats-base-dists-invgamma-pdf -"134",@stdlib/stats/base/dists/invgamma/quantile -"135",@stdlib/stats-base-dists-invgamma-quantile -"136",@stdlib/stats/base/dists/invgamma/skewness -"137",@stdlib/stats-base-dists-invgamma-skewness -"138",@stdlib/stats/base/dists/invgamma/stdev -"139",@stdlib/stats-base-dists-invgamma-stdev -"140",@stdlib/stats/base/dists/laplace/pdf -"141",@stdlib/stats-base-dists-laplace-pdf -"142",@stdlib/stats/base/dists/laplace/quantile -"143",@stdlib/stats-base-dists-laplace-quantile -"144",@stdlib/stats/base/dists/laplace/skewness -"145",@stdlib/stats-base-dists-laplace-skewness -"146",@stdlib/stats/base/dists/laplace/stdev -"147",@stdlib/stats-base-dists-laplace-stdev -"148",@stdlib/stats/base/dists/laplace/variance -"149",@stdlib/stats-base-dists-laplace-variance -"150",@stdlib/stats/base/dists/logistic/skewness -"151",@stdlib/stats-base-dists-logistic-skewness -"152",@stdlib/stats/base/dists/logistic/stdev -"153",@stdlib/stats-base-dists-logistic-stdev -"154",@stdlib/stats/base/dists/logistic/variance -"155",@stdlib/stats-base-dists-logistic-variance -"156",@stdlib/stats/base/dists/lognormal/cdf -"157",@stdlib/stats-base-dists-lognormal-cdf -"158",@stdlib/stats/base/dists/lognormal/ctor -"159",@stdlib/stats-base-dists-lognormal-ctor -"160",@stdlib/stats/base/dists/normal/ctor -"161",@stdlib/stats-base-dists-normal-ctor -"162",@stdlib/stats/base/dists/normal/entropy -"163",@stdlib/stats-base-dists-normal-entropy -"164",@stdlib/stats/base/dists/normal/kurtosis -"165",@stdlib/stats-base-dists-normal-kurtosis -"166",@stdlib/stats/base/dists/normal/logpdf -"167",@stdlib/stats-base-dists-normal-logpdf -"168",@stdlib/stats/base/dists/normal/mean -"169",@stdlib/stats-base-dists-normal-mean -"170",@stdlib/stats/base/dists/poisson/ctor -"171",@stdlib/stats-base-dists-poisson-ctor -"172",@stdlib/stats/base/dists/poisson/entropy -"173",@stdlib/stats-base-dists-poisson-entropy -"174",@stdlib/stats/base/dists/poisson/kurtosis -"175",@stdlib/stats-base-dists-poisson-kurtosis -"176",@stdlib/stats/base/dists/poisson/logpmf -"177",@stdlib/stats-base-dists-poisson-logpmf -"178",@stdlib/stats/base/dists/poisson/mean -"179",@stdlib/stats-base-dists-poisson-mean -"180",@stdlib/stats/base/dists/signrank -"181",@stdlib/stats-base-dists-signrank -"182",@stdlib/stats/base/dists/signrank/pdf -"183",@stdlib/stats-base-dists-signrank-pdf -"184",@stdlib/stats/base/dists/signrank/quantile -"185",@stdlib/stats-base-dists-signrank-quantile -"186",@stdlib/stats/base/dists/t/cdf -"187",@stdlib/stats-base-dists-t-cdf -"188",@stdlib/stats/base/dists/t/ctor -"189",@stdlib/stats-base-dists-t-ctor -"190",@stdlib/stats/base/dists/triangular/skewness -"191",@stdlib/stats-base-dists-triangular-skewness -"192",@stdlib/stats/base/dists/triangular/stdev -"193",@stdlib/stats-base-dists-triangular-stdev -"194",@stdlib/stats/base/dists/triangular/variance -"195",@stdlib/stats-base-dists-triangular-variance -"196",@stdlib/stats/base/dists/truncated-normal -"197",@stdlib/stats-base-dists-truncated-normal -"198",@stdlib/stats/base/dists/truncated-normal/pdf -"199",@stdlib/stats-base-dists-truncated-normal-pdf -"202",@stdlib/blas/base/dspr -"203",@stdlib/blas-base-dspr -"204",@stdlib/blas/ext/base/cfill -"205",@stdlib/blas-ext-base-cfill -"206",@stdlib/constants/float32/max-safe-nth-factorial -"207",@stdlib/constants-float32-max-safe-nth-factorial -"208",@stdlib/constants/float32/max-safe-nth-fibonacci -"209",@stdlib/constants-float32-max-safe-nth-fibonacci -"210",@stdlib/ndarray/base/assert/has-equal-shape -"211",@stdlib/ndarray-base-assert-has-equal-shape -"212",@stdlib/ndarray/base/fill -"213",@stdlib/ndarray-base-fill -"214",@stdlib/ndarray/base/to-reversed -"215",@stdlib/ndarray-base-to-reversed -"216",@stdlib/strided/base/read-dataview -"217",@stdlib/strided-base-read-dataview -"218",@stdlib/strided/base/strided2object -"219",@stdlib/strided-base-strided2object -"220",@stdlib/array/base/nulls -"221",@stdlib/array-base-nulls -"222",@stdlib/array/byte-orders -"223",@stdlib/array-byte-orders -"224",@stdlib/array/fixed-endian-factory -"225",@stdlib/array-fixed-endian-factory -"226",@stdlib/array/fixed-endian-float32 -"227",@stdlib/array-fixed-endian-float32 -"228",@stdlib/array/little-endian-factory -"229",@stdlib/array-little-endian-factory -"230",@stdlib/constants/float32/half-ln-two -"231",@stdlib/constants-float32-half-ln-two -"232",@stdlib/constants/float32/ln-two -"233",@stdlib/constants-float32-ln-two -"234",@stdlib/constants/float32/max-base10-exponent-subnormal -"235",@stdlib/constants-float32-max-base10-exponent-subnormal -"236",@stdlib/constants/float32/max-base10-exponent -"237",@stdlib/constants-float32-max-base10-exponent -"238",@stdlib/constants/float32/min-base10-exponent-subnormal -"239",@stdlib/constants-float32-min-base10-exponent-subnormal -"240",@stdlib/array/base/broadcasted-ternary5d -"241",@stdlib/array-base-broadcasted-ternary5d -"242",@stdlib/array/base/mskbinary4d -"243",@stdlib/array-base-mskbinary4d -"244",@stdlib/array/base/mskbinary5d -"245",@stdlib/array-base-mskbinary5d -"246",@stdlib/array/base/mskunary4d -"247",@stdlib/array-base-mskunary4d -"248",@stdlib/array/base/mskunary5d -"249",@stdlib/array-base-mskunary5d -"250",@stdlib/ndarray/index -"251",@stdlib/ndarray-index -"252",@stdlib/ndarray/map -"253",@stdlib/ndarray-map -"254",@stdlib/ndarray/reject -"255",@stdlib/ndarray-reject -"256",@stdlib/ndarray/to-fancy -"257",@stdlib/ndarray-to-fancy -"258",@stdlib/ndarray/to-json -"259",@stdlib/ndarray-to-json -"260",@stdlib/ndarray/base/spread-dimensions -"261",@stdlib/ndarray-base-spread-dimensions -"262",@stdlib/ndarray/base/to-normalized-indices -"263",@stdlib/ndarray-base-to-normalized-indices -"264",@stdlib/ndarray/base/to-unique-normalized-indices -"265",@stdlib/ndarray-base-to-unique-normalized-indices -"266",@stdlib/blas/base/zdscal -"267",@stdlib/blas-base-zdscal -"268",@stdlib/lapack/base/zlacgv -"269",@stdlib/lapack-base-zlacgv -"270",@stdlib/blas/base/wasm/snrm2 -"271",@stdlib/blas-base-wasm-snrm2 -"272",@stdlib/blas/base/wasm/srot -"273",@stdlib/blas-base-wasm-srot -"274",@stdlib/blas/base/wasm/sscal -"275",@stdlib/blas-base-wasm-sscal -"276",@stdlib/blas/base/wasm/zcopy -"277",@stdlib/blas-base-wasm-zcopy -"278",@stdlib/blas/base/wasm/zdrot -"279",@stdlib/blas-base-wasm-zdrot -"280",@stdlib/napi/argv-bool -"281",@stdlib/napi-argv-bool -"282",@stdlib/ndarray/base/assert/is-output-data-type-policy -"283",@stdlib/ndarray-base-assert-is-output-data-type-policy -"284",@stdlib/number/float32/base/add -"285",@stdlib/number-float32-base-add -"286",@stdlib/number/float32/base/div -"287",@stdlib/number-float32-base-div -"288",@stdlib/number/float32/base/mul -"289",@stdlib/number-float32-base-mul -"290",@stdlib/stats/strided/dmeanlipw -"291",@stdlib/stats-strided-dmeanlipw -"292",@stdlib/stats/strided/dmeanors -"293",@stdlib/stats-strided-dmeanors -"294",@stdlib/stats/strided/dmeanpw -"295",@stdlib/stats-strided-dmeanpw -"296",@stdlib/stats/strided/dmeanwd -"297",@stdlib/stats-strided-dmeanwd -"298",@stdlib/stats/strided/dmediansorted -"299",@stdlib/stats-strided-dmediansorted -"1Yi",@stdlib/array/base/accessor-getter -"1Yj",@stdlib/array-base-accessor-getter -"1Yk",@stdlib/array/base/accessor-setter -"1Yl",@stdlib/array-base-accessor-setter -"1Ym",@stdlib/array/base/accessor -"1Yn",@stdlib/array-base-accessor -"1Yo",@stdlib/array/base/accessors -"1Yp",@stdlib/array-base-accessors -"1oK",@stdlib/array/base/any-by-right -"1oL",@stdlib/array-base-any-by-right -"1oM",@stdlib/array/base/any-by -"1oN",@stdlib/array-base-any-by -"2HQ",@stdlib/array/base/any-has-own-property -"2HR",@stdlib/array-base-any-has-own-property -"2HS",@stdlib/array/base/any-has-property -"2HT",@stdlib/array-base-any-has-property -"2HU",@stdlib/array/base/any-is-entry-in -"2HV",@stdlib/array-base-any-is-entry-in -"2HW",@stdlib/array/base/any-is-entry -"2HX",@stdlib/array-base-any-is-entry -"1oO",@stdlib/array/base/any -"1oP",@stdlib/array-base-any -"000",@stdlib/array/base/arraylike2object -"001",@stdlib/array-base-arraylike2object -"1Yq",@stdlib/array/base/assert/contains -"1Yr",@stdlib/array-base-assert-contains -"2N8",@stdlib/array/base/assert/has-almost-equal-values -"2N9",@stdlib/array-base-assert-has-almost-equal-values -"2co",@stdlib/array/base/assert/has-almost-same-values -"2cp",@stdlib/array-base-assert-has-almost-same-values -"1zi",@stdlib/array/base/assert/has-equal-values-indexed -"1zj",@stdlib/array-base-assert-has-equal-values-indexed -"1zk",@stdlib/array/base/assert/has-equal-values -"1zl",@stdlib/array-base-assert-has-equal-values -"1oQ",@stdlib/array/base/assert/has-same-values -"1oR",@stdlib/array-base-assert-has-same-values -"1Ys",@stdlib/array/base/assert/is-accessor-array -"1Yt",@stdlib/array-base-assert-is-accessor-array -"1w6",@stdlib/array/base/assert/is-boolean-data-type -"1w7",@stdlib/array-base-assert-is-boolean-data-type -"1w8",@stdlib/array/base/assert/is-booleanarray -"1w9",@stdlib/array-base-assert-is-booleanarray -"21o",@stdlib/array/base/assert/is-byte-order -"21p",@stdlib/array-base-assert-is-byte-order -"1qs",@stdlib/array/base/assert/is-complex-floating-point-data-type -"1qt",@stdlib/array-base-assert-is-complex-floating-point-data-type -"1s4",@stdlib/array/base/assert/is-complex-typed-array -"1s5",@stdlib/array-base-assert-is-complex-typed-array -"1oS",@stdlib/array/base/assert/is-complex128array -"1oT",@stdlib/array-base-assert-is-complex128array -"1oU",@stdlib/array/base/assert/is-complex64array -"1oV",@stdlib/array-base-assert-is-complex64array -"1qu",@stdlib/array/base/assert/is-data-type -"1qv",@stdlib/array-base-assert-is-data-type -"1qw",@stdlib/array/base/assert/is-floating-point-data-type -"1qx",@stdlib/array-base-assert-is-floating-point-data-type -"1qy",@stdlib/array/base/assert/is-integer-data-type -"1qz",@stdlib/array-base-assert-is-integer-data-type -"1r0",@stdlib/array/base/assert/is-mostly-safe-data-type-cast -"1r1",@stdlib/array-base-assert-is-mostly-safe-data-type-cast -"1r2",@stdlib/array/base/assert/is-numeric-data-type -"1r3",@stdlib/array-base-assert-is-numeric-data-type -"1r4",@stdlib/array/base/assert/is-real-data-type -"1r5",@stdlib/array-base-assert-is-real-data-type -"1r6",@stdlib/array/base/assert/is-real-floating-point-data-type -"1r7",@stdlib/array-base-assert-is-real-floating-point-data-type -"1r8",@stdlib/array/base/assert/is-safe-data-type-cast -"1r9",@stdlib/array-base-assert-is-safe-data-type-cast -"1rA",@stdlib/array/base/assert/is-same-kind-data-type-cast -"1rB",@stdlib/array-base-assert-is-same-kind-data-type-cast -"1rC",@stdlib/array/base/assert/is-signed-integer-data-type -"1rD",@stdlib/array-base-assert-is-signed-integer-data-type -"25a",@stdlib/array/base/assert/is-sorted-ascending -"25b",@stdlib/array-base-assert-is-sorted-ascending -"1rE",@stdlib/array/base/assert/is-unsigned-integer-data-type -"1rF",@stdlib/array-base-assert-is-unsigned-integer-data-type -"1Yu",@stdlib/array/base/assert -"1Yv",@stdlib/array-base-assert -"1oW",@stdlib/array/base/at -"1oX",@stdlib/array-base-at -"1oY",@stdlib/array/base/at2d -"1oZ",@stdlib/array-base-at2d -"1oa",@stdlib/array/base/at3d -"1ob",@stdlib/array-base-at3d -"1oc",@stdlib/array/base/at4d -"1od",@stdlib/array-base-at4d -"1oe",@stdlib/array/base/at5d -"1of",@stdlib/array-base-at5d -"1og",@stdlib/array/base/atnd -"1oh",@stdlib/array-base-atnd -"29O",@stdlib/array/base/banded/filled2d-by -"29P",@stdlib/array-base-banded-filled2d-by -"2Eg",@stdlib/array/base/banded -"2Eh",@stdlib/array-base-banded -"29Q",@stdlib/array/base/banded/to-compact -"29R",@stdlib/array-base-banded-to-compact -"1ne",@stdlib/array/base/bifurcate-entries-by -"1nf",@stdlib/array-base-bifurcate-entries-by -"1n2",@stdlib/array/base/bifurcate-entries -"1n3",@stdlib/array-base-bifurcate-entries -"1ng",@stdlib/array/base/bifurcate-indices-by -"1nh",@stdlib/array-base-bifurcate-indices-by -"1n4",@stdlib/array/base/bifurcate-indices -"1n5",@stdlib/array-base-bifurcate-indices -"1ni",@stdlib/array/base/bifurcate-values-by -"1nj",@stdlib/array-base-bifurcate-values-by -"1n6",@stdlib/array/base/bifurcate-values -"1n7",@stdlib/array-base-bifurcate-values -"1i0",@stdlib/array/base/binary2d -"1i1",@stdlib/array-base-binary2d -"1i2",@stdlib/array/base/binary3d -"1i3",@stdlib/array-base-binary3d -"1i4",@stdlib/array/base/binary4d -"1i5",@stdlib/array-base-binary4d -"1i6",@stdlib/array/base/binary5d -"1i7",@stdlib/array-base-binary5d -"1i8",@stdlib/array/base/binarynd -"1i9",@stdlib/array-base-binarynd -"1hM",@stdlib/array/base/broadcast-array -"1hN",@stdlib/array-base-broadcast-array -"1iA",@stdlib/array/base/broadcasted-binary2d -"1iB",@stdlib/array-base-broadcasted-binary2d -"1iC",@stdlib/array/base/broadcasted-binary3d -"1iD",@stdlib/array-base-broadcasted-binary3d -"1iE",@stdlib/array/base/broadcasted-binary4d -"1iF",@stdlib/array-base-broadcasted-binary4d -"1iG",@stdlib/array/base/broadcasted-binary5d -"1iH",@stdlib/array-base-broadcasted-binary5d -"1ke",@stdlib/array/base/broadcasted-quaternary2d -"1kf",@stdlib/array-base-broadcasted-quaternary2d -"23o",@stdlib/array/base/broadcasted-quaternary3d -"23p",@stdlib/array-base-broadcasted-quaternary3d -"23q",@stdlib/array/base/broadcasted-quaternary4d -"23r",@stdlib/array-base-broadcasted-quaternary4d -"23s",@stdlib/array/base/broadcasted-quaternary5d -"23t",@stdlib/array-base-broadcasted-quaternary5d -"1kg",@stdlib/array/base/broadcasted-quinary2d -"1kh",@stdlib/array-base-broadcasted-quinary2d -"23u",@stdlib/array/base/broadcasted-quinary4d -"23v",@stdlib/array-base-broadcasted-quinary4d -"1ki",@stdlib/array/base/broadcasted-ternary2d -"1kj",@stdlib/array-base-broadcasted-ternary2d -"23w",@stdlib/array/base/broadcasted-ternary3d -"23x",@stdlib/array-base-broadcasted-ternary3d -"23y",@stdlib/array/base/broadcasted-ternary4d -"23z",@stdlib/array-base-broadcasted-ternary4d -"1iI",@stdlib/array/base/broadcasted-unary2d -"1iJ",@stdlib/array-base-broadcasted-unary2d -"1iK",@stdlib/array/base/broadcasted-unary3d -"1iL",@stdlib/array-base-broadcasted-unary3d -"1iM",@stdlib/array/base/broadcasted-unary4d -"1iN",@stdlib/array-base-broadcasted-unary4d -"1iO",@stdlib/array/base/broadcasted-unary5d -"1iP",@stdlib/array-base-broadcasted-unary5d -"1Yw",@stdlib/array/base/cartesian-power -"1Yx",@stdlib/array-base-cartesian-power -"1Yy",@stdlib/array/base/cartesian-product -"1Yz",@stdlib/array-base-cartesian-product -"1Z0",@stdlib/array/base/cartesian-square -"1Z1",@stdlib/array-base-cartesian-square -"1Z2",@stdlib/array/base/copy-indexed -"1Z3",@stdlib/array-base-copy-indexed -"002",@stdlib/array/base/copy -"003",@stdlib/array-base-copy -"1s6",@stdlib/array/base/count-falsy -"1s7",@stdlib/array-base-count-falsy -"1sO",@stdlib/array/base/count-if -"1sP",@stdlib/array-base-count-if -"2EU",@stdlib/array/base/count-ifs -"2EV",@stdlib/array-base-count-ifs -"1sQ",@stdlib/array/base/count-same-value-zero -"1sR",@stdlib/array-base-count-same-value-zero -"1s8",@stdlib/array/base/count-same-value -"1s9",@stdlib/array-base-count-same-value -"1sA",@stdlib/array/base/count-truthy -"1sB",@stdlib/array-base-count-truthy -"21q",@stdlib/array/base/cuany-by-right -"21r",@stdlib/array-base-cuany-by-right -"21s",@stdlib/array/base/cuany-by -"21t",@stdlib/array-base-cuany-by -"1wA",@stdlib/array/base/cuany -"1wB",@stdlib/array-base-cuany -"22E",@stdlib/array/base/cuevery-by-right -"22F",@stdlib/array-base-cuevery-by-right -"21u",@stdlib/array/base/cuevery-by -"21v",@stdlib/array-base-cuevery-by -"1wC",@stdlib/array/base/cuevery -"1wD",@stdlib/array-base-cuevery -"21U",@stdlib/array/base/cunone-by-right -"21V",@stdlib/array-base-cunone-by-right -"21W",@stdlib/array/base/cunone-by -"21X",@stdlib/array-base-cunone-by -"1ww",@stdlib/array/base/cunone -"1wx",@stdlib/array-base-cunone -"21Y",@stdlib/array/base/cusome-by-right -"21Z",@stdlib/array-base-cusome-by-right -"21w",@stdlib/array/base/cusome-by -"21x",@stdlib/array-base-cusome-by -"21y",@stdlib/array/base/cusome -"21z",@stdlib/array-base-cusome -"1n8",@stdlib/array/base/dedupe -"1n9",@stdlib/array-base-dedupe -"2SS",@stdlib/array/base/entries2objects -"2ST",@stdlib/array-base-entries2objects -"2SU",@stdlib/array/base/entries2views -"2SV",@stdlib/array-base-entries2views -"1oi",@stdlib/array/base/every-by-right -"1oj",@stdlib/array-base-every-by-right -"1ok",@stdlib/array/base/every-by -"1ol",@stdlib/array-base-every-by -"1om",@stdlib/array/base/every -"1on",@stdlib/array-base-every -"2cq",@stdlib/array/base/falses -"2cr",@stdlib/array-base-falses -"1rG",@stdlib/array/base/fancy-slice-assign -"1rH",@stdlib/array-base-fancy-slice-assign -"1rI",@stdlib/array/base/fancy-slice -"1rJ",@stdlib/array-base-fancy-slice -"29S",@stdlib/array/base/fill-by -"29T",@stdlib/array-base-fill-by -"25c",@stdlib/array/base/fill -"25d",@stdlib/array-base-fill -"004",@stdlib/array/base/filled-by -"005",@stdlib/array-base-filled-by -"006",@stdlib/array/base/filled -"007",@stdlib/array-base-filled -"1hO",@stdlib/array/base/filled2d-by -"1hP",@stdlib/array-base-filled2d-by -"1Z4",@stdlib/array/base/filled2d -"1Z5",@stdlib/array-base-filled2d -"1hQ",@stdlib/array/base/filled3d-by -"1hR",@stdlib/array-base-filled3d-by -"1hS",@stdlib/array/base/filled3d -"1hT",@stdlib/array-base-filled3d -"1hU",@stdlib/array/base/filled4d-by -"1hV",@stdlib/array-base-filled4d-by -"1hW",@stdlib/array/base/filled4d -"1hX",@stdlib/array-base-filled4d -"1hY",@stdlib/array/base/filled5d-by -"1hZ",@stdlib/array-base-filled5d-by -"1ha",@stdlib/array/base/filled5d -"1hb",@stdlib/array-base-filled5d -"1iQ",@stdlib/array/base/fillednd-by -"1iR",@stdlib/array-base-fillednd-by -"1hc",@stdlib/array/base/fillednd -"1hd",@stdlib/array-base-fillednd -"1oo",@stdlib/array/base/filter -"1op",@stdlib/array-base-filter -"1mm",@stdlib/array/base/first -"1mn",@stdlib/array-base-first -"1he",@stdlib/array/base/flatten-by -"1hf",@stdlib/array-base-flatten-by -"1Z6",@stdlib/array/base/flatten -"1Z7",@stdlib/array-base-flatten -"1Z8",@stdlib/array/base/flatten2d-by -"1Z9",@stdlib/array-base-flatten2d-by -"1ZA",@stdlib/array/base/flatten2d -"1ZB",@stdlib/array-base-flatten2d -"1ZC",@stdlib/array/base/flatten3d-by -"1ZD",@stdlib/array-base-flatten3d-by -"1ZE",@stdlib/array/base/flatten3d -"1ZF",@stdlib/array-base-flatten3d -"1ZG",@stdlib/array/base/flatten4d-by -"1ZH",@stdlib/array-base-flatten4d-by -"1ZI",@stdlib/array/base/flatten4d -"1ZJ",@stdlib/array-base-flatten4d -"1ZK",@stdlib/array/base/flatten5d-by -"1ZL",@stdlib/array-base-flatten5d-by -"1ZM",@stdlib/array/base/flatten5d -"1ZN",@stdlib/array-base-flatten5d -"1lg",@stdlib/array/base/fliplr2d -"1lh",@stdlib/array-base-fliplr2d -"1mI",@stdlib/array/base/fliplr3d -"1mJ",@stdlib/array-base-fliplr3d -"1mK",@stdlib/array/base/fliplr4d -"1mL",@stdlib/array-base-fliplr4d -"1mM",@stdlib/array/base/fliplr5d -"1mN",@stdlib/array-base-fliplr5d -"1li",@stdlib/array/base/flipud2d -"1lj",@stdlib/array-base-flipud2d -"1nA",@stdlib/array/base/flipud3d -"1nB",@stdlib/array-base-flipud3d -"1nC",@stdlib/array/base/flipud4d -"1nD",@stdlib/array-base-flipud4d -"1nE",@stdlib/array/base/flipud5d -"1nF",@stdlib/array-base-flipud5d -"26K",@stdlib/array/base/for-each -"26L",@stdlib/array-base-for-each -"1lk",@stdlib/array/base/from-strided -"1ll",@stdlib/array-base-from-strided -"1ZO",@stdlib/array/base/getter -"1ZP",@stdlib/array-base-getter -"1nk",@stdlib/array/base/group-entries-by -"1nl",@stdlib/array-base-group-entries-by -"1nG",@stdlib/array/base/group-entries -"1nH",@stdlib/array-base-group-entries -"1nm",@stdlib/array/base/group-indices-by -"1nn",@stdlib/array-base-group-indices-by -"1nI",@stdlib/array/base/group-indices -"1nJ",@stdlib/array-base-group-indices -"1no",@stdlib/array/base/group-values-by -"1np",@stdlib/array-base-group-values-by -"2SW",@stdlib/array/base/group-values-on-key -"2SX",@stdlib/array-base-group-values-on-key -"1nK",@stdlib/array/base/group-values -"1nL",@stdlib/array-base-group-values -"008",@stdlib/array/base/incrspace -"009",@stdlib/array-base-incrspace -"2DY",@stdlib/array/base/index-of-same-value -"2DZ",@stdlib/array-base-index-of-same-value -"1mo",@stdlib/array/base/index-of -"1mp",@stdlib/array-base-index-of -"25e",@stdlib/array/base/indices-complement -"25f",@stdlib/array-base-indices-complement -"2Vy",@stdlib/array/base/insert-at -"2Vz",@stdlib/array-base-insert-at -"1t0",@stdlib/array/base/join -"1t1",@stdlib/array-base-join -"2Da",@stdlib/array/base/last-index-of-same-value -"2Db",@stdlib/array-base-last-index-of-same-value -"1mq",@stdlib/array/base/last-index-of -"1mr",@stdlib/array-base-last-index-of -"1ZQ",@stdlib/array/base/last -"1ZR",@stdlib/array-base-last -"00A",@stdlib/array/base/linspace -"00B",@stdlib/array-base-linspace -"2Dc",@stdlib/array/base/linspace2d -"2Dd",@stdlib/array-base-linspace2d -"00C",@stdlib/array/base/logspace -"00D",@stdlib/array-base-logspace -"29U",@stdlib/array/base/map -"29V",@stdlib/array-base-map -"1lm",@stdlib/array/base/map2d -"1ln",@stdlib/array-base-map2d -"1lo",@stdlib/array/base/map3d -"1lp",@stdlib/array-base-map3d -"1mO",@stdlib/array/base/map4d -"1mP",@stdlib/array-base-map4d -"1mQ",@stdlib/array/base/map5d -"1mR",@stdlib/array-base-map5d -"1rK",@stdlib/array/base/min-signed-integer-dtype -"1rL",@stdlib/array-base-min-signed-integer-dtype -"1rM",@stdlib/array/base/min-unsigned-integer-dtype -"1rN",@stdlib/array-base-min-unsigned-integer-dtype -"1ia",@stdlib/array/base/mskbinary2d -"1ib",@stdlib/array-base-mskbinary2d -"22G",@stdlib/array/base/mskbinary3d -"22H",@stdlib/array-base-mskbinary3d -"1uM",@stdlib/array/base/mskfilter-map -"1uN",@stdlib/array-base-mskfilter-map -"1oq",@stdlib/array/base/mskfilter -"1or",@stdlib/array-base-mskfilter -"25g",@stdlib/array/base/mskfilter2 -"25h",@stdlib/array-base-mskfilter2 -"25i",@stdlib/array/base/mskfiltern -"25j",@stdlib/array-base-mskfiltern -"1wE",@stdlib/array/base/mskput -"1wF",@stdlib/array-base-mskput -"1uO",@stdlib/array/base/mskreject-map -"1uP",@stdlib/array-base-mskreject-map -"1rO",@stdlib/array/base/mskreject -"1rP",@stdlib/array-base-mskreject -"1ic",@stdlib/array/base/mskunary2d -"1id",@stdlib/array-base-mskunary2d -"1ie",@stdlib/array/base/mskunary3d -"1if",@stdlib/array-base-mskunary3d -"1ZS",@stdlib/array/base/n-cartesian-product -"1ZT",@stdlib/array-base-n-cartesian-product -"2SY",@stdlib/array/base/nested2objects -"2SZ",@stdlib/array-base-nested2objects -"2Sa",@stdlib/array/base/nested2views -"2Sb",@stdlib/array-base-nested2views -"1os",@stdlib/array/base/none-by-right -"1ot",@stdlib/array-base-none-by-right -"1ou",@stdlib/array/base/none-by -"1ov",@stdlib/array-base-none-by -"1ow",@stdlib/array/base/none -"1ox",@stdlib/array-base-none -"1hg",@stdlib/array/base/one-to -"1hh",@stdlib/array-base-one-to -"00E",@stdlib/array/base/ones -"00F",@stdlib/array-base-ones -"1ZU",@stdlib/array/base/ones2d -"1ZV",@stdlib/array-base-ones2d -"1hi",@stdlib/array/base/ones3d -"1hj",@stdlib/array-base-ones3d -"1hk",@stdlib/array/base/ones4d -"1hl",@stdlib/array-base-ones4d -"1hm",@stdlib/array/base/ones5d -"1hn",@stdlib/array-base-ones5d -"1ho",@stdlib/array/base/onesnd -"1hp",@stdlib/array-base-onesnd -"00G",@stdlib/array/base -"00H",@stdlib/array-base -"1wG",@stdlib/array/base/place -"1wH",@stdlib/array-base-place -"1wI",@stdlib/array/base/put -"1wJ",@stdlib/array-base-put -"1kk",@stdlib/array/base/quaternary2d -"1kl",@stdlib/array-base-quaternary2d -"1lq",@stdlib/array/base/quaternary3d -"1lr",@stdlib/array-base-quaternary3d -"1ls",@stdlib/array/base/quaternary4d -"1lt",@stdlib/array-base-quaternary4d -"1lu",@stdlib/array/base/quaternary5d -"1lv",@stdlib/array-base-quaternary5d -"1km",@stdlib/array/base/quinary2d -"1kn",@stdlib/array-base-quinary2d -"1nM",@stdlib/array/base/quinary3d -"1nN",@stdlib/array-base-quinary3d -"1nO",@stdlib/array/base/quinary4d -"1nP",@stdlib/array-base-quinary4d -"1nQ",@stdlib/array/base/quinary5d -"1nR",@stdlib/array-base-quinary5d -"1rQ",@stdlib/array/base/reject -"1rR",@stdlib/array-base-reject -"2Sc",@stdlib/array/base/rekey-views -"2Sd",@stdlib/array-base-rekey-views -"2Se",@stdlib/array/base/rekey -"2Sf",@stdlib/array-base-rekey -"1yy",@stdlib/array/base/remove-at -"1yz",@stdlib/array-base-remove-at -"2De",@stdlib/array/base/reshape -"2Df",@stdlib/array-base-reshape -"1lw",@stdlib/array/base/resolve-getter -"1lx",@stdlib/array-base-resolve-getter -"1oy",@stdlib/array/base/resolve-setter -"1oz",@stdlib/array-base-resolve-setter -"1p0",@stdlib/array/base/reverse -"1p1",@stdlib/array-base-reverse -"25k",@stdlib/array/base/scatter-filled -"25l",@stdlib/array-base-scatter-filled -"25m",@stdlib/array/base/scattered -"25n",@stdlib/array-base-scattered -"1ZW",@stdlib/array/base/setter -"1ZX",@stdlib/array-base-setter -"1ms",@stdlib/array/base/slice -"1mt",@stdlib/array-base-slice -"1ko",@stdlib/array/base/strided2array2d -"1kp",@stdlib/array-base-strided2array2d -"1kq",@stdlib/array/base/strided2array3d -"1kr",@stdlib/array-base-strided2array3d -"1ks",@stdlib/array/base/strided2array4d -"1kt",@stdlib/array-base-strided2array4d -"1ku",@stdlib/array/base/strided2array5d -"1kv",@stdlib/array-base-strided2array5d -"29W",@stdlib/array/base/symmetric-banded/filled2d-by -"29X",@stdlib/array-base-symmetric-banded-filled2d-by -"2Ei",@stdlib/array/base/symmetric-banded -"2Ej",@stdlib/array-base-symmetric-banded -"29Y",@stdlib/array/base/symmetric-banded/to-compact -"29Z",@stdlib/array-base-symmetric-banded-to-compact -"29a",@stdlib/array/base/symmetric/filled2d-by -"29b",@stdlib/array-base-symmetric-filled2d-by -"2Ek",@stdlib/array/base/symmetric -"2El",@stdlib/array-base-symmetric -"1ly",@stdlib/array/base/take-indexed -"1lz",@stdlib/array-base-take-indexed -"25o",@stdlib/array/base/take-indexed2 -"25p",@stdlib/array-base-take-indexed2 -"1t2",@stdlib/array/base/take-map -"1t3",@stdlib/array-base-take-map -"1ZY",@stdlib/array/base/take -"1ZZ",@stdlib/array-base-take -"1m0",@stdlib/array/base/take2d -"1m1",@stdlib/array-base-take2d -"1mS",@stdlib/array/base/take3d -"1mT",@stdlib/array-base-take3d -"1kw",@stdlib/array/base/ternary2d -"1kx",@stdlib/array-base-ternary2d -"1ky",@stdlib/array/base/ternary3d -"1kz",@stdlib/array-base-ternary3d -"1l0",@stdlib/array/base/ternary4d -"1l1",@stdlib/array-base-ternary4d -"1l2",@stdlib/array/base/ternary5d -"1l3",@stdlib/array-base-ternary5d -"1Za",@stdlib/array/base/to-accessor-array -"1Zb",@stdlib/array-base-to-accessor-array -"1nS",@stdlib/array/base/to-deduped -"1nT",@stdlib/array-base-to-deduped -"2cs",@stdlib/array/base/to-filled -"2ct",@stdlib/array-base-to-filled -"2W0",@stdlib/array/base/to-inserted-at -"2W1",@stdlib/array-base-to-inserted-at -"1p2",@stdlib/array/base/to-reversed -"1p3",@stdlib/array-base-to-reversed -"2cu",@stdlib/array/base/trues -"2cv",@stdlib/array-base-trues -"1ig",@stdlib/array/base/unary2d-by -"1ih",@stdlib/array-base-unary2d-by -"1hq",@stdlib/array/base/unary2d -"1hr",@stdlib/array-base-unary2d -"24A",@stdlib/array/base/unary3d-by -"24B",@stdlib/array-base-unary3d-by -"1iS",@stdlib/array/base/unary3d -"1iT",@stdlib/array-base-unary3d -"24C",@stdlib/array/base/unary4d-by -"24D",@stdlib/array-base-unary4d-by -"1iU",@stdlib/array/base/unary4d -"1iV",@stdlib/array-base-unary4d -"24E",@stdlib/array/base/unary5d-by -"24F",@stdlib/array-base-unary5d-by -"1iW",@stdlib/array/base/unary5d -"1iX",@stdlib/array-base-unary5d -"1iY",@stdlib/array/base/unarynd -"1iZ",@stdlib/array-base-unarynd -"00I",@stdlib/array/base/unitspace -"00J",@stdlib/array-base-unitspace -"1wK",@stdlib/array/base/where -"1wL",@stdlib/array-base-where -"1sS",@stdlib/array/base/with -"1sT",@stdlib/array-base-with -"1z0",@stdlib/array/base/without -"1z1",@stdlib/array-base-without -"1Zc",@stdlib/array/base/zero-to -"1Zd",@stdlib/array-base-zero-to -"00K",@stdlib/array/base/zeros -"00L",@stdlib/array-base-zeros -"1Ze",@stdlib/array/base/zeros2d -"1Zf",@stdlib/array-base-zeros2d -"1hs",@stdlib/array/base/zeros3d -"1ht",@stdlib/array-base-zeros3d -"1hu",@stdlib/array/base/zeros4d -"1hv",@stdlib/array-base-zeros4d -"1hw",@stdlib/array/base/zeros5d -"1hx",@stdlib/array-base-zeros5d -"1hy",@stdlib/array/base/zerosnd -"1hz",@stdlib/array-base-zerosnd -"2Sg",@stdlib/array/base/zip -"2Sh",@stdlib/array-base-zip -"2Re",@stdlib/array/base/zip2object -"2Rf",@stdlib/array-base-zip2object -"2Si",@stdlib/array/base/zip2objects -"2Sj",@stdlib/array-base-zip2objects -"2Sk",@stdlib/array/base/zip2views -"2Sl",@stdlib/array-base-zip2views -"1uQ",@stdlib/array/bool -"1uR",@stdlib/array-bool -"00M",@stdlib/array/buffer -"00N",@stdlib/array-buffer -"1p4",@stdlib/array/cartesian-power -"1p5",@stdlib/array-cartesian-power -"1p6",@stdlib/array/cartesian-product -"1p7",@stdlib/array-cartesian-product -"1p8",@stdlib/array/cartesian-square -"1p9",@stdlib/array-cartesian-square -"00O",@stdlib/array/complex128 -"00P",@stdlib/array-complex128 -"00Q",@stdlib/array/complex64 -"00R",@stdlib/array-complex64 -"00S",@stdlib/array/convert-same -"00T",@stdlib/array-convert-same -"00U",@stdlib/array/convert -"00V",@stdlib/array-convert -"00W",@stdlib/array/ctors -"00X",@stdlib/array-ctors -"00Y",@stdlib/array/dataview -"00Z",@stdlib/array-dataview -"00a",@stdlib/array/datespace -"00b",@stdlib/array-datespace -"1nq",@stdlib/array/defaults -"1nr",@stdlib/array-defaults -"00c",@stdlib/array/dtype -"00d",@stdlib/array-dtype -"00e",@stdlib/array/dtypes -"00f",@stdlib/array-dtypes -"1Zg",@stdlib/array/empty-like -"1Zh",@stdlib/array-empty-like -"1Zi",@stdlib/array/empty -"1Zj",@stdlib/array-empty -"00g",@stdlib/array/filled-by -"00h",@stdlib/array-filled-by -"00i",@stdlib/array/filled -"00j",@stdlib/array-filled -"21a",@stdlib/array/fixed-endian-float64 -"21b",@stdlib/array-fixed-endian-float64 -"2cw",@stdlib/array/float16 -"2cx",@stdlib/array-float16 -"00k",@stdlib/array/float32 -"00l",@stdlib/array-float32 -"00m",@stdlib/array/float64 -"00n",@stdlib/array-float64 -"00o",@stdlib/array/from-iterator -"00p",@stdlib/array-from-iterator -"1rS",@stdlib/array/from-scalar -"1rT",@stdlib/array-from-scalar -"00q",@stdlib/array/full-like -"00r",@stdlib/array-full-like -"00s",@stdlib/array/full -"00t",@stdlib/array-full -"00u",@stdlib/array/incrspace -"00v",@stdlib/array-incrspace -"1ry",@stdlib/array/index -"1rz",@stdlib/array-index -"00w",@stdlib/array/int16 -"00x",@stdlib/array-int16 -"00y",@stdlib/array/int32 -"00z",@stdlib/array-int32 -"010",@stdlib/array/int8 -"011",@stdlib/array-int8 -"012",@stdlib/array/linspace -"013",@stdlib/array-linspace -"22A",@stdlib/array/little-endian-float32 -"22B",@stdlib/array-little-endian-float32 -"22C",@stdlib/array/little-endian-float64 -"22D",@stdlib/array-little-endian-float64 -"014",@stdlib/array/logspace -"015",@stdlib/array-logspace -"016",@stdlib/array/min-dtype -"017",@stdlib/array-min-dtype -"1rU",@stdlib/array/mostly-safe-casts -"1rV",@stdlib/array-mostly-safe-casts -"1sC",@stdlib/array/mskfilter -"1sD",@stdlib/array-mskfilter -"1wM",@stdlib/array/mskput -"1wN",@stdlib/array-mskput -"1sE",@stdlib/array/mskreject -"1sF",@stdlib/array-mskreject -"1Zk",@stdlib/array/nans-like -"1Zl",@stdlib/array-nans-like -"1Zm",@stdlib/array/nans -"1Zn",@stdlib/array-nans -"018",@stdlib/array/next-dtype -"019",@stdlib/array-next-dtype -"2cy",@stdlib/array/nulls -"2cz",@stdlib/array-nulls -"1pA",@stdlib/array/one-to-like -"1pB",@stdlib/array-one-to-like -"1pC",@stdlib/array/one-to -"1pD",@stdlib/array-one-to -"01A",@stdlib/array/ones-like -"01B",@stdlib/array-ones-like -"01C",@stdlib/array/ones -"01D",@stdlib/array-ones -"01F",@stdlib/array -"1wO",@stdlib/array/place -"1wP",@stdlib/array-place -"01G",@stdlib/array/pool -"01H",@stdlib/array-pool -"01I",@stdlib/array/promotion-rules -"01J",@stdlib/array-promotion-rules -"1wQ",@stdlib/array/put -"1wR",@stdlib/array-put -"01K",@stdlib/array/reviver -"01L",@stdlib/array-reviver -"01M",@stdlib/array/safe-casts -"01N",@stdlib/array-safe-casts -"01O",@stdlib/array/same-kind-casts -"01P",@stdlib/array-same-kind-casts -"01Q",@stdlib/array/shape -"01R",@stdlib/array-shape -"01S",@stdlib/array/shared-buffer -"01T",@stdlib/array-shared-buffer -"1pE",@stdlib/array/slice -"1pF",@stdlib/array-slice -"2KE",@stdlib/array/struct-factory -"2KF",@stdlib/array-struct-factory -"1s0",@stdlib/array/take -"1s1",@stdlib/array-take -"01U",@stdlib/array/to-circular-iterator -"01V",@stdlib/array-to-circular-iterator -"1rW",@stdlib/array/to-fancy -"1rX",@stdlib/array-to-fancy -"01W",@stdlib/array/to-iterator-right -"01X",@stdlib/array-to-iterator-right -"01Y",@stdlib/array/to-iterator -"01Z",@stdlib/array-to-iterator -"01a",@stdlib/array/to-json -"01b",@stdlib/array-to-json -"01c",@stdlib/array/to-sparse-iterator-right -"01d",@stdlib/array-to-sparse-iterator-right -"01e",@stdlib/array/to-sparse-iterator -"01f",@stdlib/array-to-sparse-iterator -"01g",@stdlib/array/to-strided-iterator -"01h",@stdlib/array-to-strided-iterator -"01i",@stdlib/array/to-view-iterator-right -"01j",@stdlib/array-to-view-iterator-right -"01k",@stdlib/array/to-view-iterator -"01l",@stdlib/array-to-view-iterator -"01m",@stdlib/array/typed-complex-ctors -"01n",@stdlib/array-typed-complex-ctors -"01o",@stdlib/array/typed-complex-dtypes -"01p",@stdlib/array-typed-complex-dtypes -"01q",@stdlib/array/typed-complex -"01r",@stdlib/array-typed-complex -"01s",@stdlib/array/typed-ctors -"01t",@stdlib/array-typed-ctors -"01u",@stdlib/array/typed-dtypes -"01v",@stdlib/array-typed-dtypes -"01w",@stdlib/array/typed-float-ctors -"01x",@stdlib/array-typed-float-ctors -"01y",@stdlib/array/typed-float-dtypes -"01z",@stdlib/array-typed-float-dtypes -"020",@stdlib/array/typed-integer-ctors -"021",@stdlib/array-typed-integer-ctors -"022",@stdlib/array/typed-integer-dtypes -"023",@stdlib/array-typed-integer-dtypes -"024",@stdlib/array/typed-real-ctors -"025",@stdlib/array-typed-real-ctors -"026",@stdlib/array/typed-real-dtypes -"027",@stdlib/array-typed-real-dtypes -"028",@stdlib/array/typed-real-float-ctors -"029",@stdlib/array-typed-real-float-ctors -"02A",@stdlib/array/typed-real-float-dtypes -"02B",@stdlib/array-typed-real-float-dtypes -"02C",@stdlib/array/typed-real -"02D",@stdlib/array-typed-real -"02E",@stdlib/array/typed-signed-integer-ctors -"02F",@stdlib/array-typed-signed-integer-ctors -"02G",@stdlib/array/typed-signed-integer-dtypes -"02H",@stdlib/array-typed-signed-integer-dtypes -"02I",@stdlib/array/typed-unsigned-integer-ctors -"02J",@stdlib/array-typed-unsigned-integer-ctors -"02K",@stdlib/array/typed-unsigned-integer-dtypes -"02L",@stdlib/array-typed-unsigned-integer-dtypes -"02M",@stdlib/array/typed -"02N",@stdlib/array-typed -"02O",@stdlib/array/uint16 -"02P",@stdlib/array-uint16 -"02Q",@stdlib/array/uint32 -"02R",@stdlib/array-uint32 -"02S",@stdlib/array/uint8 -"02T",@stdlib/array-uint8 -"02U",@stdlib/array/uint8c -"02V",@stdlib/array-uint8c -"1pG",@stdlib/array/zero-to-like -"1pH",@stdlib/array-zero-to-like -"1pI",@stdlib/array/zero-to -"1pJ",@stdlib/array-zero-to -"02W",@stdlib/array/zeros-like -"02X",@stdlib/array-zeros-like -"02Y",@stdlib/array/zeros -"02Z",@stdlib/array-zeros -"02a",@stdlib/assert/contains -"02b",@stdlib/assert-contains -"02c",@stdlib/assert/deep-equal -"02d",@stdlib/assert-deep-equal -"02e",@stdlib/assert/deep-has-own-property -"02f",@stdlib/assert-deep-has-own-property -"02g",@stdlib/assert/deep-has-property -"02h",@stdlib/assert-deep-has-property -"02i",@stdlib/assert/has-arraybuffer-support -"02j",@stdlib/assert-has-arraybuffer-support -"02k",@stdlib/assert/has-arrow-function-support -"02l",@stdlib/assert-has-arrow-function-support -"02m",@stdlib/assert/has-async-await-support -"02n",@stdlib/assert-has-async-await-support -"02o",@stdlib/assert/has-async-iterator-symbol-support -"02p",@stdlib/assert-has-async-iterator-symbol-support -"1zm",@stdlib/assert/has-atob-support -"1zn",@stdlib/assert-has-atob-support -"02q",@stdlib/assert/has-bigint-support -"02r",@stdlib/assert-has-bigint-support -"02s",@stdlib/assert/has-bigint64array-support -"02t",@stdlib/assert-has-bigint64array-support -"02u",@stdlib/assert/has-biguint64array-support -"02v",@stdlib/assert-has-biguint64array-support -"1zo",@stdlib/assert/has-btoa-support -"1zp",@stdlib/assert-has-btoa-support -"02w",@stdlib/assert/has-class-support -"02x",@stdlib/assert-has-class-support -"02y",@stdlib/assert/has-dataview-support -"02z",@stdlib/assert-has-dataview-support -"030",@stdlib/assert/has-define-properties-support -"031",@stdlib/assert-has-define-properties-support -"032",@stdlib/assert/has-define-property-support -"033",@stdlib/assert-has-define-property-support -"2NA",@stdlib/assert/has-float16array-support -"2NB",@stdlib/assert-has-float16array-support -"034",@stdlib/assert/has-float32array-support -"035",@stdlib/assert-has-float32array-support -"036",@stdlib/assert/has-float64array-support -"037",@stdlib/assert-has-float64array-support -"038",@stdlib/assert/has-function-name-support -"039",@stdlib/assert-has-function-name-support -"03A",@stdlib/assert/has-generator-support -"03B",@stdlib/assert-has-generator-support -"03C",@stdlib/assert/has-globalthis-support -"03D",@stdlib/assert-has-globalthis-support -"2XY",@stdlib/assert/has-has-instance-symbol-support -"2XZ",@stdlib/assert-has-has-instance-symbol-support -"03E",@stdlib/assert/has-int16array-support -"03F",@stdlib/assert-has-int16array-support -"03G",@stdlib/assert/has-int32array-support -"03H",@stdlib/assert-has-int32array-support -"03I",@stdlib/assert/has-int8array-support -"03J",@stdlib/assert-has-int8array-support -"2Wk",@stdlib/assert/has-is-concat-spreadable-symbol-support -"2Wl",@stdlib/assert-has-is-concat-spreadable-symbol-support -"03K",@stdlib/assert/has-iterator-symbol-support -"03L",@stdlib/assert-has-iterator-symbol-support -"03M",@stdlib/assert/has-map-support -"03N",@stdlib/assert-has-map-support -"2Xa",@stdlib/assert/has-match-symbol-support -"2Xb",@stdlib/assert-has-match-symbol-support -"03O",@stdlib/assert/has-node-buffer-support -"03P",@stdlib/assert-has-node-buffer-support -"03Q",@stdlib/assert/has-own-property -"03R",@stdlib/assert-has-own-property -"03S",@stdlib/assert/has-property -"03T",@stdlib/assert-has-property -"03U",@stdlib/assert/has-proxy-support -"03V",@stdlib/assert-has-proxy-support -"2Xc",@stdlib/assert/has-replace-symbol-support -"2Xd",@stdlib/assert-has-replace-symbol-support -"2Xe",@stdlib/assert/has-search-symbol-support -"2Xf",@stdlib/assert-has-search-symbol-support -"03W",@stdlib/assert/has-set-support -"03X",@stdlib/assert-has-set-support -"03Y",@stdlib/assert/has-sharedarraybuffer-support -"03Z",@stdlib/assert-has-sharedarraybuffer-support -"2Xg",@stdlib/assert/has-split-symbol-support -"2Xh",@stdlib/assert-has-split-symbol-support -"03a",@stdlib/assert/has-symbol-support -"03b",@stdlib/assert-has-symbol-support -"2Xi",@stdlib/assert/has-to-primitive-symbol-support -"2Xj",@stdlib/assert-has-to-primitive-symbol-support -"03c",@stdlib/assert/has-tostringtag-support -"03d",@stdlib/assert-has-tostringtag-support -"03e",@stdlib/assert/has-uint16array-support -"03f",@stdlib/assert-has-uint16array-support -"03g",@stdlib/assert/has-uint32array-support -"03h",@stdlib/assert-has-uint32array-support -"03i",@stdlib/assert/has-uint8array-support -"03j",@stdlib/assert-has-uint8array-support -"03k",@stdlib/assert/has-uint8clampedarray-support -"03l",@stdlib/assert-has-uint8clampedarray-support -"03m",@stdlib/assert/has-utf16-surrogate-pair-at -"03n",@stdlib/assert-has-utf16-surrogate-pair-at -"03o",@stdlib/assert/has-wasm-support -"03p",@stdlib/assert-has-wasm-support -"03q",@stdlib/assert/has-weakmap-support -"03r",@stdlib/assert-has-weakmap-support -"03s",@stdlib/assert/has-weakset-support -"03t",@stdlib/assert-has-weakset-support -"03u",@stdlib/assert/instance-of -"03v",@stdlib/assert-instance-of -"03w",@stdlib/assert/is-absolute-http-uri -"03x",@stdlib/assert-is-absolute-http-uri -"03y",@stdlib/assert/is-absolute-path -"03z",@stdlib/assert-is-absolute-path -"040",@stdlib/assert/is-absolute-uri -"041",@stdlib/assert-is-absolute-uri -"1Zo",@stdlib/assert/is-accessor-array -"1Zp",@stdlib/assert-is-accessor-array -"042",@stdlib/assert/is-accessor-property-in -"043",@stdlib/assert-is-accessor-property-in -"044",@stdlib/assert/is-accessor-property -"045",@stdlib/assert-is-accessor-property -"2Rg",@stdlib/assert/is-almost-equal-array -"2Rh",@stdlib/assert-is-almost-equal-array -"2Ri",@stdlib/assert/is-almost-equal-complex128array -"2Rj",@stdlib/assert-is-almost-equal-complex128array -"2Rk",@stdlib/assert/is-almost-equal-complex64array -"2Rl",@stdlib/assert-is-almost-equal-complex64array -"2Rm",@stdlib/assert/is-almost-equal-float32array -"2Rn",@stdlib/assert-is-almost-equal-float32array -"2NC",@stdlib/assert/is-almost-equal-float64array -"2ND",@stdlib/assert-is-almost-equal-float64array -"2NE",@stdlib/assert/is-almost-equal -"2NF",@stdlib/assert-is-almost-equal -"2d0",@stdlib/assert/is-almost-same-array -"2d1",@stdlib/assert-is-almost-same-array -"2d2",@stdlib/assert/is-almost-same-complex128array -"2d3",@stdlib/assert-is-almost-same-complex128array -"2d4",@stdlib/assert/is-almost-same-complex64array -"2d5",@stdlib/assert-is-almost-same-complex64array -"2d6",@stdlib/assert/is-almost-same-float32array -"2d7",@stdlib/assert-is-almost-same-float32array -"2d8",@stdlib/assert/is-almost-same-float64array -"2d9",@stdlib/assert-is-almost-same-float64array -"2dA",@stdlib/assert/is-almost-same-value -"2dB",@stdlib/assert-is-almost-same-value -"046",@stdlib/assert/is-alphagram -"047",@stdlib/assert-is-alphagram -"048",@stdlib/assert/is-alphanumeric -"049",@stdlib/assert-is-alphanumeric -"04A",@stdlib/assert/is-anagram -"04B",@stdlib/assert-is-anagram -"04C",@stdlib/assert/is-arguments -"04D",@stdlib/assert-is-arguments -"04E",@stdlib/assert/is-array-array -"04F",@stdlib/assert-is-array-array -"04G",@stdlib/assert/is-array-length -"04H",@stdlib/assert-is-array-length -"04I",@stdlib/assert/is-array-like-object -"04J",@stdlib/assert-is-array-like-object -"04K",@stdlib/assert/is-array-like -"04L",@stdlib/assert-is-array-like -"04M",@stdlib/assert/is-array -"04N",@stdlib/assert-is-array -"04O",@stdlib/assert/is-arraybuffer-view -"04P",@stdlib/assert-is-arraybuffer-view -"04Q",@stdlib/assert/is-arraybuffer -"04R",@stdlib/assert-is-arraybuffer -"04S",@stdlib/assert/is-arrow-function -"04T",@stdlib/assert-is-arrow-function -"04U",@stdlib/assert/is-ascii -"04V",@stdlib/assert-is-ascii -"04W",@stdlib/assert/is-between-array -"04X",@stdlib/assert-is-between-array -"04Y",@stdlib/assert/is-between -"04Z",@stdlib/assert-is-between -"04a",@stdlib/assert/is-big-endian -"04b",@stdlib/assert-is-big-endian -"04c",@stdlib/assert/is-bigint -"04d",@stdlib/assert-is-bigint -"04e",@stdlib/assert/is-bigint64array -"04f",@stdlib/assert-is-bigint64array -"04g",@stdlib/assert/is-biguint64array -"04h",@stdlib/assert-is-biguint64array -"04i",@stdlib/assert/is-binary-string -"04j",@stdlib/assert-is-binary-string -"04k",@stdlib/assert/is-blank-string -"04l",@stdlib/assert-is-blank-string -"04m",@stdlib/assert/is-boolean-array -"04n",@stdlib/assert-is-boolean-array -"04o",@stdlib/assert/is-boolean -"04p",@stdlib/assert-is-boolean -"1vW",@stdlib/assert/is-booleanarray -"1vX",@stdlib/assert-is-booleanarray -"04q",@stdlib/assert/is-boxed-primitive -"04r",@stdlib/assert-is-boxed-primitive -"04s",@stdlib/assert/is-browser -"04t",@stdlib/assert-is-browser -"04u",@stdlib/assert/is-buffer -"04v",@stdlib/assert-is-buffer -"1Zq",@stdlib/assert/is-camelcase -"1Zr",@stdlib/assert-is-camelcase -"04w",@stdlib/assert/is-capitalized -"04x",@stdlib/assert-is-capitalized -"04y",@stdlib/assert/is-centrosymmetric-matrix -"04z",@stdlib/assert-is-centrosymmetric-matrix -"050",@stdlib/assert/is-circular-array -"051",@stdlib/assert-is-circular-array -"052",@stdlib/assert/is-circular-plain-object -"053",@stdlib/assert-is-circular-plain-object -"054",@stdlib/assert/is-circular -"055",@stdlib/assert-is-circular -"056",@stdlib/assert/is-class -"057",@stdlib/assert-is-class -"058",@stdlib/assert/is-collection -"059",@stdlib/assert-is-collection -"05A",@stdlib/assert/is-complex-like -"05B",@stdlib/assert-is-complex-like -"05C",@stdlib/assert/is-complex-typed-array-like -"05D",@stdlib/assert-is-complex-typed-array-like -"05E",@stdlib/assert/is-complex-typed-array -"05F",@stdlib/assert-is-complex-typed-array -"05G",@stdlib/assert/is-complex -"05H",@stdlib/assert-is-complex -"05I",@stdlib/assert/is-complex128 -"05J",@stdlib/assert-is-complex128 -"05K",@stdlib/assert/is-complex128array -"05L",@stdlib/assert-is-complex128array -"1mU",@stdlib/assert/is-complex128matrix-like -"1mV",@stdlib/assert-is-complex128matrix-like -"1mW",@stdlib/assert/is-complex128ndarray-like -"1mX",@stdlib/assert-is-complex128ndarray-like -"1mY",@stdlib/assert/is-complex128vector-like -"1mZ",@stdlib/assert-is-complex128vector-like -"05M",@stdlib/assert/is-complex64 -"05N",@stdlib/assert-is-complex64 -"05O",@stdlib/assert/is-complex64array -"05P",@stdlib/assert-is-complex64array -"1ma",@stdlib/assert/is-complex64matrix-like -"1mb",@stdlib/assert-is-complex64matrix-like -"1mc",@stdlib/assert/is-complex64ndarray-like -"1md",@stdlib/assert-is-complex64ndarray-like -"1me",@stdlib/assert/is-complex64vector-like -"1mf",@stdlib/assert-is-complex64vector-like -"05Q",@stdlib/assert/is-composite -"05R",@stdlib/assert-is-composite -"05S",@stdlib/assert/is-configurable-property-in -"05T",@stdlib/assert-is-configurable-property-in -"05U",@stdlib/assert/is-configurable-property -"05V",@stdlib/assert-is-configurable-property -"1Zs",@stdlib/assert/is-constantcase -"1Zt",@stdlib/assert-is-constantcase -"05W",@stdlib/assert/is-cube-number -"05X",@stdlib/assert-is-cube-number -"1Zu",@stdlib/assert/is-current-year -"1Zv",@stdlib/assert-is-current-year -"05Y",@stdlib/assert/is-darwin -"05Z",@stdlib/assert-is-darwin -"05a",@stdlib/assert/is-data-property-in -"05b",@stdlib/assert-is-data-property-in -"05c",@stdlib/assert/is-data-property -"05d",@stdlib/assert-is-data-property -"05e",@stdlib/assert/is-dataview -"05f",@stdlib/assert-is-dataview -"05g",@stdlib/assert/is-date-object-array -"05h",@stdlib/assert-is-date-object-array -"05i",@stdlib/assert/is-date-object -"05j",@stdlib/assert-is-date-object -"05k",@stdlib/assert/is-digit-string -"05l",@stdlib/assert-is-digit-string -"05m",@stdlib/assert/is-docker -"05n",@stdlib/assert-is-docker -"1Zw",@stdlib/assert/is-domain-name -"1Zx",@stdlib/assert-is-domain-name -"1Zy",@stdlib/assert/is-duration-string -"1Zz",@stdlib/assert-is-duration-string -"05o",@stdlib/assert/is-electron-main -"05p",@stdlib/assert-is-electron-main -"05q",@stdlib/assert/is-electron-renderer -"05r",@stdlib/assert-is-electron-renderer -"05s",@stdlib/assert/is-electron -"05t",@stdlib/assert-is-electron -"05u",@stdlib/assert/is-email-address -"05v",@stdlib/assert-is-email-address -"05w",@stdlib/assert/is-empty-array-like-object -"05x",@stdlib/assert-is-empty-array-like-object -"05y",@stdlib/assert/is-empty-array -"05z",@stdlib/assert-is-empty-array -"060",@stdlib/assert/is-empty-collection -"061",@stdlib/assert-is-empty-collection -"062",@stdlib/assert/is-empty-object -"063",@stdlib/assert-is-empty-object -"064",@stdlib/assert/is-empty-string -"065",@stdlib/assert-is-empty-string -"066",@stdlib/assert/is-enumerable-property-in -"067",@stdlib/assert-is-enumerable-property-in -"068",@stdlib/assert/is-enumerable-property -"069",@stdlib/assert-is-enumerable-property -"1zq",@stdlib/assert/is-equal-array -"1zr",@stdlib/assert-is-equal-array -"2HY",@stdlib/assert/is-equal-booleanarray -"2HZ",@stdlib/assert-is-equal-booleanarray -"2Ha",@stdlib/assert/is-equal-date-object -"2Hb",@stdlib/assert-is-equal-date-object -"2Hc",@stdlib/assert/is-equal-int16array -"2Hd",@stdlib/assert-is-equal-int16array -"2He",@stdlib/assert/is-equal-int32array -"2Hf",@stdlib/assert-is-equal-int32array -"2Hg",@stdlib/assert/is-equal-int8array -"2Hh",@stdlib/assert-is-equal-int8array -"2Hi",@stdlib/assert/is-equal-uint16array -"2Hj",@stdlib/assert-is-equal-uint16array -"2Hk",@stdlib/assert/is-equal-uint32array -"2Hl",@stdlib/assert-is-equal-uint32array -"2Hm",@stdlib/assert/is-equal-uint8array -"2Hn",@stdlib/assert-is-equal-uint8array -"2Ho",@stdlib/assert/is-equal-uint8clampedarray -"2Hp",@stdlib/assert-is-equal-uint8clampedarray -"06A",@stdlib/assert/is-error -"06B",@stdlib/assert-is-error -"06C",@stdlib/assert/is-eval-error -"06D",@stdlib/assert-is-eval-error -"06E",@stdlib/assert/is-even -"06F",@stdlib/assert-is-even -"06G",@stdlib/assert/is-falsy-array -"06H",@stdlib/assert-is-falsy-array -"06I",@stdlib/assert/is-falsy -"06J",@stdlib/assert-is-falsy -"06K",@stdlib/assert/is-finite-array -"06L",@stdlib/assert-is-finite-array -"06M",@stdlib/assert/is-finite -"06N",@stdlib/assert-is-finite -"2NG",@stdlib/assert/is-float16array -"2NH",@stdlib/assert-is-float16array -"06O",@stdlib/assert/is-float32array -"06P",@stdlib/assert-is-float32array -"06Q",@stdlib/assert/is-float32matrix-like -"06R",@stdlib/assert-is-float32matrix-like -"06S",@stdlib/assert/is-float32ndarray-like -"06T",@stdlib/assert-is-float32ndarray-like -"06U",@stdlib/assert/is-float32vector-like -"06V",@stdlib/assert-is-float32vector-like -"06W",@stdlib/assert/is-float64array -"06X",@stdlib/assert-is-float64array -"06Y",@stdlib/assert/is-float64matrix-like -"06Z",@stdlib/assert-is-float64matrix-like -"06a",@stdlib/assert/is-float64ndarray-like -"06b",@stdlib/assert-is-float64ndarray-like -"06c",@stdlib/assert/is-float64vector-like -"06d",@stdlib/assert-is-float64vector-like -"06e",@stdlib/assert/is-function-array -"06f",@stdlib/assert-is-function-array -"06g",@stdlib/assert/is-function -"06h",@stdlib/assert-is-function -"06i",@stdlib/assert/is-generator-object-like -"06j",@stdlib/assert-is-generator-object-like -"06k",@stdlib/assert/is-generator-object -"06l",@stdlib/assert-is-generator-object -"06m",@stdlib/assert/is-gzip-buffer -"06n",@stdlib/assert-is-gzip-buffer -"06o",@stdlib/assert/is-hex-string -"06p",@stdlib/assert-is-hex-string -"06q",@stdlib/assert/is-infinite -"06r",@stdlib/assert-is-infinite -"06s",@stdlib/assert/is-inherited-property -"06t",@stdlib/assert-is-inherited-property -"06u",@stdlib/assert/is-int16array -"06v",@stdlib/assert-is-int16array -"06w",@stdlib/assert/is-int32array -"06x",@stdlib/assert-is-int32array -"06y",@stdlib/assert/is-int8array -"06z",@stdlib/assert-is-int8array -"070",@stdlib/assert/is-integer-array -"071",@stdlib/assert-is-integer-array -"072",@stdlib/assert/is-integer -"073",@stdlib/assert-is-integer -"074",@stdlib/assert/is-iterable-like -"075",@stdlib/assert-is-iterable-like -"076",@stdlib/assert/is-iterator-like -"077",@stdlib/assert-is-iterator-like -"078",@stdlib/assert/is-json -"079",@stdlib/assert-is-json -"1a0",@stdlib/assert/is-kebabcase -"1a1",@stdlib/assert-is-kebabcase -"07A",@stdlib/assert/is-leap-year -"07B",@stdlib/assert-is-leap-year -"07C",@stdlib/assert/is-little-endian -"07D",@stdlib/assert-is-little-endian -"07E",@stdlib/assert/is-localhost -"07F",@stdlib/assert-is-localhost -"07G",@stdlib/assert/is-lowercase -"07H",@stdlib/assert-is-lowercase -"07I",@stdlib/assert/is-matrix-like -"07J",@stdlib/assert-is-matrix-like -"07K",@stdlib/assert/is-method-in -"07L",@stdlib/assert-is-method-in -"07M",@stdlib/assert/is-method -"07N",@stdlib/assert-is-method -"07O",@stdlib/assert/is-mobile -"07P",@stdlib/assert-is-mobile -"1ii",@stdlib/assert/is-multi-slice -"1ij",@stdlib/assert-is-multi-slice -"07Q",@stdlib/assert/is-named-typed-tuple-like -"07R",@stdlib/assert-is-named-typed-tuple-like -"07S",@stdlib/assert/is-nan-array -"07T",@stdlib/assert-is-nan-array -"07U",@stdlib/assert/is-nan -"07V",@stdlib/assert-is-nan -"07W",@stdlib/assert/is-native-function -"07X",@stdlib/assert-is-native-function -"2dC",@stdlib/assert/is-ndarray-descriptor -"2dD",@stdlib/assert-is-ndarray-descriptor -"21c",@stdlib/assert/is-ndarray-like-with-data-type -"21d",@stdlib/assert-is-ndarray-like-with-data-type -"07Y",@stdlib/assert/is-ndarray-like -"07Z",@stdlib/assert-is-ndarray-like -"1sG",@stdlib/assert/is-negative-finite -"1sH",@stdlib/assert-is-negative-finite -"07a",@stdlib/assert/is-negative-integer-array -"07b",@stdlib/assert-is-negative-integer-array -"07c",@stdlib/assert/is-negative-integer -"07d",@stdlib/assert-is-negative-integer -"07e",@stdlib/assert/is-negative-number-array -"07f",@stdlib/assert-is-negative-number-array -"07g",@stdlib/assert/is-negative-number -"07h",@stdlib/assert-is-negative-number -"07i",@stdlib/assert/is-negative-zero -"07j",@stdlib/assert-is-negative-zero -"07k",@stdlib/assert/is-node-builtin -"07l",@stdlib/assert-is-node-builtin -"07m",@stdlib/assert/is-node-duplex-stream-like -"07n",@stdlib/assert-is-node-duplex-stream-like -"07o",@stdlib/assert/is-node-readable-stream-like -"07p",@stdlib/assert-is-node-readable-stream-like -"07q",@stdlib/assert/is-node-repl -"07r",@stdlib/assert-is-node-repl -"07s",@stdlib/assert/is-node-stream-like -"07t",@stdlib/assert-is-node-stream-like -"07u",@stdlib/assert/is-node-transform-stream-like -"07v",@stdlib/assert-is-node-transform-stream-like -"07w",@stdlib/assert/is-node-writable-stream-like -"07x",@stdlib/assert-is-node-writable-stream-like -"07y",@stdlib/assert/is-node -"07z",@stdlib/assert-is-node -"080",@stdlib/assert/is-nonconfigurable-property-in -"081",@stdlib/assert-is-nonconfigurable-property-in -"082",@stdlib/assert/is-nonconfigurable-property -"083",@stdlib/assert-is-nonconfigurable-property -"084",@stdlib/assert/is-nonenumerable-property-in -"085",@stdlib/assert-is-nonenumerable-property-in -"086",@stdlib/assert/is-nonenumerable-property -"087",@stdlib/assert-is-nonenumerable-property -"1sI",@stdlib/assert/is-nonnegative-finite -"1sJ",@stdlib/assert-is-nonnegative-finite -"088",@stdlib/assert/is-nonnegative-integer-array -"089",@stdlib/assert-is-nonnegative-integer-array -"08A",@stdlib/assert/is-nonnegative-integer -"08B",@stdlib/assert-is-nonnegative-integer -"08C",@stdlib/assert/is-nonnegative-number-array -"08D",@stdlib/assert-is-nonnegative-number-array -"08E",@stdlib/assert/is-nonnegative-number -"08F",@stdlib/assert-is-nonnegative-number -"1sU",@stdlib/assert/is-nonpositive-finite -"1sV",@stdlib/assert-is-nonpositive-finite -"08G",@stdlib/assert/is-nonpositive-integer-array -"08H",@stdlib/assert-is-nonpositive-integer-array -"08I",@stdlib/assert/is-nonpositive-integer -"08J",@stdlib/assert-is-nonpositive-integer -"08K",@stdlib/assert/is-nonpositive-number-array -"08L",@stdlib/assert-is-nonpositive-number-array -"08M",@stdlib/assert/is-nonpositive-number -"08N",@stdlib/assert-is-nonpositive-number -"08O",@stdlib/assert/is-nonsymmetric-matrix -"08P",@stdlib/assert-is-nonsymmetric-matrix -"08Q",@stdlib/assert/is-null-array -"08R",@stdlib/assert-is-null-array -"08S",@stdlib/assert/is-null -"08T",@stdlib/assert-is-null -"08U",@stdlib/assert/is-number-array -"08V",@stdlib/assert-is-number-array -"08W",@stdlib/assert/is-number -"08X",@stdlib/assert-is-number -"08Y",@stdlib/assert/is-numeric-array -"08Z",@stdlib/assert-is-numeric-array -"08a",@stdlib/assert/is-object-array -"08b",@stdlib/assert-is-object-array -"08c",@stdlib/assert/is-object-like -"08d",@stdlib/assert-is-object-like -"08e",@stdlib/assert/is-object -"08f",@stdlib/assert-is-object -"08g",@stdlib/assert/is-odd -"08h",@stdlib/assert-is-odd -"1a2",@stdlib/assert/is-pascalcase -"1a3",@stdlib/assert-is-pascalcase -"08i",@stdlib/assert/is-persymmetric-matrix -"08j",@stdlib/assert-is-persymmetric-matrix -"08k",@stdlib/assert/is-plain-object-array -"08l",@stdlib/assert-is-plain-object-array -"08m",@stdlib/assert/is-plain-object -"08n",@stdlib/assert-is-plain-object -"1sK",@stdlib/assert/is-positive-finite -"1sL",@stdlib/assert-is-positive-finite -"08o",@stdlib/assert/is-positive-integer-array -"08p",@stdlib/assert-is-positive-integer-array -"08q",@stdlib/assert/is-positive-integer -"08r",@stdlib/assert-is-positive-integer -"08s",@stdlib/assert/is-positive-number-array -"08t",@stdlib/assert-is-positive-number-array -"08u",@stdlib/assert/is-positive-number -"08v",@stdlib/assert-is-positive-number -"08w",@stdlib/assert/is-positive-zero -"08x",@stdlib/assert-is-positive-zero -"08y",@stdlib/assert/is-prime -"08z",@stdlib/assert-is-prime -"090",@stdlib/assert/is-primitive-array -"091",@stdlib/assert-is-primitive-array -"092",@stdlib/assert/is-primitive -"093",@stdlib/assert-is-primitive -"094",@stdlib/assert/is-prng-like -"095",@stdlib/assert-is-prng-like -"096",@stdlib/assert/is-probability-array -"097",@stdlib/assert-is-probability-array -"098",@stdlib/assert/is-probability -"099",@stdlib/assert-is-probability -"09A",@stdlib/assert/is-property-key -"09B",@stdlib/assert-is-property-key -"09C",@stdlib/assert/is-prototype-of -"09D",@stdlib/assert-is-prototype-of -"1sW",@stdlib/assert/is-ragged-nested-array -"1sX",@stdlib/assert-is-ragged-nested-array -"09E",@stdlib/assert/is-range-error -"09F",@stdlib/assert-is-range-error -"09G",@stdlib/assert/is-read-only-property-in -"09H",@stdlib/assert-is-read-only-property-in -"09I",@stdlib/assert/is-read-only-property -"09J",@stdlib/assert-is-read-only-property -"09K",@stdlib/assert/is-read-write-property-in -"09L",@stdlib/assert-is-read-write-property-in -"09M",@stdlib/assert/is-read-write-property -"09N",@stdlib/assert-is-read-write-property -"09O",@stdlib/assert/is-readable-property-in -"09P",@stdlib/assert-is-readable-property-in -"09Q",@stdlib/assert/is-readable-property -"09R",@stdlib/assert-is-readable-property -"09S",@stdlib/assert/is-reference-error -"09T",@stdlib/assert-is-reference-error -"09U",@stdlib/assert/is-regexp-string -"09V",@stdlib/assert-is-regexp-string -"09W",@stdlib/assert/is-regexp -"09X",@stdlib/assert-is-regexp -"09Y",@stdlib/assert/is-relative-path -"09Z",@stdlib/assert-is-relative-path -"09a",@stdlib/assert/is-relative-uri -"09b",@stdlib/assert-is-relative-uri -"09c",@stdlib/assert/is-safe-integer-array -"09d",@stdlib/assert-is-safe-integer-array -"09e",@stdlib/assert/is-safe-integer -"09f",@stdlib/assert-is-safe-integer -"1zs",@stdlib/assert/is-same-accessor-array -"1zt",@stdlib/assert-is-same-accessor-array -"1zu",@stdlib/assert/is-same-array-like-object -"1zv",@stdlib/assert-is-same-array-like-object -"1zw",@stdlib/assert/is-same-array-like -"1zx",@stdlib/assert-is-same-array-like -"1pK",@stdlib/assert/is-same-array -"1pL",@stdlib/assert-is-same-array -"1pM",@stdlib/assert/is-same-complex128 -"1pN",@stdlib/assert-is-same-complex128 -"1pO",@stdlib/assert/is-same-complex128array -"1pP",@stdlib/assert-is-same-complex128array -"1pQ",@stdlib/assert/is-same-complex64 -"1pR",@stdlib/assert-is-same-complex64 -"1pS",@stdlib/assert/is-same-complex64array -"1pT",@stdlib/assert-is-same-complex64array -"1pU",@stdlib/assert/is-same-float32array -"1pV",@stdlib/assert-is-same-float32array -"1pW",@stdlib/assert/is-same-float64array -"1pX",@stdlib/assert-is-same-float64array -"09g",@stdlib/assert/is-same-native-class -"09h",@stdlib/assert-is-same-native-class -"09i",@stdlib/assert/is-same-type -"09j",@stdlib/assert-is-same-type -"22I",@stdlib/assert/is-same-typed-array-like -"22J",@stdlib/assert-is-same-typed-array-like -"09k",@stdlib/assert/is-same-value-zero -"09l",@stdlib/assert-is-same-value-zero -"09m",@stdlib/assert/is-same-value -"09n",@stdlib/assert-is-same-value -"1a4",@stdlib/assert/is-semver -"1a5",@stdlib/assert-is-semver -"09o",@stdlib/assert/is-sharedarraybuffer -"09p",@stdlib/assert-is-sharedarraybuffer -"09q",@stdlib/assert/is-skew-centrosymmetric-matrix -"09r",@stdlib/assert-is-skew-centrosymmetric-matrix -"09s",@stdlib/assert/is-skew-persymmetric-matrix -"09t",@stdlib/assert-is-skew-persymmetric-matrix -"09u",@stdlib/assert/is-skew-symmetric-matrix -"09v",@stdlib/assert-is-skew-symmetric-matrix -"1ik",@stdlib/assert/is-slice -"1il",@stdlib/assert-is-slice -"1a6",@stdlib/assert/is-snakecase -"1a7",@stdlib/assert-is-snakecase -"09w",@stdlib/assert/is-square-matrix -"09x",@stdlib/assert-is-square-matrix -"09y",@stdlib/assert/is-square-number -"09z",@stdlib/assert-is-square-number -"0A0",@stdlib/assert/is-square-triangular-number -"0A1",@stdlib/assert-is-square-triangular-number -"1a8",@stdlib/assert/is-startcase -"1a9",@stdlib/assert-is-startcase -"0A2",@stdlib/assert/is-strict-equal -"0A3",@stdlib/assert-is-strict-equal -"0A4",@stdlib/assert/is-string-array -"0A5",@stdlib/assert-is-string-array -"0A6",@stdlib/assert/is-string -"0A7",@stdlib/assert-is-string -"2NI",@stdlib/assert/is-struct-constructor-like -"2NJ",@stdlib/assert-is-struct-constructor-like -"2NK",@stdlib/assert/is-struct -"2NL",@stdlib/assert-is-struct -"0A8",@stdlib/assert/is-symbol-array -"0A9",@stdlib/assert-is-symbol-array -"0AA",@stdlib/assert/is-symbol -"0AB",@stdlib/assert-is-symbol -"0AC",@stdlib/assert/is-symmetric-matrix -"0AD",@stdlib/assert-is-symmetric-matrix -"0AE",@stdlib/assert/is-syntax-error -"0AF",@stdlib/assert-is-syntax-error -"0AG",@stdlib/assert/is-touch-device -"0AH",@stdlib/assert-is-touch-device -"0AI",@stdlib/assert/is-triangular-number -"0AJ",@stdlib/assert-is-triangular-number -"0AK",@stdlib/assert/is-truthy-array -"0AL",@stdlib/assert-is-truthy-array -"0AM",@stdlib/assert/is-truthy -"0AN",@stdlib/assert-is-truthy -"0AO",@stdlib/assert/is-type-error -"0AP",@stdlib/assert-is-type-error -"0AQ",@stdlib/assert/is-typed-array-length -"0AR",@stdlib/assert-is-typed-array-length -"0AS",@stdlib/assert/is-typed-array-like -"0AT",@stdlib/assert-is-typed-array-like -"0AU",@stdlib/assert/is-typed-array -"0AV",@stdlib/assert-is-typed-array -"0AW",@stdlib/assert/is-uint16array -"0AX",@stdlib/assert-is-uint16array -"0AY",@stdlib/assert/is-uint32array -"0AZ",@stdlib/assert-is-uint32array -"0Aa",@stdlib/assert/is-uint8array -"0Ab",@stdlib/assert-is-uint8array -"0Ac",@stdlib/assert/is-uint8clampedarray -"0Ad",@stdlib/assert-is-uint8clampedarray -"0Ae",@stdlib/assert/is-unc-path -"0Af",@stdlib/assert-is-unc-path -"0Ag",@stdlib/assert/is-undefined-or-null -"0Ah",@stdlib/assert-is-undefined-or-null -"0Ai",@stdlib/assert/is-undefined -"0Aj",@stdlib/assert-is-undefined -"0Ak",@stdlib/assert/is-unity-probability-array -"0Al",@stdlib/assert-is-unity-probability-array -"0Am",@stdlib/assert/is-uppercase -"0An",@stdlib/assert-is-uppercase -"0Ao",@stdlib/assert/is-uri-error -"0Ap",@stdlib/assert-is-uri-error -"0Aq",@stdlib/assert/is-uri -"0Ar",@stdlib/assert-is-uri -"0As",@stdlib/assert/is-vector-like -"0At",@stdlib/assert-is-vector-like -"1zy",@stdlib/assert/is-wasm-memory -"1zz",@stdlib/assert-is-wasm-memory -"0Au",@stdlib/assert/is-web-worker -"0Av",@stdlib/assert-is-web-worker -"1sY",@stdlib/assert/is-well-formed-string -"1sZ",@stdlib/assert-is-well-formed-string -"0Aw",@stdlib/assert/is-whitespace -"0Ax",@stdlib/assert-is-whitespace -"0Ay",@stdlib/assert/is-windows -"0Az",@stdlib/assert-is-windows -"0B0",@stdlib/assert/is-writable-property-in -"0B1",@stdlib/assert-is-writable-property-in -"0B2",@stdlib/assert/is-writable-property -"0B3",@stdlib/assert-is-writable-property -"0B4",@stdlib/assert/is-write-only-property-in -"0B5",@stdlib/assert-is-write-only-property-in -"0B6",@stdlib/assert/is-write-only-property -"0B7",@stdlib/assert-is-write-only-property -"1aA",@stdlib/assert/napi/equal-typedarray-types -"1aB",@stdlib/assert-napi-equal-typedarray-types -"1aC",@stdlib/assert/napi/equal-types -"1aD",@stdlib/assert-napi-equal-types -"1uS",@stdlib/assert/napi/has-property -"1uT",@stdlib/assert-napi-has-property -"2KG",@stdlib/assert/napi/is-dataview -"2KH",@stdlib/assert-napi-is-dataview -"1aE",@stdlib/assert/napi/is-type -"1aF",@stdlib/assert-napi-is-type -"1aG",@stdlib/assert/napi/is-typedarray -"1aH",@stdlib/assert-napi-is-typedarray -"1aI",@stdlib/assert/napi -"1aJ",@stdlib/assert-napi -"1aK",@stdlib/assert/napi/status-ok -"1aL",@stdlib/assert-napi-status-ok -"0B9",@stdlib/assert -"0BA",@stdlib/assert/tools/array-function -"0BB",@stdlib/assert-tools-array-function -"0BC",@stdlib/assert/tools/array-like-function -"0BD",@stdlib/assert-tools-array-like-function -"0BE",@stdlib/assert/tools -"0BF",@stdlib/assert-tools -"0BG",@stdlib/assert/tools/typed-array-function -"0BH",@stdlib/assert-tools-typed-array-function -"0BI",@stdlib/bench/harness -"0BJ",@stdlib/bench-harness -"0BL",@stdlib/bench -"0BM",@stdlib/bigint/ctor -"0BN",@stdlib/bigint-ctor -"0BP",@stdlib/bigint -"1wU",@stdlib/blas/base/assert/is-diagonal-type -"1wV",@stdlib/blas-base-assert-is-diagonal-type -"1vY",@stdlib/blas/base/assert/is-layout -"1vZ",@stdlib/blas-base-assert-is-layout -"2NM",@stdlib/blas/base/assert/is-matrix-orientation -"2NN",@stdlib/blas-base-assert-is-matrix-orientation -"1va",@stdlib/blas/base/assert/is-matrix-triangle -"1vb",@stdlib/blas-base-assert-is-matrix-triangle -"1wW",@stdlib/blas/base/assert/is-operation-side -"1wX",@stdlib/blas-base-assert-is-operation-side -"1vc",@stdlib/blas/base/assert/is-transpose-operation -"1vd",@stdlib/blas-base-assert-is-transpose-operation -"1ve",@stdlib/blas/base/assert -"1vf",@stdlib/blas-base-assert -"1xo",@stdlib/blas/base/caxpy -"1xp",@stdlib/blas-base-caxpy -"0BQ",@stdlib/blas/base/ccopy -"0BR",@stdlib/blas-base-ccopy -"2dE",@stdlib/blas/base/cgemv -"2dF",@stdlib/blas-base-cgemv -"1vg",@stdlib/blas/base/cscal -"1vh",@stdlib/blas-base-cscal -"1xY",@stdlib/blas/base/csrot -"1xZ",@stdlib/blas-base-csrot -"2Hq",@stdlib/blas/base/csscal -"2Hr",@stdlib/blas-base-csscal -"0BS",@stdlib/blas/base/cswap -"0BT",@stdlib/blas-base-cswap -"0BU",@stdlib/blas/base/dasum -"0BV",@stdlib/blas-base-dasum -"0BW",@stdlib/blas/base/daxpy -"0BX",@stdlib/blas-base-daxpy -"1vi",@stdlib/blas/base/dcabs1 -"1vj",@stdlib/blas-base-dcabs1 -"0BY",@stdlib/blas/base/dcopy -"0BZ",@stdlib/blas-base-dcopy -"0Ba",@stdlib/blas/base/ddot -"0Bb",@stdlib/blas-base-ddot -"1z2",@stdlib/blas/base/dgemm -"1z3",@stdlib/blas-base-dgemm -"1yY",@stdlib/blas/base/dgemv -"1yZ",@stdlib/blas-base-dgemv -"1uU",@stdlib/blas/base/dger -"1uV",@stdlib/blas-base-dger -"1wy",@stdlib/blas/base/diagonal-type-enum2str -"1wz",@stdlib/blas-base-diagonal-type-enum2str -"1x0",@stdlib/blas/base/diagonal-type-resolve-enum -"1x1",@stdlib/blas-base-diagonal-type-resolve-enum -"1x2",@stdlib/blas/base/diagonal-type-resolve-str -"1x3",@stdlib/blas-base-diagonal-type-resolve-str -"1x4",@stdlib/blas/base/diagonal-type-str2enum -"1x5",@stdlib/blas-base-diagonal-type-str2enum -"1vk",@stdlib/blas/base/diagonal-types -"1vl",@stdlib/blas-base-diagonal-types -"0Bc",@stdlib/blas/base/dnrm2 -"0Bd",@stdlib/blas-base-dnrm2 -"1uW",@stdlib/blas/base/drot -"1uX",@stdlib/blas-base-drot -"1aM",@stdlib/blas/base/drotg -"1aN",@stdlib/blas-base-drotg -"1x6",@stdlib/blas/base/drotm -"1x7",@stdlib/blas-base-drotm -"0Be",@stdlib/blas/base/dscal -"0Bf",@stdlib/blas-base-dscal -"0Bg",@stdlib/blas/base/dsdot -"0Bh",@stdlib/blas-base-dsdot -"1x8",@stdlib/blas/base/dspmv -"1x9",@stdlib/blas-base-dspmv -"0Bi",@stdlib/blas/base/dswap -"0Bj",@stdlib/blas-base-dswap -"1xA",@stdlib/blas/base/dsymv -"1xB",@stdlib/blas-base-dsymv -"1ya",@stdlib/blas/base/dsyr -"1yb",@stdlib/blas-base-dsyr -"1yc",@stdlib/blas/base/dsyr2 -"1yd",@stdlib/blas-base-dsyr2 -"1ye",@stdlib/blas/base/dtrmv -"1yf",@stdlib/blas-base-dtrmv -"1z4",@stdlib/blas/base/dtrsv -"1z5",@stdlib/blas-base-dtrsv -"2dG",@stdlib/blas/base/dzasum -"2dH",@stdlib/blas-base-dzasum -"1xa",@stdlib/blas/base/dznrm2 -"1xb",@stdlib/blas-base-dznrm2 -"0Bk",@stdlib/blas/base/gasum -"0Bl",@stdlib/blas-base-gasum -"0Bm",@stdlib/blas/base/gaxpy -"0Bn",@stdlib/blas-base-gaxpy -"0Bo",@stdlib/blas/base/gcopy -"0Bp",@stdlib/blas-base-gcopy -"0Bq",@stdlib/blas/base/gdot -"0Br",@stdlib/blas-base-gdot -"2Sm",@stdlib/blas/base/ggemm -"2Sn",@stdlib/blas-base-ggemm -"2So",@stdlib/blas/base/ggemv -"2Sp",@stdlib/blas-base-ggemv -"2NO",@stdlib/blas/base/gger -"2NP",@stdlib/blas-base-gger -"0Bs",@stdlib/blas/base/gnrm2 -"0Bt",@stdlib/blas-base-gnrm2 -"0Bu",@stdlib/blas/base/gscal -"0Bv",@stdlib/blas-base-gscal -"0Bw",@stdlib/blas/base/gswap -"0Bx",@stdlib/blas-base-gswap -"2Sq",@stdlib/blas/base/gsyr -"2Sr",@stdlib/blas-base-gsyr -"1uY",@stdlib/blas/base/idamax -"1uZ",@stdlib/blas-base-idamax -"2NQ",@stdlib/blas/base/igamax -"2NR",@stdlib/blas-base-igamax -"1ua",@stdlib/blas/base/isamax -"1ub",@stdlib/blas-base-isamax -"1vm",@stdlib/blas/base/layout-enum2str -"1vn",@stdlib/blas-base-layout-enum2str -"1vo",@stdlib/blas/base/layout-resolve-enum -"1vp",@stdlib/blas-base-layout-resolve-enum -"1vq",@stdlib/blas/base/layout-resolve-str -"1vr",@stdlib/blas-base-layout-resolve-str -"1vs",@stdlib/blas/base/layout-str2enum -"1vt",@stdlib/blas-base-layout-str2enum -"1vu",@stdlib/blas/base/layouts -"1vv",@stdlib/blas-base-layouts -"2NS",@stdlib/blas/base/matrix-orientation-enum2str -"2NT",@stdlib/blas-base-matrix-orientation-enum2str -"2NU",@stdlib/blas/base/matrix-orientation-resolve-enum -"2NV",@stdlib/blas-base-matrix-orientation-resolve-enum -"2NW",@stdlib/blas/base/matrix-orientation-resolve-str -"2NX",@stdlib/blas-base-matrix-orientation-resolve-str -"2NY",@stdlib/blas/base/matrix-orientation-str2enum -"2NZ",@stdlib/blas-base-matrix-orientation-str2enum -"2Na",@stdlib/blas/base/matrix-orientations -"2Nb",@stdlib/blas-base-matrix-orientations -"1xC",@stdlib/blas/base/matrix-triangle-enum2str -"1xD",@stdlib/blas-base-matrix-triangle-enum2str -"1xE",@stdlib/blas/base/matrix-triangle-resolve-enum -"1xF",@stdlib/blas-base-matrix-triangle-resolve-enum -"1xG",@stdlib/blas/base/matrix-triangle-resolve-str -"1xH",@stdlib/blas-base-matrix-triangle-resolve-str -"1xI",@stdlib/blas/base/matrix-triangle-str2enum -"1xJ",@stdlib/blas-base-matrix-triangle-str2enum -"1vw",@stdlib/blas/base/matrix-triangles -"1vx",@stdlib/blas-base-matrix-triangles -"2dI",@stdlib/blas/base/ndarray/caxpy -"2dJ",@stdlib/blas-base-ndarray-caxpy -"2dK",@stdlib/blas/base/ndarray/ccopy -"2dL",@stdlib/blas-base-ndarray-ccopy -"2dM",@stdlib/blas/base/ndarray/cscal -"2dN",@stdlib/blas-base-ndarray-cscal -"2dO",@stdlib/blas/base/ndarray/csscal -"2dP",@stdlib/blas-base-ndarray-csscal -"2dQ",@stdlib/blas/base/ndarray/cswap -"2dR",@stdlib/blas-base-ndarray-cswap -"2dS",@stdlib/blas/base/ndarray/dasum -"2dT",@stdlib/blas-base-ndarray-dasum -"2dU",@stdlib/blas/base/ndarray/daxpy -"2dV",@stdlib/blas-base-ndarray-daxpy -"2dW",@stdlib/blas/base/ndarray/dcopy -"2dX",@stdlib/blas-base-ndarray-dcopy -"2Ss",@stdlib/blas/base/ndarray/ddot -"2St",@stdlib/blas-base-ndarray-ddot -"2dY",@stdlib/blas/base/ndarray/dnrm2 -"2dZ",@stdlib/blas-base-ndarray-dnrm2 -"2da",@stdlib/blas/base/ndarray/dscal -"2db",@stdlib/blas-base-ndarray-dscal -"2dc",@stdlib/blas/base/ndarray/dsdot -"2dd",@stdlib/blas-base-ndarray-dsdot -"2de",@stdlib/blas/base/ndarray/dswap -"2df",@stdlib/blas-base-ndarray-dswap -"2dg",@stdlib/blas/base/ndarray/dzasum -"2dh",@stdlib/blas-base-ndarray-dzasum -"2di",@stdlib/blas/base/ndarray/dznrm2 -"2dj",@stdlib/blas-base-ndarray-dznrm2 -"2dk",@stdlib/blas/base/ndarray/gasum -"2dl",@stdlib/blas-base-ndarray-gasum -"2dm",@stdlib/blas/base/ndarray/gaxpy -"2dn",@stdlib/blas-base-ndarray-gaxpy -"2do",@stdlib/blas/base/ndarray/gcopy -"2dp",@stdlib/blas-base-ndarray-gcopy -"2Su",@stdlib/blas/base/ndarray/gdot -"2Sv",@stdlib/blas-base-ndarray-gdot -"2dq",@stdlib/blas/base/ndarray/gnrm2 -"2dr",@stdlib/blas-base-ndarray-gnrm2 -"2ds",@stdlib/blas/base/ndarray/gscal -"2dt",@stdlib/blas-base-ndarray-gscal -"2du",@stdlib/blas/base/ndarray/gswap -"2dv",@stdlib/blas-base-ndarray-gswap -"2dw",@stdlib/blas/base/ndarray/idamax -"2dx",@stdlib/blas-base-ndarray-idamax -"2dy",@stdlib/blas/base/ndarray -"2dz",@stdlib/blas-base-ndarray -"2e0",@stdlib/blas/base/ndarray/sasum -"2e1",@stdlib/blas-base-ndarray-sasum -"2e2",@stdlib/blas/base/ndarray/saxpy -"2e3",@stdlib/blas-base-ndarray-saxpy -"2e4",@stdlib/blas/base/ndarray/scasum -"2e5",@stdlib/blas-base-ndarray-scasum -"2e6",@stdlib/blas/base/ndarray/scnrm2 -"2e7",@stdlib/blas-base-ndarray-scnrm2 -"2e8",@stdlib/blas/base/ndarray/scopy -"2e9",@stdlib/blas-base-ndarray-scopy -"2Sw",@stdlib/blas/base/ndarray/sdot -"2Sx",@stdlib/blas-base-ndarray-sdot -"2eA",@stdlib/blas/base/ndarray/sdsdot -"2eB",@stdlib/blas-base-ndarray-sdsdot -"2eC",@stdlib/blas/base/ndarray/snrm2 -"2eD",@stdlib/blas-base-ndarray-snrm2 -"2eE",@stdlib/blas/base/ndarray/sscal -"2eF",@stdlib/blas-base-ndarray-sscal -"2eG",@stdlib/blas/base/ndarray/sswap -"2eH",@stdlib/blas-base-ndarray-sswap -"2eI",@stdlib/blas/base/ndarray/zaxpy -"2eJ",@stdlib/blas-base-ndarray-zaxpy -"2eK",@stdlib/blas/base/ndarray/zcopy -"2eL",@stdlib/blas-base-ndarray-zcopy -"2eM",@stdlib/blas/base/ndarray/zdscal -"2eN",@stdlib/blas-base-ndarray-zdscal -"2eO",@stdlib/blas/base/ndarray/zscal -"2eP",@stdlib/blas-base-ndarray-zscal -"2eQ",@stdlib/blas/base/ndarray/zswap -"2eR",@stdlib/blas-base-ndarray-zswap -"1xK",@stdlib/blas/base/operation-side-enum2str -"1xL",@stdlib/blas-base-operation-side-enum2str -"1xM",@stdlib/blas/base/operation-side-resolve-enum -"1xN",@stdlib/blas-base-operation-side-resolve-enum -"1xO",@stdlib/blas/base/operation-side-resolve-str -"1xP",@stdlib/blas-base-operation-side-resolve-str -"1xQ",@stdlib/blas/base/operation-side-str2enum -"1xR",@stdlib/blas-base-operation-side-str2enum -"1vy",@stdlib/blas/base/operation-sides -"1vz",@stdlib/blas-base-operation-sides -"0By",@stdlib/blas/base -"0Bz",@stdlib/blas-base -"0C0",@stdlib/blas/base/sasum -"0C1",@stdlib/blas-base-sasum -"0C2",@stdlib/blas/base/saxpy -"0C3",@stdlib/blas-base-saxpy -"1w0",@stdlib/blas/base/scabs1 -"1w1",@stdlib/blas-base-scabs1 -"1xq",@stdlib/blas/base/scasum -"1xr",@stdlib/blas-base-scasum -"1wY",@stdlib/blas/base/scnrm2 -"1wZ",@stdlib/blas-base-scnrm2 -"0C4",@stdlib/blas/base/scopy -"0C5",@stdlib/blas-base-scopy -"0C6",@stdlib/blas/base/sdot -"0C7",@stdlib/blas-base-sdot -"0C8",@stdlib/blas/base/sdsdot -"0C9",@stdlib/blas-base-sdsdot -"1z6",@stdlib/blas/base/sgemm -"1z7",@stdlib/blas-base-sgemm -"1yg",@stdlib/blas/base/sgemv -"1yh",@stdlib/blas-base-sgemv -"2Nc",@stdlib/blas/base/sger -"2Nd",@stdlib/blas-base-sger -"1uc",@stdlib/blas/base/shared -"1ud",@stdlib/blas-base-shared -"0CA",@stdlib/blas/base/snrm2 -"0CB",@stdlib/blas-base-snrm2 -"1ue",@stdlib/blas/base/srot -"1uf",@stdlib/blas-base-srot -"1aO",@stdlib/blas/base/srotg -"1aP",@stdlib/blas-base-srotg -"1wa",@stdlib/blas/base/srotm -"1wb",@stdlib/blas-base-srotm -"0CC",@stdlib/blas/base/sscal -"0CD",@stdlib/blas-base-sscal -"1wc",@stdlib/blas/base/sspmv -"1wd",@stdlib/blas-base-sspmv -"1z8",@stdlib/blas/base/sspr -"1z9",@stdlib/blas-base-sspr -"0CE",@stdlib/blas/base/sswap -"0CF",@stdlib/blas-base-sswap -"1we",@stdlib/blas/base/ssymv -"1wf",@stdlib/blas-base-ssymv -"1yi",@stdlib/blas/base/ssyr -"1yj",@stdlib/blas-base-ssyr -"1yk",@stdlib/blas/base/ssyr2 -"1yl",@stdlib/blas-base-ssyr2 -"1ym",@stdlib/blas/base/strmv -"1yn",@stdlib/blas-base-strmv -"1zA",@stdlib/blas/base/strsv -"1zB",@stdlib/blas-base-strsv -"1wg",@stdlib/blas/base/transpose-operation-enum2str -"1wh",@stdlib/blas-base-transpose-operation-enum2str -"1wi",@stdlib/blas/base/transpose-operation-resolve-enum -"1wj",@stdlib/blas-base-transpose-operation-resolve-enum -"1wk",@stdlib/blas/base/transpose-operation-resolve-str -"1wl",@stdlib/blas-base-transpose-operation-resolve-str -"1wm",@stdlib/blas/base/transpose-operation-str2enum -"1wn",@stdlib/blas-base-transpose-operation-str2enum -"1w2",@stdlib/blas/base/transpose-operations -"1w3",@stdlib/blas-base-transpose-operations -"26M",@stdlib/blas/base/wasm/ccopy -"26N",@stdlib/blas-base-wasm-ccopy -"26O",@stdlib/blas/base/wasm/cscal -"26P",@stdlib/blas-base-wasm-cscal -"26Q",@stdlib/blas/base/wasm/csrot -"26R",@stdlib/blas-base-wasm-csrot -"26S",@stdlib/blas/base/wasm/cswap -"26T",@stdlib/blas-base-wasm-cswap -"26U",@stdlib/blas/base/wasm/dasum -"26V",@stdlib/blas-base-wasm-dasum -"26W",@stdlib/blas/base/wasm/daxpy -"26X",@stdlib/blas-base-wasm-daxpy -"26Y",@stdlib/blas/base/wasm/dcopy -"26Z",@stdlib/blas-base-wasm-dcopy -"26a",@stdlib/blas/base/wasm/ddot -"26b",@stdlib/blas-base-wasm-ddot -"26c",@stdlib/blas/base/wasm/dnrm2 -"26d",@stdlib/blas-base-wasm-dnrm2 -"26e",@stdlib/blas/base/wasm/drot -"26f",@stdlib/blas-base-wasm-drot -"26g",@stdlib/blas/base/wasm/drotm -"26h",@stdlib/blas-base-wasm-drotm -"26i",@stdlib/blas/base/wasm/dscal -"26j",@stdlib/blas-base-wasm-dscal -"2FC",@stdlib/blas/base/wasm/dsdot -"2FD",@stdlib/blas-base-wasm-dsdot -"26k",@stdlib/blas/base/wasm/dswap -"26l",@stdlib/blas-base-wasm-dswap -"2Ne",@stdlib/blas/base/wasm/dznrm2 -"2Nf",@stdlib/blas-base-wasm-dznrm2 -"26m",@stdlib/blas/base/wasm/idamax -"26n",@stdlib/blas-base-wasm-idamax -"26o",@stdlib/blas/base/wasm/isamax -"26p",@stdlib/blas-base-wasm-isamax -"26q",@stdlib/blas/base/wasm -"26r",@stdlib/blas-base-wasm -"26s",@stdlib/blas/base/wasm/sasum -"26t",@stdlib/blas-base-wasm-sasum -"26u",@stdlib/blas/base/wasm/saxpy -"26v",@stdlib/blas-base-wasm-saxpy -"2Ng",@stdlib/blas/base/wasm/scasum -"2Nh",@stdlib/blas-base-wasm-scasum -"2Ni",@stdlib/blas/base/wasm/scnrm2 -"2Nj",@stdlib/blas-base-wasm-scnrm2 -"26w",@stdlib/blas/base/wasm/scopy -"26x",@stdlib/blas-base-wasm-scopy -"26y",@stdlib/blas/base/wasm/sdot -"26z",@stdlib/blas-base-wasm-sdot -"2GA",@stdlib/blas/base/wasm/sdsdot -"2GB",@stdlib/blas-base-wasm-sdsdot -"29c",@stdlib/blas/base/wasm/srotm -"29d",@stdlib/blas-base-wasm-srotm -"2Em",@stdlib/blas/base/wasm/sswap -"2En",@stdlib/blas-base-wasm-sswap -"2VI",@stdlib/blas/base/wasm/zscal -"2VJ",@stdlib/blas-base-wasm-zscal -"27A",@stdlib/blas/base/wasm/zswap -"27B",@stdlib/blas-base-wasm-zswap -"1ug",@stdlib/blas/base/xerbla -"1uh",@stdlib/blas-base-xerbla -"1xc",@stdlib/blas/base/zaxpy -"1xd",@stdlib/blas-base-zaxpy -"1t6",@stdlib/blas/base/zcopy -"1t7",@stdlib/blas-base-zcopy -"1xe",@stdlib/blas/base/zdrot -"1xf",@stdlib/blas-base-zdrot -"1wo",@stdlib/blas/base/zscal -"1wp",@stdlib/blas-base-zscal -"1t8",@stdlib/blas/base/zswap -"1t9",@stdlib/blas-base-zswap -"0CG",@stdlib/blas/ddot -"0CH",@stdlib/blas-ddot -"0CI",@stdlib/blas/dswap -"0CJ",@stdlib/blas-dswap -"2eS",@stdlib/blas/ext/base/capx -"2eT",@stdlib/blas-ext-base-capx -"2eU",@stdlib/blas/ext/base/caxpb -"2eV",@stdlib/blas-ext-base-caxpb -"2eW",@stdlib/blas/ext/base/cindex-of-column -"2eX",@stdlib/blas-ext-base-cindex-of-column -"2eY",@stdlib/blas/ext/base/cindex-of-row -"2eZ",@stdlib/blas-ext-base-cindex-of-row -"2ea",@stdlib/blas/ext/base/cindex-of -"2eb",@stdlib/blas-ext-base-cindex-of -"2ec",@stdlib/blas/ext/base/clast-index-of-row -"2ed",@stdlib/blas-ext-base-clast-index-of-row -"2ee",@stdlib/blas/ext/base/cone-to -"2ef",@stdlib/blas-ext-base-cone-to -"2Hs",@stdlib/blas/ext/base/csum -"2Ht",@stdlib/blas-ext-base-csum -"2Hu",@stdlib/blas/ext/base/csumkbn -"2Hv",@stdlib/blas-ext-base-csumkbn -"2eg",@stdlib/blas/ext/base/cunitspace -"2eh",@stdlib/blas-ext-base-cunitspace -"2ei",@stdlib/blas/ext/base/cwhere -"2ej",@stdlib/blas-ext-base-cwhere -"2ek",@stdlib/blas/ext/base/cxsa -"2el",@stdlib/blas-ext-base-cxsa -"2em",@stdlib/blas/ext/base/czero-to -"2en",@stdlib/blas-ext-base-czero-to -"0CK",@stdlib/blas/ext/base/dapx -"0CL",@stdlib/blas-ext-base-dapx -"0CM",@stdlib/blas/ext/base/dapxsum -"0CN",@stdlib/blas-ext-base-dapxsum -"0CO",@stdlib/blas/ext/base/dapxsumkbn -"0CP",@stdlib/blas-ext-base-dapxsumkbn -"0CQ",@stdlib/blas/ext/base/dapxsumkbn2 -"0CR",@stdlib/blas-ext-base-dapxsumkbn2 -"0CS",@stdlib/blas/ext/base/dapxsumors -"0CT",@stdlib/blas-ext-base-dapxsumors -"0CU",@stdlib/blas/ext/base/dapxsumpw -"0CV",@stdlib/blas-ext-base-dapxsumpw -"0CW",@stdlib/blas/ext/base/dasumpw -"0CX",@stdlib/blas-ext-base-dasumpw -"2eo",@stdlib/blas/ext/base/daxpb -"2ep",@stdlib/blas-ext-base-daxpb -"2eq",@stdlib/blas/ext/base/dcartesian-power -"2er",@stdlib/blas-ext-base-dcartesian-power -"2es",@stdlib/blas/ext/base/dcartesian-product -"2et",@stdlib/blas-ext-base-dcartesian-product -"2eu",@stdlib/blas/ext/base/dcartesian-square -"2ev",@stdlib/blas-ext-base-dcartesian-square -"2ew",@stdlib/blas/ext/base/dcircshift -"2ex",@stdlib/blas-ext-base-dcircshift -"0CY",@stdlib/blas/ext/base/dcusum -"0CZ",@stdlib/blas-ext-base-dcusum -"0Ca",@stdlib/blas/ext/base/dcusumkbn -"0Cb",@stdlib/blas-ext-base-dcusumkbn -"0Cc",@stdlib/blas/ext/base/dcusumkbn2 -"0Cd",@stdlib/blas-ext-base-dcusumkbn2 -"0Ce",@stdlib/blas/ext/base/dcusumors -"0Cf",@stdlib/blas-ext-base-dcusumors -"0Cg",@stdlib/blas/ext/base/dcusumpw -"0Ch",@stdlib/blas-ext-base-dcusumpw -"2ey",@stdlib/blas/ext/base/ddiff -"2ez",@stdlib/blas-ext-base-ddiff -"2f0",@stdlib/blas/ext/base/dediff -"2f1",@stdlib/blas-ext-base-dediff -"0Ci",@stdlib/blas/ext/base/dfill -"0Cj",@stdlib/blas-ext-base-dfill -"2f2",@stdlib/blas/ext/base/dindex-of-column -"2f3",@stdlib/blas-ext-base-dindex-of-column -"2f4",@stdlib/blas/ext/base/dindex-of-row -"2f5",@stdlib/blas-ext-base-dindex-of-row -"2Nk",@stdlib/blas/ext/base/dindex-of -"2Nl",@stdlib/blas-ext-base-dindex-of -"2f6",@stdlib/blas/ext/base/dlast-index-of-row -"2f7",@stdlib/blas-ext-base-dlast-index-of-row -"2Nm",@stdlib/blas/ext/base/dlast-index-of -"2Nn",@stdlib/blas-ext-base-dlast-index-of -"2Xk",@stdlib/blas/ext/base/dlinspace -"2Xl",@stdlib/blas-ext-base-dlinspace -"2f8",@stdlib/blas/ext/base/dmskrev -"2f9",@stdlib/blas-ext-base-dmskrev -"0Ck",@stdlib/blas/ext/base/dnanasum -"0Cl",@stdlib/blas-ext-base-dnanasum -"0Cm",@stdlib/blas/ext/base/dnanasumors -"0Cn",@stdlib/blas-ext-base-dnanasumors -"2fA",@stdlib/blas/ext/base/dnancount -"2fB",@stdlib/blas-ext-base-dnancount -"2Gw",@stdlib/blas/ext/base/dnancusumkbn -"2Gx",@stdlib/blas-ext-base-dnancusumkbn -"0Co",@stdlib/blas/ext/base/dnannsum -"0Cp",@stdlib/blas-ext-base-dnannsum -"0Cq",@stdlib/blas/ext/base/dnannsumkbn -"0Cr",@stdlib/blas-ext-base-dnannsumkbn -"0Cs",@stdlib/blas/ext/base/dnannsumkbn2 -"0Ct",@stdlib/blas-ext-base-dnannsumkbn2 -"0Cu",@stdlib/blas/ext/base/dnannsumors -"0Cv",@stdlib/blas-ext-base-dnannsumors -"0Cw",@stdlib/blas/ext/base/dnannsumpw -"0Cx",@stdlib/blas-ext-base-dnannsumpw -"0Cy",@stdlib/blas/ext/base/dnansum -"0Cz",@stdlib/blas-ext-base-dnansum -"0D0",@stdlib/blas/ext/base/dnansumkbn -"0D1",@stdlib/blas-ext-base-dnansumkbn -"0D2",@stdlib/blas/ext/base/dnansumkbn2 -"0D3",@stdlib/blas-ext-base-dnansumkbn2 -"0D4",@stdlib/blas/ext/base/dnansumors -"0D5",@stdlib/blas-ext-base-dnansumors -"0D6",@stdlib/blas/ext/base/dnansumpw -"0D7",@stdlib/blas-ext-base-dnansumpw -"2fC",@stdlib/blas/ext/base/done-to -"2fD",@stdlib/blas-ext-base-done-to -"0D8",@stdlib/blas/ext/base/drev -"0D9",@stdlib/blas-ext-base-drev -"2YQ",@stdlib/blas/ext/base/drrss -"2YR",@stdlib/blas-ext-base-drrss -"2fE",@stdlib/blas/ext/base/drss -"2fF",@stdlib/blas-ext-base-drss -"2fG",@stdlib/blas/ext/base/drssbl -"2fH",@stdlib/blas-ext-base-drssbl -"2fI",@stdlib/blas/ext/base/drsskbn -"2fJ",@stdlib/blas-ext-base-drsskbn -"0DA",@stdlib/blas/ext/base/dsapxsum -"0DB",@stdlib/blas-ext-base-dsapxsum -"0DC",@stdlib/blas/ext/base/dsapxsumpw -"0DD",@stdlib/blas-ext-base-dsapxsumpw -"0DE",@stdlib/blas/ext/base/dsnannsumors -"0DF",@stdlib/blas-ext-base-dsnannsumors -"0DG",@stdlib/blas/ext/base/dsnansum -"0DH",@stdlib/blas-ext-base-dsnansum -"0DI",@stdlib/blas/ext/base/dsnansumors -"0DJ",@stdlib/blas-ext-base-dsnansumors -"0DK",@stdlib/blas/ext/base/dsnansumpw -"0DL",@stdlib/blas-ext-base-dsnansumpw -"2fK",@stdlib/blas/ext/base/dsort -"2fL",@stdlib/blas-ext-base-dsort -"0DM",@stdlib/blas/ext/base/dsort2hp -"0DN",@stdlib/blas-ext-base-dsort2hp -"0DO",@stdlib/blas/ext/base/dsort2ins -"0DP",@stdlib/blas-ext-base-dsort2ins -"0DQ",@stdlib/blas/ext/base/dsort2sh -"0DR",@stdlib/blas-ext-base-dsort2sh -"0DS",@stdlib/blas/ext/base/dsorthp -"0DT",@stdlib/blas-ext-base-dsorthp -"0DU",@stdlib/blas/ext/base/dsortins -"0DV",@stdlib/blas-ext-base-dsortins -"0DW",@stdlib/blas/ext/base/dsortsh -"0DX",@stdlib/blas-ext-base-dsortsh -"0DY",@stdlib/blas/ext/base/dssum -"0DZ",@stdlib/blas-ext-base-dssum -"0Da",@stdlib/blas/ext/base/dssumors -"0Db",@stdlib/blas-ext-base-dssumors -"0Dc",@stdlib/blas/ext/base/dssumpw -"0Dd",@stdlib/blas-ext-base-dssumpw -"0De",@stdlib/blas/ext/base/dsum -"0Df",@stdlib/blas-ext-base-dsum -"0Dg",@stdlib/blas/ext/base/dsumkbn -"0Dh",@stdlib/blas-ext-base-dsumkbn -"0Di",@stdlib/blas/ext/base/dsumkbn2 -"0Dj",@stdlib/blas-ext-base-dsumkbn2 -"0Dk",@stdlib/blas/ext/base/dsumors -"0Dl",@stdlib/blas-ext-base-dsumors -"0Dm",@stdlib/blas/ext/base/dsumpw -"0Dn",@stdlib/blas-ext-base-dsumpw -"2fM",@stdlib/blas/ext/base/dunitspace -"2fN",@stdlib/blas-ext-base-dunitspace -"2fO",@stdlib/blas/ext/base/dvander -"2fP",@stdlib/blas-ext-base-dvander -"2fQ",@stdlib/blas/ext/base/dwhere -"2fR",@stdlib/blas-ext-base-dwhere -"2fS",@stdlib/blas/ext/base/dxsa -"2fT",@stdlib/blas-ext-base-dxsa -"2fU",@stdlib/blas/ext/base/dzero-to -"2fV",@stdlib/blas-ext-base-dzero-to -"0Do",@stdlib/blas/ext/base/gapx -"0Dp",@stdlib/blas-ext-base-gapx -"0Dq",@stdlib/blas/ext/base/gapxsum -"0Dr",@stdlib/blas-ext-base-gapxsum -"0Ds",@stdlib/blas/ext/base/gapxsumkbn -"0Dt",@stdlib/blas-ext-base-gapxsumkbn -"0Du",@stdlib/blas/ext/base/gapxsumkbn2 -"0Dv",@stdlib/blas-ext-base-gapxsumkbn2 -"0Dw",@stdlib/blas/ext/base/gapxsumors -"0Dx",@stdlib/blas-ext-base-gapxsumors -"0Dy",@stdlib/blas/ext/base/gapxsumpw -"0Dz",@stdlib/blas-ext-base-gapxsumpw -"0E0",@stdlib/blas/ext/base/gasumpw -"0E1",@stdlib/blas-ext-base-gasumpw -"2fW",@stdlib/blas/ext/base/gaxpb -"2fX",@stdlib/blas-ext-base-gaxpb -"2fY",@stdlib/blas/ext/base/gaxpby -"2fZ",@stdlib/blas-ext-base-gaxpby -"2fa",@stdlib/blas/ext/base/gcartesian-power -"2fb",@stdlib/blas-ext-base-gcartesian-power -"2fc",@stdlib/blas/ext/base/gcartesian-square -"2fd",@stdlib/blas-ext-base-gcartesian-square -"2fe",@stdlib/blas/ext/base/gcircshift -"2ff",@stdlib/blas-ext-base-gcircshift -"2fg",@stdlib/blas/ext/base/gconjoin -"2fh",@stdlib/blas-ext-base-gconjoin -"2fi",@stdlib/blas/ext/base/gcuevery -"2fj",@stdlib/blas-ext-base-gcuevery -"2fk",@stdlib/blas/ext/base/gcunone -"2fl",@stdlib/blas-ext-base-gcunone -"0E2",@stdlib/blas/ext/base/gcusum -"0E3",@stdlib/blas-ext-base-gcusum -"0E4",@stdlib/blas/ext/base/gcusumkbn -"0E5",@stdlib/blas-ext-base-gcusumkbn -"0E6",@stdlib/blas/ext/base/gcusumkbn2 -"0E7",@stdlib/blas-ext-base-gcusumkbn2 -"0E8",@stdlib/blas/ext/base/gcusumors -"0E9",@stdlib/blas-ext-base-gcusumors -"0EA",@stdlib/blas/ext/base/gcusumpw -"0EB",@stdlib/blas-ext-base-gcusumpw -"2fm",@stdlib/blas/ext/base/gdiff -"2fn",@stdlib/blas-ext-base-gdiff -"0EC",@stdlib/blas/ext/base/gfill-by -"0ED",@stdlib/blas-ext-base-gfill-by -"0EE",@stdlib/blas/ext/base/gfill -"0EF",@stdlib/blas-ext-base-gfill -"2Sy",@stdlib/blas/ext/base/gfind-index -"2Sz",@stdlib/blas-ext-base-gfind-index -"2T0",@stdlib/blas/ext/base/gfind-last-index -"2T1",@stdlib/blas-ext-base-gfind-last-index -"2fo",@stdlib/blas/ext/base/gindex-of-column -"2fp",@stdlib/blas-ext-base-gindex-of-column -"2W2",@stdlib/blas/ext/base/gindex-of-row -"2W3",@stdlib/blas-ext-base-gindex-of-row -"2No",@stdlib/blas/ext/base/gindex-of -"2Np",@stdlib/blas-ext-base-gindex-of -"2fq",@stdlib/blas/ext/base/gjoin-between -"2fr",@stdlib/blas-ext-base-gjoin-between -"2Yw",@stdlib/blas/ext/base/gjoin -"2Yx",@stdlib/blas-ext-base-gjoin -"2fs",@stdlib/blas/ext/base/glast-index-of-row -"2ft",@stdlib/blas-ext-base-glast-index-of-row -"2Nq",@stdlib/blas/ext/base/glast-index-of -"2Nr",@stdlib/blas-ext-base-glast-index-of -"2Xm",@stdlib/blas/ext/base/glinspace -"2Xn",@stdlib/blas-ext-base-glinspace -"2fu",@stdlib/blas/ext/base/gmskrev -"2fv",@stdlib/blas-ext-base-gmskrev -"2fw",@stdlib/blas/ext/base/gnancount -"2fx",@stdlib/blas-ext-base-gnancount -"0EG",@stdlib/blas/ext/base/gnannsumkbn -"0EH",@stdlib/blas-ext-base-gnannsumkbn -"2Hw",@stdlib/blas/ext/base/gnannsumpw -"2Hx",@stdlib/blas-ext-base-gnannsumpw -"0EI",@stdlib/blas/ext/base/gnansum -"0EJ",@stdlib/blas-ext-base-gnansum -"0EK",@stdlib/blas/ext/base/gnansumkbn -"0EL",@stdlib/blas-ext-base-gnansumkbn -"0EM",@stdlib/blas/ext/base/gnansumkbn2 -"0EN",@stdlib/blas-ext-base-gnansumkbn2 -"0EO",@stdlib/blas/ext/base/gnansumors -"0EP",@stdlib/blas-ext-base-gnansumors -"0EQ",@stdlib/blas/ext/base/gnansumpw -"0ER",@stdlib/blas-ext-base-gnansumpw -"2fy",@stdlib/blas/ext/base/gone-to -"2fz",@stdlib/blas-ext-base-gone-to -"2g0",@stdlib/blas/ext/base/greplicate -"2g1",@stdlib/blas-ext-base-greplicate -"0ES",@stdlib/blas/ext/base/grev -"0ET",@stdlib/blas-ext-base-grev -"2g2",@stdlib/blas/ext/base/gsort -"2g3",@stdlib/blas-ext-base-gsort -"0EU",@stdlib/blas/ext/base/gsort2hp -"0EV",@stdlib/blas-ext-base-gsort2hp -"0EW",@stdlib/blas/ext/base/gsort2ins -"0EX",@stdlib/blas-ext-base-gsort2ins -"0EY",@stdlib/blas/ext/base/gsort2sh -"0EZ",@stdlib/blas-ext-base-gsort2sh -"0Ea",@stdlib/blas/ext/base/gsorthp -"0Eb",@stdlib/blas-ext-base-gsorthp -"0Ec",@stdlib/blas/ext/base/gsortins -"0Ed",@stdlib/blas-ext-base-gsortins -"0Ee",@stdlib/blas/ext/base/gsortsh -"0Ef",@stdlib/blas-ext-base-gsortsh -"0Eg",@stdlib/blas/ext/base/gsum -"0Eh",@stdlib/blas-ext-base-gsum -"0Ei",@stdlib/blas/ext/base/gsumkbn -"0Ej",@stdlib/blas-ext-base-gsumkbn -"0Ek",@stdlib/blas/ext/base/gsumkbn2 -"0El",@stdlib/blas-ext-base-gsumkbn2 -"0Em",@stdlib/blas/ext/base/gsumors -"0En",@stdlib/blas-ext-base-gsumors -"0Eo",@stdlib/blas/ext/base/gsumpw -"0Ep",@stdlib/blas-ext-base-gsumpw -"2g4",@stdlib/blas/ext/base/gunitspace -"2g5",@stdlib/blas-ext-base-gunitspace -"2g6",@stdlib/blas/ext/base/gvander -"2g7",@stdlib/blas-ext-base-gvander -"2g8",@stdlib/blas/ext/base/gwhere -"2g9",@stdlib/blas-ext-base-gwhere -"2gA",@stdlib/blas/ext/base/gxsa -"2gB",@stdlib/blas-ext-base-gxsa -"2gC",@stdlib/blas/ext/base/gzero-to -"2gD",@stdlib/blas-ext-base-gzero-to -"2gE",@stdlib/blas/ext/base/ndarray/caxpb -"2gF",@stdlib/blas-ext-base-ndarray-caxpb -"2gG",@stdlib/blas/ext/base/ndarray/cindex-of -"2gH",@stdlib/blas-ext-base-ndarray-cindex-of -"2gI",@stdlib/blas/ext/base/ndarray/cone-to -"2gJ",@stdlib/blas-ext-base-ndarray-cone-to -"2Hy",@stdlib/blas/ext/base/ndarray/csum -"2Hz",@stdlib/blas-ext-base-ndarray-csum -"2Yy",@stdlib/blas/ext/base/ndarray/csumkbn -"2Yz",@stdlib/blas-ext-base-ndarray-csumkbn -"2gK",@stdlib/blas/ext/base/ndarray/cunitspace -"2gL",@stdlib/blas-ext-base-ndarray-cunitspace -"2gM",@stdlib/blas/ext/base/ndarray/cxsa -"2gN",@stdlib/blas-ext-base-ndarray-cxsa -"2gO",@stdlib/blas/ext/base/ndarray/czero-to -"2gP",@stdlib/blas-ext-base-ndarray-czero-to -"2gQ",@stdlib/blas/ext/base/ndarray/daxpb -"2gR",@stdlib/blas-ext-base-ndarray-daxpb -"2gS",@stdlib/blas/ext/base/ndarray/dcircshift -"2gT",@stdlib/blas-ext-base-ndarray-dcircshift -"2FE",@stdlib/blas/ext/base/ndarray/dcusum -"2FF",@stdlib/blas-ext-base-ndarray-dcusum -"2Z0",@stdlib/blas/ext/base/ndarray/dcusumkbn -"2Z1",@stdlib/blas-ext-base-ndarray-dcusumkbn -"2Z2",@stdlib/blas/ext/base/ndarray/dcusumkbn2 -"2Z3",@stdlib/blas-ext-base-ndarray-dcusumkbn2 -"2gU",@stdlib/blas/ext/base/ndarray/dcusumors -"2gV",@stdlib/blas-ext-base-ndarray-dcusumors -"2gW",@stdlib/blas/ext/base/ndarray/dcusumpw -"2gX",@stdlib/blas-ext-base-ndarray-dcusumpw -"2Ns",@stdlib/blas/ext/base/ndarray/dindex-of -"2Nt",@stdlib/blas-ext-base-ndarray-dindex-of -"2Nu",@stdlib/blas/ext/base/ndarray/dlast-index-of -"2Nv",@stdlib/blas-ext-base-ndarray-dlast-index-of -"2Xo",@stdlib/blas/ext/base/ndarray/dlinspace -"2Xp",@stdlib/blas-ext-base-ndarray-dlinspace -"2gY",@stdlib/blas/ext/base/ndarray/dnansum -"2gZ",@stdlib/blas-ext-base-ndarray-dnansum -"2ga",@stdlib/blas/ext/base/ndarray/dnansumkbn -"2gb",@stdlib/blas-ext-base-ndarray-dnansumkbn -"2gc",@stdlib/blas/ext/base/ndarray/dnansumkbn2 -"2gd",@stdlib/blas-ext-base-ndarray-dnansumkbn2 -"2ge",@stdlib/blas/ext/base/ndarray/dnansumors -"2gf",@stdlib/blas-ext-base-ndarray-dnansumors -"2gg",@stdlib/blas/ext/base/ndarray/dnansumpw -"2gh",@stdlib/blas-ext-base-ndarray-dnansumpw -"2gi",@stdlib/blas/ext/base/ndarray/done-to -"2gj",@stdlib/blas-ext-base-ndarray-done-to -"2gk",@stdlib/blas/ext/base/ndarray/dsort -"2gl",@stdlib/blas-ext-base-ndarray-dsort -"2T2",@stdlib/blas/ext/base/ndarray/dsorthp -"2T3",@stdlib/blas-ext-base-ndarray-dsorthp -"2gm",@stdlib/blas/ext/base/ndarray/dsortins -"2gn",@stdlib/blas-ext-base-ndarray-dsortins -"2go",@stdlib/blas/ext/base/ndarray/dsortsh -"2gp",@stdlib/blas-ext-base-ndarray-dsortsh -"2FG",@stdlib/blas/ext/base/ndarray/dsum -"2FH",@stdlib/blas-ext-base-ndarray-dsum -"2Z4",@stdlib/blas/ext/base/ndarray/dsumkbn -"2Z5",@stdlib/blas-ext-base-ndarray-dsumkbn -"2Z6",@stdlib/blas/ext/base/ndarray/dsumkbn2 -"2Z7",@stdlib/blas-ext-base-ndarray-dsumkbn2 -"2gq",@stdlib/blas/ext/base/ndarray/dsumors -"2gr",@stdlib/blas-ext-base-ndarray-dsumors -"2gs",@stdlib/blas/ext/base/ndarray/dsumpw -"2gt",@stdlib/blas-ext-base-ndarray-dsumpw -"2gu",@stdlib/blas/ext/base/ndarray/dunitspace -"2gv",@stdlib/blas-ext-base-ndarray-dunitspace -"2gw",@stdlib/blas/ext/base/ndarray/dxsa -"2gx",@stdlib/blas-ext-base-ndarray-dxsa -"2gy",@stdlib/blas/ext/base/ndarray/dzero-to -"2gz",@stdlib/blas-ext-base-ndarray-dzero-to -"2h0",@stdlib/blas/ext/base/ndarray/gaxpb -"2h1",@stdlib/blas-ext-base-ndarray-gaxpb -"2h2",@stdlib/blas/ext/base/ndarray/gcircshift -"2h3",@stdlib/blas-ext-base-ndarray-gcircshift -"2FI",@stdlib/blas/ext/base/ndarray/gcusum -"2FJ",@stdlib/blas-ext-base-ndarray-gcusum -"2h4",@stdlib/blas/ext/base/ndarray/gcusumkbn -"2h5",@stdlib/blas-ext-base-ndarray-gcusumkbn -"2h6",@stdlib/blas/ext/base/ndarray/gcusumkbn2 -"2h7",@stdlib/blas-ext-base-ndarray-gcusumkbn2 -"2h8",@stdlib/blas/ext/base/ndarray/gcusumors -"2h9",@stdlib/blas-ext-base-ndarray-gcusumors -"2hA",@stdlib/blas/ext/base/ndarray/gcusumpw -"2hB",@stdlib/blas-ext-base-ndarray-gcusumpw -"2T4",@stdlib/blas/ext/base/ndarray/gfind-index -"2T5",@stdlib/blas-ext-base-ndarray-gfind-index -"2T6",@stdlib/blas/ext/base/ndarray/gfind-last-index -"2T7",@stdlib/blas-ext-base-ndarray-gfind-last-index -"2Nw",@stdlib/blas/ext/base/ndarray/gindex-of -"2Nx",@stdlib/blas-ext-base-ndarray-gindex-of -"2hC",@stdlib/blas/ext/base/ndarray/gjoin-between -"2hD",@stdlib/blas-ext-base-ndarray-gjoin-between -"2Z8",@stdlib/blas/ext/base/ndarray/gjoin -"2Z9",@stdlib/blas-ext-base-ndarray-gjoin -"2Ny",@stdlib/blas/ext/base/ndarray/glast-index-of -"2Nz",@stdlib/blas-ext-base-ndarray-glast-index-of -"2Xq",@stdlib/blas/ext/base/ndarray/glinspace -"2Xr",@stdlib/blas-ext-base-ndarray-glinspace -"2hE",@stdlib/blas/ext/base/ndarray/gnansum -"2hF",@stdlib/blas-ext-base-ndarray-gnansum -"2hG",@stdlib/blas/ext/base/ndarray/gnansumkbn -"2hH",@stdlib/blas-ext-base-ndarray-gnansumkbn -"2hI",@stdlib/blas/ext/base/ndarray/gnansumkbn2 -"2hJ",@stdlib/blas-ext-base-ndarray-gnansumkbn2 -"2hK",@stdlib/blas/ext/base/ndarray/gnansumors -"2hL",@stdlib/blas-ext-base-ndarray-gnansumors -"2hM",@stdlib/blas/ext/base/ndarray/gnansumpw -"2hN",@stdlib/blas-ext-base-ndarray-gnansumpw -"2hO",@stdlib/blas/ext/base/ndarray/gone-to -"2hP",@stdlib/blas-ext-base-ndarray-gone-to -"2hQ",@stdlib/blas/ext/base/ndarray/gsort -"2hR",@stdlib/blas-ext-base-ndarray-gsort -"2T8",@stdlib/blas/ext/base/ndarray/gsorthp -"2T9",@stdlib/blas-ext-base-ndarray-gsorthp -"2FK",@stdlib/blas/ext/base/ndarray/gsum -"2FL",@stdlib/blas-ext-base-ndarray-gsum -"2ZA",@stdlib/blas/ext/base/ndarray/gsumkbn -"2ZB",@stdlib/blas-ext-base-ndarray-gsumkbn -"2ZC",@stdlib/blas/ext/base/ndarray/gsumkbn2 -"2ZD",@stdlib/blas-ext-base-ndarray-gsumkbn2 -"2hS",@stdlib/blas/ext/base/ndarray/gsumors -"2hT",@stdlib/blas-ext-base-ndarray-gsumors -"2hU",@stdlib/blas/ext/base/ndarray/gsumpw -"2hV",@stdlib/blas-ext-base-ndarray-gsumpw -"2hW",@stdlib/blas/ext/base/ndarray/gunitspace -"2hX",@stdlib/blas-ext-base-ndarray-gunitspace -"2hY",@stdlib/blas/ext/base/ndarray/gzero-to -"2hZ",@stdlib/blas-ext-base-ndarray-gzero-to -"2FM",@stdlib/blas/ext/base/ndarray -"2FN",@stdlib/blas-ext-base-ndarray -"2ha",@stdlib/blas/ext/base/ndarray/saxpb -"2hb",@stdlib/blas-ext-base-ndarray-saxpb -"2hc",@stdlib/blas/ext/base/ndarray/scircshift -"2hd",@stdlib/blas-ext-base-ndarray-scircshift -"2FO",@stdlib/blas/ext/base/ndarray/scusum -"2FP",@stdlib/blas-ext-base-ndarray-scusum -"2ZE",@stdlib/blas/ext/base/ndarray/scusumkbn -"2ZF",@stdlib/blas-ext-base-ndarray-scusumkbn -"2ZG",@stdlib/blas/ext/base/ndarray/scusumkbn2 -"2ZH",@stdlib/blas-ext-base-ndarray-scusumkbn2 -"2he",@stdlib/blas/ext/base/ndarray/scusumors -"2hf",@stdlib/blas-ext-base-ndarray-scusumors -"2O0",@stdlib/blas/ext/base/ndarray/sindex-of -"2O1",@stdlib/blas-ext-base-ndarray-sindex-of -"2O2",@stdlib/blas/ext/base/ndarray/slast-index-of -"2O3",@stdlib/blas-ext-base-ndarray-slast-index-of -"2Xs",@stdlib/blas/ext/base/ndarray/slinspace -"2Xt",@stdlib/blas-ext-base-ndarray-slinspace -"2hg",@stdlib/blas/ext/base/ndarray/snansum -"2hh",@stdlib/blas-ext-base-ndarray-snansum -"2hi",@stdlib/blas/ext/base/ndarray/snansumkbn -"2hj",@stdlib/blas-ext-base-ndarray-snansumkbn -"2hk",@stdlib/blas/ext/base/ndarray/snansumkbn2 -"2hl",@stdlib/blas-ext-base-ndarray-snansumkbn2 -"2hm",@stdlib/blas/ext/base/ndarray/snansumors -"2hn",@stdlib/blas-ext-base-ndarray-snansumors -"2ho",@stdlib/blas/ext/base/ndarray/snansumpw -"2hp",@stdlib/blas-ext-base-ndarray-snansumpw -"2hq",@stdlib/blas/ext/base/ndarray/sone-to -"2hr",@stdlib/blas-ext-base-ndarray-sone-to -"2hs",@stdlib/blas/ext/base/ndarray/ssort -"2ht",@stdlib/blas-ext-base-ndarray-ssort -"2TA",@stdlib/blas/ext/base/ndarray/ssorthp -"2TB",@stdlib/blas-ext-base-ndarray-ssorthp -"2FQ",@stdlib/blas/ext/base/ndarray/ssum -"2FR",@stdlib/blas-ext-base-ndarray-ssum -"2ZI",@stdlib/blas/ext/base/ndarray/ssumkbn -"2ZJ",@stdlib/blas-ext-base-ndarray-ssumkbn -"2ZK",@stdlib/blas/ext/base/ndarray/ssumkbn2 -"2ZL",@stdlib/blas-ext-base-ndarray-ssumkbn2 -"2hu",@stdlib/blas/ext/base/ndarray/ssumors -"2hv",@stdlib/blas-ext-base-ndarray-ssumors -"2hw",@stdlib/blas/ext/base/ndarray/ssumpw -"2hx",@stdlib/blas-ext-base-ndarray-ssumpw -"2hy",@stdlib/blas/ext/base/ndarray/sunitspace -"2hz",@stdlib/blas-ext-base-ndarray-sunitspace -"2i0",@stdlib/blas/ext/base/ndarray/sxsa -"2i1",@stdlib/blas-ext-base-ndarray-sxsa -"2i2",@stdlib/blas/ext/base/ndarray/szero-to -"2i3",@stdlib/blas-ext-base-ndarray-szero-to -"2i4",@stdlib/blas/ext/base/ndarray/zaxpb -"2i5",@stdlib/blas-ext-base-ndarray-zaxpb -"2i6",@stdlib/blas/ext/base/ndarray/zindex-of -"2i7",@stdlib/blas-ext-base-ndarray-zindex-of -"2i8",@stdlib/blas/ext/base/ndarray/zone-to -"2i9",@stdlib/blas-ext-base-ndarray-zone-to -"2I0",@stdlib/blas/ext/base/ndarray/zsum -"2I1",@stdlib/blas-ext-base-ndarray-zsum -"2ZM",@stdlib/blas/ext/base/ndarray/zsumkbn -"2ZN",@stdlib/blas-ext-base-ndarray-zsumkbn -"2iA",@stdlib/blas/ext/base/ndarray/zunitspace -"2iB",@stdlib/blas-ext-base-ndarray-zunitspace -"2iC",@stdlib/blas/ext/base/ndarray/zzero-to -"2iD",@stdlib/blas-ext-base-ndarray-zzero-to -"0Eq",@stdlib/blas/ext/base -"0Er",@stdlib/blas-ext-base -"0Es",@stdlib/blas/ext/base/sapx -"0Et",@stdlib/blas-ext-base-sapx -"0Eu",@stdlib/blas/ext/base/sapxsum -"0Ev",@stdlib/blas-ext-base-sapxsum -"0Ew",@stdlib/blas/ext/base/sapxsumkbn -"0Ex",@stdlib/blas-ext-base-sapxsumkbn -"0Ey",@stdlib/blas/ext/base/sapxsumkbn2 -"0Ez",@stdlib/blas-ext-base-sapxsumkbn2 -"0F0",@stdlib/blas/ext/base/sapxsumors -"0F1",@stdlib/blas-ext-base-sapxsumors -"0F2",@stdlib/blas/ext/base/sapxsumpw -"0F3",@stdlib/blas-ext-base-sapxsumpw -"0F4",@stdlib/blas/ext/base/sasumpw -"0F5",@stdlib/blas-ext-base-sasumpw -"2iE",@stdlib/blas/ext/base/saxpb -"2iF",@stdlib/blas-ext-base-saxpb -"2iG",@stdlib/blas/ext/base/scartesian-power -"2iH",@stdlib/blas-ext-base-scartesian-power -"2iI",@stdlib/blas/ext/base/scartesian-square -"2iJ",@stdlib/blas-ext-base-scartesian-square -"2iK",@stdlib/blas/ext/base/scircshift -"2iL",@stdlib/blas-ext-base-scircshift -"0F6",@stdlib/blas/ext/base/scusum -"0F7",@stdlib/blas-ext-base-scusum -"0F8",@stdlib/blas/ext/base/scusumkbn -"0F9",@stdlib/blas-ext-base-scusumkbn -"0FA",@stdlib/blas/ext/base/scusumkbn2 -"0FB",@stdlib/blas-ext-base-scusumkbn2 -"0FC",@stdlib/blas/ext/base/scusumors -"0FD",@stdlib/blas-ext-base-scusumors -"0FE",@stdlib/blas/ext/base/scusumpw -"0FF",@stdlib/blas-ext-base-scusumpw -"2iM",@stdlib/blas/ext/base/sdiff -"2iN",@stdlib/blas-ext-base-sdiff -"0FG",@stdlib/blas/ext/base/sdsapxsum -"0FH",@stdlib/blas-ext-base-sdsapxsum -"0FI",@stdlib/blas/ext/base/sdsapxsumpw -"0FJ",@stdlib/blas-ext-base-sdsapxsumpw -"0FK",@stdlib/blas/ext/base/sdsnansum -"0FL",@stdlib/blas-ext-base-sdsnansum -"0FM",@stdlib/blas/ext/base/sdsnansumpw -"0FN",@stdlib/blas-ext-base-sdsnansumpw -"0FO",@stdlib/blas/ext/base/sdssum -"0FP",@stdlib/blas-ext-base-sdssum -"0FQ",@stdlib/blas/ext/base/sdssumpw -"0FR",@stdlib/blas-ext-base-sdssumpw -"2iO",@stdlib/blas/ext/base/sediff -"2iP",@stdlib/blas-ext-base-sediff -"0FS",@stdlib/blas/ext/base/sfill -"0FT",@stdlib/blas-ext-base-sfill -"2iQ",@stdlib/blas/ext/base/sindex-of-column -"2iR",@stdlib/blas-ext-base-sindex-of-column -"2iS",@stdlib/blas/ext/base/sindex-of-row -"2iT",@stdlib/blas-ext-base-sindex-of-row -"2O4",@stdlib/blas/ext/base/sindex-of -"2O5",@stdlib/blas-ext-base-sindex-of -"2iU",@stdlib/blas/ext/base/slast-index-of-row -"2iV",@stdlib/blas-ext-base-slast-index-of-row -"2O6",@stdlib/blas/ext/base/slast-index-of -"2O7",@stdlib/blas-ext-base-slast-index-of -"2Xu",@stdlib/blas/ext/base/slinspace -"2Xv",@stdlib/blas-ext-base-slinspace -"2iW",@stdlib/blas/ext/base/snancount -"2iX",@stdlib/blas-ext-base-snancount -"0FU",@stdlib/blas/ext/base/snansum -"0FV",@stdlib/blas-ext-base-snansum -"0FW",@stdlib/blas/ext/base/snansumkbn -"0FX",@stdlib/blas-ext-base-snansumkbn -"0FY",@stdlib/blas/ext/base/snansumkbn2 -"0FZ",@stdlib/blas-ext-base-snansumkbn2 -"0Fa",@stdlib/blas/ext/base/snansumors -"0Fb",@stdlib/blas-ext-base-snansumors -"0Fc",@stdlib/blas/ext/base/snansumpw -"0Fd",@stdlib/blas-ext-base-snansumpw -"2iY",@stdlib/blas/ext/base/sone-to -"2iZ",@stdlib/blas-ext-base-sone-to -"0Fe",@stdlib/blas/ext/base/srev -"0Ff",@stdlib/blas-ext-base-srev -"2ia",@stdlib/blas/ext/base/ssort -"2ib",@stdlib/blas-ext-base-ssort -"0Fg",@stdlib/blas/ext/base/ssort2hp -"0Fh",@stdlib/blas-ext-base-ssort2hp -"0Fi",@stdlib/blas/ext/base/ssort2ins -"0Fj",@stdlib/blas-ext-base-ssort2ins -"0Fk",@stdlib/blas/ext/base/ssort2sh -"0Fl",@stdlib/blas-ext-base-ssort2sh -"0Fm",@stdlib/blas/ext/base/ssorthp -"0Fn",@stdlib/blas-ext-base-ssorthp -"0Fo",@stdlib/blas/ext/base/ssortins -"0Fp",@stdlib/blas-ext-base-ssortins -"0Fq",@stdlib/blas/ext/base/ssortsh -"0Fr",@stdlib/blas-ext-base-ssortsh -"0Fs",@stdlib/blas/ext/base/ssum -"0Ft",@stdlib/blas-ext-base-ssum -"0Fu",@stdlib/blas/ext/base/ssumkbn -"0Fv",@stdlib/blas-ext-base-ssumkbn -"0Fw",@stdlib/blas/ext/base/ssumkbn2 -"0Fx",@stdlib/blas-ext-base-ssumkbn2 -"0Fy",@stdlib/blas/ext/base/ssumors -"0Fz",@stdlib/blas-ext-base-ssumors -"0G0",@stdlib/blas/ext/base/ssumpw -"0G1",@stdlib/blas-ext-base-ssumpw -"2ic",@stdlib/blas/ext/base/sunitspace -"2id",@stdlib/blas-ext-base-sunitspace -"2ie",@stdlib/blas/ext/base/svander -"2if",@stdlib/blas-ext-base-svander -"2ig",@stdlib/blas/ext/base/swhere -"2ih",@stdlib/blas-ext-base-swhere -"2ii",@stdlib/blas/ext/base/sxsa -"2ij",@stdlib/blas-ext-base-sxsa -"2ik",@stdlib/blas/ext/base/szero-to -"2il",@stdlib/blas-ext-base-szero-to -"2Gy",@stdlib/blas/ext/base/wasm/dapx -"2Gz",@stdlib/blas-ext-base-wasm-dapx -"29e",@stdlib/blas/ext/base/wasm/dapxsum -"29f",@stdlib/blas-ext-base-wasm-dapxsum -"27C",@stdlib/blas/ext/base/wasm/dapxsumkbn -"27D",@stdlib/blas-ext-base-wasm-dapxsumkbn -"29g",@stdlib/blas/ext/base/wasm/dapxsumors -"29h",@stdlib/blas-ext-base-wasm-dapxsumors -"29i",@stdlib/blas/ext/base/wasm/dapxsumpw -"29j",@stdlib/blas-ext-base-wasm-dapxsumpw -"29k",@stdlib/blas/ext/base/wasm/dasumpw -"29l",@stdlib/blas-ext-base-wasm-dasumpw -"2GC",@stdlib/blas/ext/base/wasm/dnanasumors -"2GD",@stdlib/blas-ext-base-wasm-dnanasumors -"2O8",@stdlib/blas/ext/base/wasm/dnansumkbn2 -"2O9",@stdlib/blas-ext-base-wasm-dnansumkbn2 -"29m",@stdlib/blas/ext/base/wasm/dnansumpw -"29n",@stdlib/blas-ext-base-wasm-dnansumpw -"27E",@stdlib/blas/ext/base/wasm -"27F",@stdlib/blas-ext-base-wasm -"2GE",@stdlib/blas/ext/base/wasm/sapxsumkbn -"2GF",@stdlib/blas-ext-base-wasm-sapxsumkbn -"2im",@stdlib/blas/ext/base/zapx -"2in",@stdlib/blas-ext-base-zapx -"2io",@stdlib/blas/ext/base/zaxpb -"2ip",@stdlib/blas-ext-base-zaxpb -"2iq",@stdlib/blas/ext/base/zdiff -"2ir",@stdlib/blas-ext-base-zdiff -"21e",@stdlib/blas/ext/base/zfill -"21f",@stdlib/blas-ext-base-zfill -"2is",@stdlib/blas/ext/base/zindex-of-column -"2it",@stdlib/blas-ext-base-zindex-of-column -"2iu",@stdlib/blas/ext/base/zindex-of-row -"2iv",@stdlib/blas-ext-base-zindex-of-row -"2iw",@stdlib/blas/ext/base/zindex-of -"2ix",@stdlib/blas-ext-base-zindex-of -"2iy",@stdlib/blas/ext/base/zlast-index-of-row -"2iz",@stdlib/blas-ext-base-zlast-index-of-row -"2j0",@stdlib/blas/ext/base/znancount -"2j1",@stdlib/blas-ext-base-znancount -"2j2",@stdlib/blas/ext/base/zone-to -"2j3",@stdlib/blas-ext-base-zone-to -"2I2",@stdlib/blas/ext/base/zsum -"2I3",@stdlib/blas-ext-base-zsum -"2I4",@stdlib/blas/ext/base/zsumkbn -"2I5",@stdlib/blas-ext-base-zsumkbn -"2j4",@stdlib/blas/ext/base/zunitspace -"2j5",@stdlib/blas-ext-base-zunitspace -"2j6",@stdlib/blas/ext/base/zwhere -"2j7",@stdlib/blas-ext-base-zwhere -"2j8",@stdlib/blas/ext/base/zxsa -"2j9",@stdlib/blas-ext-base-zxsa -"2jA",@stdlib/blas/ext/base/zzero-to -"2jB",@stdlib/blas-ext-base-zzero-to -"2jC",@stdlib/blas/ext/circshift -"2jD",@stdlib/blas-ext-circshift -"2FS",@stdlib/blas/ext/cusum -"2FT",@stdlib/blas-ext-cusum -"2TC",@stdlib/blas/ext/find-index -"2TD",@stdlib/blas-ext-find-index -"2TE",@stdlib/blas/ext/find-last-index -"2TF",@stdlib/blas-ext-find-last-index -"2Ro",@stdlib/blas/ext/index-of -"2Rp",@stdlib/blas-ext-index-of -"2jE",@stdlib/blas/ext/join -"2jF",@stdlib/blas-ext-join -"2VK",@stdlib/blas/ext/last-index-of -"2VL",@stdlib/blas-ext-last-index-of -"2YS",@stdlib/blas/ext/linspace -"2YT",@stdlib/blas-ext-linspace -"2jG",@stdlib/blas/ext/one-to -"2jH",@stdlib/blas-ext-one-to -"0G2",@stdlib/blas/ext -"0G3",@stdlib/blas-ext -"2jI",@stdlib/blas/ext/sort -"2jJ",@stdlib/blas-ext-sort -"2WM",@stdlib/blas/ext/sorthp -"2WN",@stdlib/blas-ext-sorthp -"2FU",@stdlib/blas/ext/sum -"2FV",@stdlib/blas-ext-sum -"2jK",@stdlib/blas/ext/to-sorted -"2jL",@stdlib/blas-ext-to-sorted -"2Wm",@stdlib/blas/ext/to-sortedhp -"2Wn",@stdlib/blas-ext-to-sortedhp -"2jM",@stdlib/blas/ext/unitspace -"2jN",@stdlib/blas-ext-unitspace -"2jO",@stdlib/blas/ext/zero-to -"2jP",@stdlib/blas-ext-zero-to -"0G4",@stdlib/blas/gdot -"0G5",@stdlib/blas-gdot -"0G6",@stdlib/blas/gswap -"0G7",@stdlib/blas-gswap -"0G9",@stdlib/blas -"0GA",@stdlib/blas/sdot -"0GB",@stdlib/blas-sdot -"0GC",@stdlib/blas/sswap -"0GD",@stdlib/blas-sswap -"21g",@stdlib/blas/tools -"21h",@stdlib/blas-tools -"21i",@stdlib/blas/tools/swap-factory -"21j",@stdlib/blas-tools-swap-factory -"1aQ",@stdlib/boolean/ctor -"1aR",@stdlib/boolean-ctor -"1aT",@stdlib/boolean -"0GE",@stdlib/buffer/alloc-unsafe -"0GF",@stdlib/buffer-alloc-unsafe -"0GG",@stdlib/buffer/ctor -"0GH",@stdlib/buffer-ctor -"0GI",@stdlib/buffer/from-array -"0GJ",@stdlib/buffer-from-array -"0GK",@stdlib/buffer/from-arraybuffer -"0GL",@stdlib/buffer-from-arraybuffer -"0GM",@stdlib/buffer/from-buffer -"0GN",@stdlib/buffer-from-buffer -"0GO",@stdlib/buffer/from-string -"0GP",@stdlib/buffer-from-string -"0GR",@stdlib/buffer -"0GS",@stdlib/buffer/reviver -"0GT",@stdlib/buffer-reviver -"0GU",@stdlib/buffer/to-json -"0GV",@stdlib/buffer-to-json -"0GW",@stdlib/cli/ctor -"0GX",@stdlib/cli-ctor -"0GZ",@stdlib/cli -"2jQ",@stdlib/complex/base/assert/is-almost-equal -"2jR",@stdlib/complex-base-assert-is-almost-equal -"2jS",@stdlib/complex/base/assert/is-almost-same-value -"2jT",@stdlib/complex-base-assert-is-almost-same-value -"1po",@stdlib/complex/base/assert -"1pp",@stdlib/complex-base-assert -"1aU",@stdlib/complex/base/cast-return -"1aV",@stdlib/complex-base-cast-return -"1aW",@stdlib/complex/base -"1aX",@stdlib/complex-base -"1sa",@stdlib/complex/base/parse -"1sb",@stdlib/complex-base-parse -"0Ga",@stdlib/complex/base/wrap-function -"0Gb",@stdlib/complex-base-wrap-function -"0Gc",@stdlib/complex/cmplx -"0Gd",@stdlib/complex-cmplx -"0Gi",@stdlib/complex/ctors -"0Gj",@stdlib/complex-ctors -"0Gk",@stdlib/complex/dtype -"0Gl",@stdlib/complex-dtype -"0Gm",@stdlib/complex/dtypes -"0Gn",@stdlib/complex-dtypes -"1xs",@stdlib/complex/float32/base/add -"1xt",@stdlib/complex-float32-base-add -"2jU",@stdlib/complex/float32/base/add3 -"2jV",@stdlib/complex-float32-base-add3 -"2OA",@stdlib/complex/float32/base/assert/is-almost-equal -"2OB",@stdlib/complex-float32-base-assert-is-almost-equal -"2jW",@stdlib/complex/float32/base/assert/is-almost-same-value -"2jX",@stdlib/complex-float32-base-assert-is-almost-same-value -"1ui",@stdlib/complex/float32/base/assert/is-equal -"1uj",@stdlib/complex-float32-base-assert-is-equal -"1uk",@stdlib/complex/float32/base/assert/is-not-equal -"1ul",@stdlib/complex-float32-base-assert-is-not-equal -"1um",@stdlib/complex/float32/base/assert/is-same-value-zero -"1un",@stdlib/complex-float32-base-assert-is-same-value-zero -"1uo",@stdlib/complex/float32/base/assert/is-same-value -"1up",@stdlib/complex-float32-base-assert-is-same-value -"1xu",@stdlib/complex/float32/base/assert -"1xv",@stdlib/complex-float32-base-assert -"29o",@stdlib/complex/float32/base/identity -"29p",@stdlib/complex-float32-base-identity -"2VM",@stdlib/complex/float32/base/mul-add -"2VN",@stdlib/complex-float32-base-mul-add -"1xw",@stdlib/complex/float32/base/mul -"1xx",@stdlib/complex-float32-base-mul -"29q",@stdlib/complex/float32/base/neg -"29r",@stdlib/complex-float32-base-neg -"1xy",@stdlib/complex/float32/base -"1xz",@stdlib/complex-float32-base -"2I6",@stdlib/complex/float32/base/scale -"2I7",@stdlib/complex-float32-base-scale -"29s",@stdlib/complex/float32/base/sub -"29t",@stdlib/complex-float32-base-sub -"1y0",@stdlib/complex/float32/conj -"1y1",@stdlib/complex-float32-conj -"0Go",@stdlib/complex/float32/ctor -"1y2",@stdlib/complex/float32/imag -"1y3",@stdlib/complex-float32-imag -"1uq",@stdlib/complex/float32 -"1ur",@stdlib/complex-float32 -"1sc",@stdlib/complex/float32/parse -"1y4",@stdlib/complex/float32/real -"1y5",@stdlib/complex-float32-real -"1y6",@stdlib/complex/float32/reim -"1y7",@stdlib/complex-float32-reim -"0H8",@stdlib/complex/float32/reviver -"1y8",@stdlib/complex/float64/base/add -"1y9",@stdlib/complex-float64-base-add -"2jY",@stdlib/complex/float64/base/add3 -"2jZ",@stdlib/complex-float64-base-add3 -"2OC",@stdlib/complex/float64/base/assert/is-almost-equal -"2OD",@stdlib/complex-float64-base-assert-is-almost-equal -"2ja",@stdlib/complex/float64/base/assert/is-almost-same-value -"2jb",@stdlib/complex-float64-base-assert-is-almost-same-value -"1pY",@stdlib/complex/float64/base/assert/is-equal -"1us",@stdlib/complex/float64/base/assert/is-not-equal -"1ut",@stdlib/complex-float64-base-assert-is-not-equal -"1uu",@stdlib/complex/float64/base/assert/is-same-value-zero -"1uv",@stdlib/complex-float64-base-assert-is-same-value-zero -"1uw",@stdlib/complex/float64/base/assert/is-same-value -"1ux",@stdlib/complex-float64-base-assert-is-same-value -"1yA",@stdlib/complex/float64/base/assert -"1yB",@stdlib/complex-float64-base-assert -"29u",@stdlib/complex/float64/base/div -"29v",@stdlib/complex-float64-base-div -"29w",@stdlib/complex/float64/base/identity -"29x",@stdlib/complex-float64-base-identity -"27G",@stdlib/complex/float64/base/mul-add -"27H",@stdlib/complex-float64-base-mul-add -"1yC",@stdlib/complex/float64/base/mul -"1yD",@stdlib/complex-float64-base-mul -"29y",@stdlib/complex/float64/base/neg -"29z",@stdlib/complex-float64-base-neg -"1yE",@stdlib/complex/float64/base -"1yF",@stdlib/complex-float64-base -"27I",@stdlib/complex/float64/base/scale -"27J",@stdlib/complex-float64-base-scale -"2A0",@stdlib/complex/float64/base/sub -"2A1",@stdlib/complex-float64-base-sub -"1yG",@stdlib/complex/float64/conj -"1yH",@stdlib/complex-float64-conj -"0Gq",@stdlib/complex/float64/ctor -"1yI",@stdlib/complex/float64/imag -"1yJ",@stdlib/complex-float64-imag -"1uy",@stdlib/complex/float64 -"1uz",@stdlib/complex-float64 -"1se",@stdlib/complex/float64/parse -"1yK",@stdlib/complex/float64/real -"1yL",@stdlib/complex-float64-real -"1yM",@stdlib/complex/float64/reim -"1yN",@stdlib/complex-float64-reim -"0HA",@stdlib/complex/float64/reviver -"0Gx",@stdlib/complex -"0Gy",@stdlib/complex/promotion-rules -"0Gz",@stdlib/complex-promotion-rules -"0HC",@stdlib/complex/reviver -"0HD",@stdlib/complex-reviver -"2A2",@stdlib/console/log-each-map -"2A3",@stdlib/console-log-each-map -"1aY",@stdlib/console/log-each -"1aZ",@stdlib/console-log-each -"1aa",@stdlib/console/log -"1ab",@stdlib/console-log -"1ad",@stdlib/console -"0HE",@stdlib/constants/array/max-array-length -"0HF",@stdlib/constants-array-max-array-length -"0HG",@stdlib/constants/array/max-typed-array-length -"0HH",@stdlib/constants-array-max-typed-array-length -"0HI",@stdlib/constants/array -"0HJ",@stdlib/constants-array -"1pq",@stdlib/constants/complex128/nan -"1pr",@stdlib/constants-complex128-nan -"0HK",@stdlib/constants/complex128/num-bytes -"0HL",@stdlib/constants-complex128-num-bytes -"0HM",@stdlib/constants/complex128 -"0HN",@stdlib/constants-complex128 -"1ps",@stdlib/constants/complex128/zero -"1pt",@stdlib/constants-complex128-zero -"1pu",@stdlib/constants/complex64/nan -"1pv",@stdlib/constants-complex64-nan -"0HO",@stdlib/constants/complex64/num-bytes -"0HP",@stdlib/constants-complex64-num-bytes -"0HQ",@stdlib/constants/complex64 -"0HR",@stdlib/constants-complex64 -"1pw",@stdlib/constants/complex64/zero -"1px",@stdlib/constants-complex64-zero -"2jc",@stdlib/constants/float16/abs-mask -"2jd",@stdlib/constants-float16-abs-mask -"2ZO",@stdlib/constants/float16/apery -"2ZP",@stdlib/constants-float16-apery -"2ZQ",@stdlib/constants/float16/catalan -"2ZR",@stdlib/constants-float16-catalan -"0HS",@stdlib/constants/float16/cbrt-eps -"0HT",@stdlib/constants-float16-cbrt-eps -"2ZS",@stdlib/constants/float16/e -"2ZT",@stdlib/constants-float16-e -"0HU",@stdlib/constants/float16/eps -"0HV",@stdlib/constants-float16-eps -"2ZU",@stdlib/constants/float16/eulergamma -"2ZV",@stdlib/constants-float16-eulergamma -"0HW",@stdlib/constants/float16/exponent-bias -"0HX",@stdlib/constants-float16-exponent-bias -"2ZW",@stdlib/constants/float16/exponent-mask -"2ZX",@stdlib/constants-float16-exponent-mask -"2ZY",@stdlib/constants/float16/fourth-pi -"2ZZ",@stdlib/constants-float16-fourth-pi -"2je",@stdlib/constants/float16/half-ln-two -"2jf",@stdlib/constants-float16-half-ln-two -"2Za",@stdlib/constants/float16/half-pi -"2Zb",@stdlib/constants-float16-half-pi -"2jg",@stdlib/constants/float16/ln-half -"2jh",@stdlib/constants-float16-ln-half -"2ji",@stdlib/constants/float16/ln-pi -"2jj",@stdlib/constants-float16-ln-pi -"2jk",@stdlib/constants/float16/ln-sqrt-two-pi -"2jl",@stdlib/constants-float16-ln-sqrt-two-pi -"2jm",@stdlib/constants/float16/ln-ten -"2jn",@stdlib/constants-float16-ln-ten -"2jo",@stdlib/constants/float16/ln-two-pi -"2jp",@stdlib/constants-float16-ln-two-pi -"2jq",@stdlib/constants/float16/ln-two -"2jr",@stdlib/constants-float16-ln-two -"2js",@stdlib/constants/float16/log10-e -"2jt",@stdlib/constants-float16-log10-e -"2ju",@stdlib/constants/float16/log2-e -"2jv",@stdlib/constants-float16-log2-e -"2jw",@stdlib/constants/float16/max-base10-exponent-subnormal -"2jx",@stdlib/constants-float16-max-base10-exponent-subnormal -"2jy",@stdlib/constants/float16/max-base10-exponent -"2jz",@stdlib/constants-float16-max-base10-exponent -"2k0",@stdlib/constants/float16/max-base2-exponent-subnormal -"2k1",@stdlib/constants-float16-max-base2-exponent-subnormal -"2Zc",@stdlib/constants/float16/max-base2-exponent -"2Zd",@stdlib/constants-float16-max-base2-exponent -"2Ze",@stdlib/constants/float16/max-ln -"2Zf",@stdlib/constants-float16-max-ln -"0HY",@stdlib/constants/float16/max-safe-integer -"0HZ",@stdlib/constants-float16-max-safe-integer -"0Ha",@stdlib/constants/float16/max -"0Hb",@stdlib/constants-float16-max -"2k2",@stdlib/constants/float16/min-base10-exponent-subnormal -"2k3",@stdlib/constants-float16-min-base10-exponent-subnormal -"2k4",@stdlib/constants/float16/min-base10-exponent -"2k5",@stdlib/constants-float16-min-base10-exponent -"2k6",@stdlib/constants/float16/min-base2-exponent-subnormal -"2k7",@stdlib/constants-float16-min-base2-exponent-subnormal -"2Zg",@stdlib/constants/float16/min-base2-exponent -"2Zh",@stdlib/constants-float16-min-base2-exponent -"2Zi",@stdlib/constants/float16/min-ln -"2Zj",@stdlib/constants-float16-min-ln -"0Hc",@stdlib/constants/float16/min-safe-integer -"0Hd",@stdlib/constants-float16-min-safe-integer -"2k8",@stdlib/constants/float16/nan -"2k9",@stdlib/constants-float16-nan -"0He",@stdlib/constants/float16/ninf -"0Hf",@stdlib/constants-float16-ninf -"0Hg",@stdlib/constants/float16/num-bytes -"0Hh",@stdlib/constants-float16-num-bytes -"2Zk",@stdlib/constants/float16/num-exponent-bits -"2Zl",@stdlib/constants-float16-num-exponent-bits -"2Zm",@stdlib/constants/float16/num-significand-bits -"2Zn",@stdlib/constants-float16-num-significand-bits -"0Hi",@stdlib/constants/float16 -"0Hj",@stdlib/constants-float16 -"2Zo",@stdlib/constants/float16/phi -"2Zp",@stdlib/constants-float16-phi -"2Zq",@stdlib/constants/float16/pi-squared -"2Zr",@stdlib/constants-float16-pi-squared -"2Zs",@stdlib/constants/float16/pi -"2Zt",@stdlib/constants-float16-pi -"0Hk",@stdlib/constants/float16/pinf -"0Hl",@stdlib/constants-float16-pinf -"0Hm",@stdlib/constants/float16/precision -"0Hn",@stdlib/constants-float16-precision -"2Zu",@stdlib/constants/float16/sign-mask -"2Zv",@stdlib/constants-float16-sign-mask -"2Zw",@stdlib/constants/float16/significand-mask -"2Zx",@stdlib/constants-float16-significand-mask -"0Ho",@stdlib/constants/float16/smallest-normal -"0Hp",@stdlib/constants-float16-smallest-normal -"0Hq",@stdlib/constants/float16/smallest-subnormal -"0Hr",@stdlib/constants-float16-smallest-subnormal -"0Hs",@stdlib/constants/float16/sqrt-eps -"0Ht",@stdlib/constants-float16-sqrt-eps -"2kA",@stdlib/constants/float16/sqrt-half -"2kB",@stdlib/constants-float16-sqrt-half -"2kC",@stdlib/constants/float16/sqrt-three -"2kD",@stdlib/constants-float16-sqrt-three -"2kE",@stdlib/constants/float16/sqrt-two-pi -"2kF",@stdlib/constants-float16-sqrt-two-pi -"2Zy",@stdlib/constants/float16/sqrt-two -"2Zz",@stdlib/constants-float16-sqrt-two -"2a0",@stdlib/constants/float16/two-pi -"2a1",@stdlib/constants-float16-two-pi -"1ae",@stdlib/constants/float32/abs-mask -"1af",@stdlib/constants-float32-abs-mask -"2A4",@stdlib/constants/float32/apery -"2A5",@stdlib/constants-float32-apery -"2Dg",@stdlib/constants/float32/catalan -"2Dh",@stdlib/constants-float32-catalan -"0Hu",@stdlib/constants/float32/cbrt-eps -"0Hv",@stdlib/constants-float32-cbrt-eps -"22y",@stdlib/constants/float32/e -"22z",@stdlib/constants-float32-e -"0Hw",@stdlib/constants/float32/eps -"0Hx",@stdlib/constants-float32-eps -"2Di",@stdlib/constants/float32/eulergamma -"2Dj",@stdlib/constants-float32-eulergamma -"0Hy",@stdlib/constants/float32/exponent-bias -"0Hz",@stdlib/constants-float32-exponent-bias -"1ag",@stdlib/constants/float32/exponent-mask -"1ah",@stdlib/constants-float32-exponent-mask -"1tA",@stdlib/constants/float32/fourth-pi -"1tB",@stdlib/constants-float32-fourth-pi -"2Dk",@stdlib/constants/float32/fourth-root-eps -"2Dl",@stdlib/constants-float32-fourth-root-eps -"2A6",@stdlib/constants/float32/gamma-lanczos-g -"2A7",@stdlib/constants-float32-gamma-lanczos-g -"2a2",@stdlib/constants/float32/glaisher-kinkelin -"2a3",@stdlib/constants-float32-glaisher-kinkelin -"1tC",@stdlib/constants/float32/half-pi -"1tD",@stdlib/constants-float32-half-pi -"24G",@stdlib/constants/float32/ln-half -"24H",@stdlib/constants-float32-ln-half -"24I",@stdlib/constants/float32/ln-pi -"24J",@stdlib/constants-float32-ln-pi -"2A8",@stdlib/constants/float32/ln-sqrt-two-pi -"2A9",@stdlib/constants-float32-ln-sqrt-two-pi -"24K",@stdlib/constants/float32/ln-ten -"24L",@stdlib/constants-float32-ln-ten -"2AA",@stdlib/constants/float32/ln-two-pi -"2AB",@stdlib/constants-float32-ln-two-pi -"2AC",@stdlib/constants/float32/log10-e -"2AD",@stdlib/constants-float32-log10-e -"2AE",@stdlib/constants/float32/log2-e -"2AF",@stdlib/constants-float32-log2-e -"1zC",@stdlib/constants/float32/max-base2-exponent-subnormal -"1zD",@stdlib/constants-float32-max-base2-exponent-subnormal -"1zE",@stdlib/constants/float32/max-base2-exponent -"1zF",@stdlib/constants-float32-max-base2-exponent -"2Dm",@stdlib/constants/float32/max-ln -"2Dn",@stdlib/constants-float32-max-ln -"2FW",@stdlib/constants/float32/max-nth-double-factorial -"2FX",@stdlib/constants-float32-max-nth-double-factorial -"2FY",@stdlib/constants/float32/max-nth-factorial -"2FZ",@stdlib/constants-float32-max-nth-factorial -"21k",@stdlib/constants/float32/max-safe-fibonacci -"21l",@stdlib/constants-float32-max-safe-fibonacci -"0I0",@stdlib/constants/float32/max-safe-integer -"0I1",@stdlib/constants-float32-max-safe-integer -"2Do",@stdlib/constants/float32/max-safe-lucas -"2Dp",@stdlib/constants-float32-max-safe-lucas -"2AG",@stdlib/constants/float32/max-safe-nth-double-factorial -"2AH",@stdlib/constants-float32-max-safe-nth-double-factorial -"24M",@stdlib/constants/float32/max-safe-nth-lucas -"24N",@stdlib/constants-float32-max-safe-nth-lucas -"2AI",@stdlib/constants/float32/max-safe-nth-tribonacci -"2AJ",@stdlib/constants-float32-max-safe-nth-tribonacci -"0I2",@stdlib/constants/float32/max -"0I3",@stdlib/constants-float32-max -"23A",@stdlib/constants/float32/min-base10-exponent -"23B",@stdlib/constants-float32-min-base10-exponent -"1zG",@stdlib/constants/float32/min-base2-exponent-subnormal -"1zH",@stdlib/constants-float32-min-base2-exponent-subnormal -"23C",@stdlib/constants/float32/min-base2-exponent -"23D",@stdlib/constants-float32-min-base2-exponent -"2Dq",@stdlib/constants/float32/min-ln -"2Dr",@stdlib/constants-float32-min-ln -"0I4",@stdlib/constants/float32/min-safe-integer -"0I5",@stdlib/constants-float32-min-safe-integer -"1py",@stdlib/constants/float32/nan -"1pz",@stdlib/constants-float32-nan -"0I6",@stdlib/constants/float32/ninf -"0I7",@stdlib/constants-float32-ninf -"0I8",@stdlib/constants/float32/num-bytes -"0I9",@stdlib/constants-float32-num-bytes -"2kG",@stdlib/constants/float32/num-exponent-bits -"2kH",@stdlib/constants-float32-num-exponent-bits -"2AK",@stdlib/constants/float32/num-significand-bits -"2AL",@stdlib/constants-float32-num-significand-bits -"0IA",@stdlib/constants/float32 -"0IB",@stdlib/constants-float32 -"1v0",@stdlib/constants/float32/phi -"1v1",@stdlib/constants-float32-phi -"2AM",@stdlib/constants/float32/pi-squared -"2AN",@stdlib/constants-float32-pi-squared -"1tE",@stdlib/constants/float32/pi -"1tF",@stdlib/constants-float32-pi -"0IC",@stdlib/constants/float32/pinf -"0ID",@stdlib/constants-float32-pinf -"0IE",@stdlib/constants/float32/precision -"0IF",@stdlib/constants-float32-precision -"1ai",@stdlib/constants/float32/sign-mask -"1aj",@stdlib/constants-float32-sign-mask -"1ak",@stdlib/constants/float32/significand-mask -"1al",@stdlib/constants-float32-significand-mask -"0IG",@stdlib/constants/float32/smallest-normal -"0IH",@stdlib/constants-float32-smallest-normal -"0II",@stdlib/constants/float32/smallest-subnormal -"0IJ",@stdlib/constants-float32-smallest-subnormal -"0IK",@stdlib/constants/float32/sqrt-eps -"0IL",@stdlib/constants-float32-sqrt-eps -"24O",@stdlib/constants/float32/sqrt-half-pi -"24P",@stdlib/constants-float32-sqrt-half-pi -"24Q",@stdlib/constants/float32/sqrt-half -"24R",@stdlib/constants-float32-sqrt-half -"24S",@stdlib/constants/float32/sqrt-phi -"24T",@stdlib/constants-float32-sqrt-phi -"24U",@stdlib/constants/float32/sqrt-pi -"24V",@stdlib/constants-float32-sqrt-pi -"24W",@stdlib/constants/float32/sqrt-three -"24X",@stdlib/constants-float32-sqrt-three -"24Y",@stdlib/constants/float32/sqrt-two-pi -"24Z",@stdlib/constants-float32-sqrt-two-pi -"24a",@stdlib/constants/float32/sqrt-two -"24b",@stdlib/constants-float32-sqrt-two -"1tG",@stdlib/constants/float32/two-pi -"1tH",@stdlib/constants-float32-two-pi -"0IM",@stdlib/constants/float64/apery -"0IN",@stdlib/constants-float64-apery -"0IO",@stdlib/constants/float64/catalan -"0IP",@stdlib/constants-float64-catalan -"0IQ",@stdlib/constants/float64/cbrt-eps -"0IR",@stdlib/constants-float64-cbrt-eps -"0IS",@stdlib/constants/float64/e -"0IT",@stdlib/constants-float64-e -"0IU",@stdlib/constants/float64/eps -"0IV",@stdlib/constants-float64-eps -"0IW",@stdlib/constants/float64/eulergamma -"0IX",@stdlib/constants-float64-eulergamma -"0IY",@stdlib/constants/float64/exponent-bias -"0IZ",@stdlib/constants-float64-exponent-bias -"0Ia",@stdlib/constants/float64/fourth-pi -"0Ib",@stdlib/constants-float64-fourth-pi -"0Ic",@stdlib/constants/float64/fourth-root-eps -"0Id",@stdlib/constants-float64-fourth-root-eps -"0Ie",@stdlib/constants/float64/gamma-lanczos-g -"0If",@stdlib/constants-float64-gamma-lanczos-g -"0Ig",@stdlib/constants/float64/glaisher-kinkelin -"0Ih",@stdlib/constants-float64-glaisher-kinkelin -"0Ii",@stdlib/constants/float64/half-ln-two -"0Ij",@stdlib/constants-float64-half-ln-two -"0Ik",@stdlib/constants/float64/half-pi -"0Il",@stdlib/constants-float64-half-pi -"1am",@stdlib/constants/float64/high-word-abs-mask -"1an",@stdlib/constants-float64-high-word-abs-mask -"0Im",@stdlib/constants/float64/high-word-exponent-mask -"0In",@stdlib/constants-float64-high-word-exponent-mask -"1ao",@stdlib/constants/float64/high-word-sign-mask -"1ap",@stdlib/constants-float64-high-word-sign-mask -"0Io",@stdlib/constants/float64/high-word-significand-mask -"0Ip",@stdlib/constants-float64-high-word-significand-mask -"0Iq",@stdlib/constants/float64/ln-half -"0Ir",@stdlib/constants-float64-ln-half -"0Is",@stdlib/constants/float64/ln-pi -"0It",@stdlib/constants-float64-ln-pi -"0Iu",@stdlib/constants/float64/ln-sqrt-two-pi -"0Iv",@stdlib/constants-float64-ln-sqrt-two-pi -"0Iw",@stdlib/constants/float64/ln-ten -"0Ix",@stdlib/constants-float64-ln-ten -"0Iy",@stdlib/constants/float64/ln-two-pi -"0Iz",@stdlib/constants-float64-ln-two-pi -"0J0",@stdlib/constants/float64/ln-two -"0J1",@stdlib/constants-float64-ln-two -"0J2",@stdlib/constants/float64/log10-e -"0J3",@stdlib/constants-float64-log10-e -"0J4",@stdlib/constants/float64/log2-e -"0J5",@stdlib/constants-float64-log2-e -"0J6",@stdlib/constants/float64/max-base10-exponent-subnormal -"0J7",@stdlib/constants-float64-max-base10-exponent-subnormal -"0J8",@stdlib/constants/float64/max-base10-exponent -"0J9",@stdlib/constants-float64-max-base10-exponent -"0JA",@stdlib/constants/float64/max-base2-exponent-subnormal -"0JB",@stdlib/constants-float64-max-base2-exponent-subnormal -"0JC",@stdlib/constants/float64/max-base2-exponent -"0JD",@stdlib/constants-float64-max-base2-exponent -"0JE",@stdlib/constants/float64/max-ln -"0JF",@stdlib/constants-float64-max-ln -"2Fa",@stdlib/constants/float64/max-nth-double-factorial -"2Fb",@stdlib/constants-float64-max-nth-double-factorial -"2Fc",@stdlib/constants/float64/max-nth-factorial -"2Fd",@stdlib/constants-float64-max-nth-factorial -"0JG",@stdlib/constants/float64/max-safe-fibonacci -"0JH",@stdlib/constants-float64-max-safe-fibonacci -"0JI",@stdlib/constants/float64/max-safe-integer -"0JJ",@stdlib/constants-float64-max-safe-integer -"0JK",@stdlib/constants/float64/max-safe-lucas -"0JL",@stdlib/constants-float64-max-safe-lucas -"23E",@stdlib/constants/float64/max-safe-nth-double-factorial -"23F",@stdlib/constants-float64-max-safe-nth-double-factorial -"1yO",@stdlib/constants/float64/max-safe-nth-factorial -"1yP",@stdlib/constants-float64-max-safe-nth-factorial -"0JM",@stdlib/constants/float64/max-safe-nth-fibonacci -"0JN",@stdlib/constants-float64-max-safe-nth-fibonacci -"0JO",@stdlib/constants/float64/max-safe-nth-lucas -"0JP",@stdlib/constants-float64-max-safe-nth-lucas -"24c",@stdlib/constants/float64/max-safe-nth-tribonacci -"24d",@stdlib/constants-float64-max-safe-nth-tribonacci -"0JQ",@stdlib/constants/float64/max -"0JR",@stdlib/constants-float64-max -"0JS",@stdlib/constants/float64/min-base10-exponent-subnormal -"0JT",@stdlib/constants-float64-min-base10-exponent-subnormal -"0JU",@stdlib/constants/float64/min-base10-exponent -"0JV",@stdlib/constants-float64-min-base10-exponent -"0JW",@stdlib/constants/float64/min-base2-exponent-subnormal -"0JX",@stdlib/constants-float64-min-base2-exponent-subnormal -"0JY",@stdlib/constants/float64/min-base2-exponent -"0JZ",@stdlib/constants-float64-min-base2-exponent -"0Ja",@stdlib/constants/float64/min-ln -"0Jb",@stdlib/constants-float64-min-ln -"0Jc",@stdlib/constants/float64/min-safe-integer -"0Jd",@stdlib/constants-float64-min-safe-integer -"1q0",@stdlib/constants/float64/nan -"1q1",@stdlib/constants-float64-nan -"0Je",@stdlib/constants/float64/ninf -"0Jf",@stdlib/constants-float64-ninf -"0Jg",@stdlib/constants/float64/num-bytes -"0Jh",@stdlib/constants-float64-num-bytes -"20A",@stdlib/constants/float64/num-high-word-significand-bits -"20B",@stdlib/constants-float64-num-high-word-significand-bits -"0Ji",@stdlib/constants/float64 -"0Jj",@stdlib/constants-float64 -"0Jk",@stdlib/constants/float64/phi -"0Jl",@stdlib/constants-float64-phi -"0Jm",@stdlib/constants/float64/pi-squared -"0Jn",@stdlib/constants-float64-pi-squared -"0Jo",@stdlib/constants/float64/pi -"0Jp",@stdlib/constants-float64-pi -"0Jq",@stdlib/constants/float64/pinf -"0Jr",@stdlib/constants-float64-pinf -"0Js",@stdlib/constants/float64/precision -"0Jt",@stdlib/constants-float64-precision -"0Ju",@stdlib/constants/float64/smallest-normal -"0Jv",@stdlib/constants-float64-smallest-normal -"0Jw",@stdlib/constants/float64/smallest-subnormal -"0Jx",@stdlib/constants-float64-smallest-subnormal -"0Jy",@stdlib/constants/float64/sqrt-eps -"0Jz",@stdlib/constants-float64-sqrt-eps -"0K0",@stdlib/constants/float64/sqrt-half-pi -"0K1",@stdlib/constants-float64-sqrt-half-pi -"0K2",@stdlib/constants/float64/sqrt-half -"0K3",@stdlib/constants-float64-sqrt-half -"0K4",@stdlib/constants/float64/sqrt-phi -"0K5",@stdlib/constants-float64-sqrt-phi -"0K6",@stdlib/constants/float64/sqrt-pi -"0K7",@stdlib/constants-float64-sqrt-pi -"0K8",@stdlib/constants/float64/sqrt-three -"0K9",@stdlib/constants-float64-sqrt-three -"0KA",@stdlib/constants/float64/sqrt-two-pi -"0KB",@stdlib/constants-float64-sqrt-two-pi -"0KC",@stdlib/constants/float64/sqrt-two -"0KD",@stdlib/constants-float64-sqrt-two -"0KE",@stdlib/constants/float64/two-pi -"0KF",@stdlib/constants-float64-two-pi -"0KG",@stdlib/constants/int16/max -"0KH",@stdlib/constants-int16-max -"0KI",@stdlib/constants/int16/min -"0KJ",@stdlib/constants-int16-min -"0KK",@stdlib/constants/int16/num-bytes -"0KL",@stdlib/constants-int16-num-bytes -"0KM",@stdlib/constants/int16 -"0KN",@stdlib/constants-int16 -"0KO",@stdlib/constants/int32/max -"0KP",@stdlib/constants-int32-max -"0KQ",@stdlib/constants/int32/min -"0KR",@stdlib/constants-int32-min -"0KS",@stdlib/constants/int32/num-bytes -"0KT",@stdlib/constants-int32-num-bytes -"0KU",@stdlib/constants/int32 -"0KV",@stdlib/constants-int32 -"0KW",@stdlib/constants/int8/max -"0KX",@stdlib/constants-int8-max -"0KY",@stdlib/constants/int8/min -"0KZ",@stdlib/constants-int8-min -"0Ka",@stdlib/constants/int8/num-bytes -"0Kb",@stdlib/constants-int8-num-bytes -"0Kc",@stdlib/constants/int8 -"0Kd",@stdlib/constants-int8 -"0Kf",@stdlib/constants -"0Kg",@stdlib/constants/path/delimiter-posix -"0Kh",@stdlib/constants-path-delimiter-posix -"0Ki",@stdlib/constants/path/delimiter-win32 -"0Kj",@stdlib/constants-path-delimiter-win32 -"0Kk",@stdlib/constants/path/delimiter -"0Kl",@stdlib/constants-path-delimiter -"0Km",@stdlib/constants/path -"0Kn",@stdlib/constants-path -"0Ko",@stdlib/constants/path/sep-posix -"0Kp",@stdlib/constants-path-sep-posix -"0Kq",@stdlib/constants/path/sep-win32 -"0Kr",@stdlib/constants-path-sep-win32 -"0Ks",@stdlib/constants/path/sep -"0Kt",@stdlib/constants-path-sep -"0Ku",@stdlib/constants/time/hours-in-day -"0Kv",@stdlib/constants-time-hours-in-day -"0Kw",@stdlib/constants/time/hours-in-week -"0Kx",@stdlib/constants-time-hours-in-week -"0Ky",@stdlib/constants/time/milliseconds-in-day -"0Kz",@stdlib/constants-time-milliseconds-in-day -"0L0",@stdlib/constants/time/milliseconds-in-hour -"0L1",@stdlib/constants-time-milliseconds-in-hour -"0L2",@stdlib/constants/time/milliseconds-in-minute -"0L3",@stdlib/constants-time-milliseconds-in-minute -"0L4",@stdlib/constants/time/milliseconds-in-second -"0L5",@stdlib/constants-time-milliseconds-in-second -"0L6",@stdlib/constants/time/milliseconds-in-week -"0L7",@stdlib/constants-time-milliseconds-in-week -"0L8",@stdlib/constants/time/minutes-in-day -"0L9",@stdlib/constants-time-minutes-in-day -"0LA",@stdlib/constants/time/minutes-in-hour -"0LB",@stdlib/constants-time-minutes-in-hour -"0LC",@stdlib/constants/time/minutes-in-week -"0LD",@stdlib/constants-time-minutes-in-week -"0LE",@stdlib/constants/time/months-in-year -"0LF",@stdlib/constants-time-months-in-year -"0LG",@stdlib/constants/time -"0LH",@stdlib/constants-time -"0LI",@stdlib/constants/time/seconds-in-day -"0LJ",@stdlib/constants-time-seconds-in-day -"0LK",@stdlib/constants/time/seconds-in-hour -"0LL",@stdlib/constants-time-seconds-in-hour -"0LM",@stdlib/constants/time/seconds-in-minute -"0LN",@stdlib/constants-time-seconds-in-minute -"0LO",@stdlib/constants/time/seconds-in-week -"0LP",@stdlib/constants-time-seconds-in-week -"0LQ",@stdlib/constants/uint16/max -"0LR",@stdlib/constants-uint16-max -"0LS",@stdlib/constants/uint16/num-bytes -"0LT",@stdlib/constants-uint16-num-bytes -"0LU",@stdlib/constants/uint16 -"0LV",@stdlib/constants-uint16 -"0LW",@stdlib/constants/uint32/max -"0LX",@stdlib/constants-uint32-max -"0LY",@stdlib/constants/uint32/num-bytes -"0LZ",@stdlib/constants-uint32-num-bytes -"0La",@stdlib/constants/uint32 -"0Lb",@stdlib/constants-uint32 -"0Lc",@stdlib/constants/uint8/max -"0Ld",@stdlib/constants-uint8-max -"0Le",@stdlib/constants/uint8/num-bytes -"0Lf",@stdlib/constants-uint8-num-bytes -"0Lg",@stdlib/constants/uint8 -"0Lh",@stdlib/constants-uint8 -"0Li",@stdlib/constants/unicode/max-bmp -"0Lj",@stdlib/constants-unicode-max-bmp -"0Lk",@stdlib/constants/unicode/max -"0Ll",@stdlib/constants-unicode-max -"0Lm",@stdlib/constants/unicode -"0Ln",@stdlib/constants-unicode -"0Lo",@stdlib/datasets/afinn-111 -"0Lp",@stdlib/datasets-afinn-111 -"0Lq",@stdlib/datasets/afinn-96 -"0Lr",@stdlib/datasets-afinn-96 -"0Ls",@stdlib/datasets/anscombes-quartet -"0Lt",@stdlib/datasets-anscombes-quartet -"0Lu",@stdlib/datasets/berndt-cps-wages-1985 -"0Lv",@stdlib/datasets-berndt-cps-wages-1985 -"0Lw",@stdlib/datasets/cdc-nchs-us-births-1969-1988 -"0Lx",@stdlib/datasets-cdc-nchs-us-births-1969-1988 -"0Ly",@stdlib/datasets/cdc-nchs-us-births-1994-2003 -"0Lz",@stdlib/datasets-cdc-nchs-us-births-1994-2003 -"0M0",@stdlib/datasets/cdc-nchs-us-infant-mortality-bw-1915-2013 -"0M1",@stdlib/datasets-cdc-nchs-us-infant-mortality-bw-1915-2013 -"0M2",@stdlib/datasets/cmudict -"0M3",@stdlib/datasets-cmudict -"0M4",@stdlib/datasets/dale-chall-new -"0M5",@stdlib/datasets-dale-chall-new -"0M6",@stdlib/datasets/emoji-code-picto -"0M7",@stdlib/datasets-emoji-code-picto -"0M8",@stdlib/datasets/emoji-picto-code -"0M9",@stdlib/datasets-emoji-picto-code -"0MA",@stdlib/datasets/emoji -"0MB",@stdlib/datasets-emoji -"0MC",@stdlib/datasets/female-first-names-en -"0MD",@stdlib/datasets-female-first-names-en -"0ME",@stdlib/datasets/fivethirtyeight-ffq -"0MF",@stdlib/datasets-fivethirtyeight-ffq -"0MG",@stdlib/datasets/frb-sf-wage-rigidity -"0MH",@stdlib/datasets-frb-sf-wage-rigidity -"0MI",@stdlib/datasets/harrison-boston-house-prices-corrected -"0MJ",@stdlib/datasets-harrison-boston-house-prices-corrected -"0MK",@stdlib/datasets/harrison-boston-house-prices -"0ML",@stdlib/datasets-harrison-boston-house-prices -"0MM",@stdlib/datasets/herndon-venus-semidiameters -"0MN",@stdlib/datasets-herndon-venus-semidiameters -"0MO",@stdlib/datasets/img-acanthus-mollis -"0MP",@stdlib/datasets-img-acanthus-mollis -"0MQ",@stdlib/datasets/img-airplane-from-above -"0MR",@stdlib/datasets-img-airplane-from-above -"0MS",@stdlib/datasets/img-allium-oreophilum -"0MT",@stdlib/datasets-img-allium-oreophilum -"0MU",@stdlib/datasets/img-black-canyon -"0MV",@stdlib/datasets-img-black-canyon -"0MW",@stdlib/datasets/img-dust-bowl-home -"0MX",@stdlib/datasets-img-dust-bowl-home -"0MY",@stdlib/datasets/img-french-alpine-landscape -"0MZ",@stdlib/datasets-img-french-alpine-landscape -"0Ma",@stdlib/datasets/img-locomotion-house-cat -"0Mb",@stdlib/datasets-img-locomotion-house-cat -"0Mc",@stdlib/datasets/img-locomotion-nude-male -"0Md",@stdlib/datasets-img-locomotion-nude-male -"0Me",@stdlib/datasets/img-march-pastoral -"0Mf",@stdlib/datasets-img-march-pastoral -"0Mg",@stdlib/datasets/img-nagasaki-boats -"0Mh",@stdlib/datasets-img-nagasaki-boats -"0Mi",@stdlib/datasets/liu-negative-opinion-words-en -"0Mj",@stdlib/datasets-liu-negative-opinion-words-en -"0Mk",@stdlib/datasets/liu-positive-opinion-words-en -"0Ml",@stdlib/datasets-liu-positive-opinion-words-en -"0Mm",@stdlib/datasets/male-first-names-en -"0Mn",@stdlib/datasets-male-first-names-en -"0Mo",@stdlib/datasets/minard-napoleons-march -"0Mp",@stdlib/datasets-minard-napoleons-march -"0Mq",@stdlib/datasets/moby-dick -"0Mr",@stdlib/datasets-moby-dick -"0Ms",@stdlib/datasets/month-names-en -"0Mt",@stdlib/datasets-month-names-en -"0Mu",@stdlib/datasets/nightingales-rose -"0Mv",@stdlib/datasets-nightingales-rose -"0Mw",@stdlib/datasets/pace-boston-house-prices -"0Mx",@stdlib/datasets-pace-boston-house-prices -"0Mz",@stdlib/datasets -"0N0",@stdlib/datasets/primes-100k -"0N1",@stdlib/datasets-primes-100k -"0N2",@stdlib/datasets/savoy-stopwords-fin -"0N3",@stdlib/datasets-savoy-stopwords-fin -"0N4",@stdlib/datasets/savoy-stopwords-fr -"0N5",@stdlib/datasets-savoy-stopwords-fr -"0N6",@stdlib/datasets/savoy-stopwords-ger -"0N7",@stdlib/datasets-savoy-stopwords-ger -"0N8",@stdlib/datasets/savoy-stopwords-it -"0N9",@stdlib/datasets-savoy-stopwords-it -"0NA",@stdlib/datasets/savoy-stopwords-por -"0NB",@stdlib/datasets-savoy-stopwords-por -"0NC",@stdlib/datasets/savoy-stopwords-sp -"0ND",@stdlib/datasets-savoy-stopwords-sp -"0NE",@stdlib/datasets/savoy-stopwords-swe -"0NF",@stdlib/datasets-savoy-stopwords-swe -"0NG",@stdlib/datasets/sotu -"0NH",@stdlib/datasets-sotu -"0NI",@stdlib/datasets/spache-revised -"0NJ",@stdlib/datasets-spache-revised -"0NK",@stdlib/datasets/spam-assassin -"0NL",@stdlib/datasets-spam-assassin -"0NM",@stdlib/datasets/ssa-us-births-2000-2014 -"0NN",@stdlib/datasets-ssa-us-births-2000-2014 -"0NO",@stdlib/datasets/standard-card-deck -"0NP",@stdlib/datasets-standard-card-deck -"0NQ",@stdlib/datasets/stopwords-en -"0NR",@stdlib/datasets-stopwords-en -"0NS",@stdlib/datasets/suthaharan-multi-hop-sensor-network -"0NT",@stdlib/datasets-suthaharan-multi-hop-sensor-network -"0NU",@stdlib/datasets/suthaharan-single-hop-sensor-network -"0NV",@stdlib/datasets-suthaharan-single-hop-sensor-network -"0NW",@stdlib/datasets/us-states-abbr -"0NX",@stdlib/datasets-us-states-abbr -"0NY",@stdlib/datasets/us-states-capitals-names -"0NZ",@stdlib/datasets-us-states-capitals-names -"0Na",@stdlib/datasets/us-states-capitals -"0Nb",@stdlib/datasets-us-states-capitals -"0Nc",@stdlib/datasets/us-states-names-capitals -"0Nd",@stdlib/datasets-us-states-names-capitals -"0Ne",@stdlib/datasets/us-states-names -"0Nf",@stdlib/datasets-us-states-names -"27K",@stdlib/dstructs/circular-buffer -"27L",@stdlib/dstructs-circular-buffer -"27M",@stdlib/dstructs/compact-adjacency-matrix -"27N",@stdlib/dstructs-compact-adjacency-matrix -"27O",@stdlib/dstructs/doubly-linked-list -"27P",@stdlib/dstructs-doubly-linked-list -"27Q",@stdlib/dstructs/fifo -"27R",@stdlib/dstructs-fifo -"27S",@stdlib/dstructs/linked-list -"27T",@stdlib/dstructs-linked-list -"27U",@stdlib/dstructs/named-typed-tuple -"27V",@stdlib/dstructs-named-typed-tuple -"27X",@stdlib/dstructs -"27Y",@stdlib/dstructs/stack -"27Z",@stdlib/dstructs-stack -"2KI",@stdlib/dstructs/struct -"2KJ",@stdlib/dstructs-struct -"0Nh",@stdlib/error -"0Ni",@stdlib/error/reviver -"0Nj",@stdlib/error-reviver -"0Nk",@stdlib/error/to-json -"0Nl",@stdlib/error-to-json -"0Nm",@stdlib/error/tools/database -"0Nn",@stdlib/error-tools-database -"0No",@stdlib/error/tools/fmtprodmsg-factory -"0Np",@stdlib/error-tools-fmtprodmsg-factory -"0Nq",@stdlib/error/tools/fmtprodmsg -"0Nr",@stdlib/error-tools-fmtprodmsg -"0Ns",@stdlib/error/tools/id2msg -"0Nt",@stdlib/error-tools-id2msg -"0Nu",@stdlib/error/tools/id2pkg -"0Nv",@stdlib/error-tools-id2pkg -"0Nw",@stdlib/error/tools/msg2id -"0Nx",@stdlib/error-tools-msg2id -"0Ny",@stdlib/error/tools -"0Nz",@stdlib/error-tools -"0O0",@stdlib/error/tools/pkg2id -"0O1",@stdlib/error-tools-pkg2id -"2kI",@stdlib/fft/base/fftpack/decompose -"2kJ",@stdlib/fft-base-fftpack-decompose -"1v2",@stdlib/fs/append-file -"1v3",@stdlib/fs-append-file -"0O2",@stdlib/fs/close -"0O3",@stdlib/fs-close -"0O4",@stdlib/fs/exists -"0O5",@stdlib/fs-exists -"0O6",@stdlib/fs/open -"0O7",@stdlib/fs-open -"0O9",@stdlib/fs -"0OA",@stdlib/fs/read-dir -"0OB",@stdlib/fs-read-dir -"0OC",@stdlib/fs/read-file-list -"0OD",@stdlib/fs-read-file-list -"0OE",@stdlib/fs/read-file -"0OF",@stdlib/fs-read-file -"0OG",@stdlib/fs/read-json -"0OH",@stdlib/fs-read-json -"23G",@stdlib/fs/read-ndjson -"23H",@stdlib/fs-read-ndjson -"0OI",@stdlib/fs/read-wasm -"0OJ",@stdlib/fs-read-wasm -"0OK",@stdlib/fs/rename -"0OL",@stdlib/fs-rename -"0OM",@stdlib/fs/resolve-parent-path-by -"0ON",@stdlib/fs-resolve-parent-path-by -"0OO",@stdlib/fs/resolve-parent-path -"0OP",@stdlib/fs-resolve-parent-path -"1yS",@stdlib/fs/resolve-parent-paths -"1yT",@stdlib/fs-resolve-parent-paths -"0OQ",@stdlib/fs/unlink -"0OR",@stdlib/fs-unlink -"0OS",@stdlib/fs/write-file -"0OT",@stdlib/fs-write-file -"1aq",@stdlib/function/ctor -"1ar",@stdlib/function-ctor -"1at",@stdlib/function -"27a",@stdlib/function/thunk -"27b",@stdlib/function-thunk -"1au",@stdlib/function/to-string -"1av",@stdlib/function-to-string -"0OU",@stdlib/iter/advance -"0OV",@stdlib/iter-advance -"0OW",@stdlib/iter/any-by -"0OX",@stdlib/iter-any-by -"0OY",@stdlib/iter/any -"0OZ",@stdlib/iter-any -"0Oa",@stdlib/iter/concat -"0Ob",@stdlib/iter-concat -"0Oc",@stdlib/iter/constant -"0Od",@stdlib/iter-constant -"0Oe",@stdlib/iter/counter -"0Of",@stdlib/iter-counter -"23I",@stdlib/iter/cuany-by -"23J",@stdlib/iter-cuany-by -"1xS",@stdlib/iter/cuany -"1xT",@stdlib/iter-cuany -"23K",@stdlib/iter/cuevery-by -"23L",@stdlib/iter-cuevery-by -"23M",@stdlib/iter/cuevery -"23N",@stdlib/iter-cuevery -"1zI",@stdlib/iter/cunone-by -"1zJ",@stdlib/iter-cunone-by -"23O",@stdlib/iter/cunone -"23P",@stdlib/iter-cunone -"23Q",@stdlib/iter/cusome-by -"23R",@stdlib/iter-cusome-by -"1yU",@stdlib/iter/cusome -"1yV",@stdlib/iter-cusome -"0Og",@stdlib/iter/datespace -"0Oh",@stdlib/iter-datespace -"0Oi",@stdlib/iter/dedupe-by -"0Oj",@stdlib/iter-dedupe-by -"0Ok",@stdlib/iter/dedupe -"0Ol",@stdlib/iter-dedupe -"1tI",@stdlib/iter/do-until-each -"1tJ",@stdlib/iter-do-until-each -"1tK",@stdlib/iter/do-while-each -"1tL",@stdlib/iter-do-while-each -"0Om",@stdlib/iter/empty -"0On",@stdlib/iter-empty -"0Oo",@stdlib/iter/every-by -"0Op",@stdlib/iter-every-by -"0Oq",@stdlib/iter/every -"0Or",@stdlib/iter-every -"0Os",@stdlib/iter/fill -"0Ot",@stdlib/iter-fill -"0Ou",@stdlib/iter/filter-map -"0Ov",@stdlib/iter-filter-map -"0Ow",@stdlib/iter/filter -"0Ox",@stdlib/iter-filter -"0Oy",@stdlib/iter/first -"0Oz",@stdlib/iter-first -"0P0",@stdlib/iter/flow -"0P1",@stdlib/iter-flow -"0P2",@stdlib/iter/for-each -"0P3",@stdlib/iter-for-each -"0P4",@stdlib/iter/head -"0P5",@stdlib/iter-head -"0P6",@stdlib/iter/incrspace -"0P7",@stdlib/iter-incrspace -"0P8",@stdlib/iter/intersection-by-hash -"0P9",@stdlib/iter-intersection-by-hash -"0PA",@stdlib/iter/intersection -"0PB",@stdlib/iter-intersection -"0PC",@stdlib/iter/last -"0PD",@stdlib/iter-last -"0PE",@stdlib/iter/length -"0PF",@stdlib/iter-length -"0PG",@stdlib/iter/linspace -"0PH",@stdlib/iter-linspace -"0PI",@stdlib/iter/logspace -"0PJ",@stdlib/iter-logspace -"0PK",@stdlib/iter/map -"0PL",@stdlib/iter-map -"0PM",@stdlib/iter/mapn -"0PN",@stdlib/iter-mapn -"0PO",@stdlib/iter/none-by -"0PP",@stdlib/iter-none-by -"0PQ",@stdlib/iter/none -"0PR",@stdlib/iter-none -"0PS",@stdlib/iter/nth -"0PT",@stdlib/iter-nth -"0PV",@stdlib/iter -"0PW",@stdlib/iter/pipeline-thunk -"0PX",@stdlib/iter-pipeline-thunk -"0PY",@stdlib/iter/pipeline -"0PZ",@stdlib/iter-pipeline -"0Pa",@stdlib/iter/pop -"0Pb",@stdlib/iter-pop -"0Pc",@stdlib/iter/push -"0Pd",@stdlib/iter-push -"0Pe",@stdlib/iter/reject -"0Pf",@stdlib/iter-reject -"0Pg",@stdlib/iter/replicate-by -"0Ph",@stdlib/iter-replicate-by -"0Pi",@stdlib/iter/replicate -"0Pj",@stdlib/iter-replicate -"0Pk",@stdlib/iter/shift -"0Pl",@stdlib/iter-shift -"0Pm",@stdlib/iter/slice -"0Pn",@stdlib/iter-slice -"0Po",@stdlib/iter/some-by -"0Pp",@stdlib/iter-some-by -"0Pq",@stdlib/iter/some -"0Pr",@stdlib/iter-some -"0Ps",@stdlib/iter/step -"0Pt",@stdlib/iter-step -"0Pu",@stdlib/iter/strided-by -"0Pv",@stdlib/iter-strided-by -"0Pw",@stdlib/iter/strided -"0Px",@stdlib/iter-strided -"0Py",@stdlib/iter/to-array-view-right -"0Pz",@stdlib/iter-to-array-view-right -"0Q0",@stdlib/iter/to-array-view -"0Q1",@stdlib/iter-to-array-view -"0Q2",@stdlib/iter/union -"0Q3",@stdlib/iter-union -"0Q4",@stdlib/iter/unique-by-hash -"0Q5",@stdlib/iter-unique-by-hash -"0Q6",@stdlib/iter/unique-by -"0Q7",@stdlib/iter-unique-by -"0Q8",@stdlib/iter/unique -"0Q9",@stdlib/iter-unique -"0QA",@stdlib/iter/unitspace -"0QB",@stdlib/iter-unitspace -"0QC",@stdlib/iter/unshift -"0QD",@stdlib/iter-unshift -"1sg",@stdlib/iter/until-each -"1sh",@stdlib/iter-until-each -"1mu",@stdlib/iter/while-each -"1mv",@stdlib/iter-while-each -"27c",@stdlib/lapack/base/clacgv -"27d",@stdlib/lapack-base-clacgv -"27e",@stdlib/lapack/base/clacpy -"27f",@stdlib/lapack-base-clacpy -"27g",@stdlib/lapack/base/claset -"27h",@stdlib/lapack-base-claset -"2H0",@stdlib/lapack/base/claswp -"2H1",@stdlib/lapack-base-claswp -"27i",@stdlib/lapack/base/crot -"27j",@stdlib/lapack-base-crot -"1zK",@stdlib/lapack/base/dge-trans -"1zL",@stdlib/lapack-base-dge-trans -"2I8",@stdlib/lapack/base/dgttrf -"2I9",@stdlib/lapack-base-dgttrf -"1yo",@stdlib/lapack/base/dlacpy -"1yp",@stdlib/lapack-base-dlacpy -"2TG",@stdlib/lapack/base/dladiv -"2TH",@stdlib/lapack-base-dladiv -"20C",@stdlib/lapack/base/dlamch -"20D",@stdlib/lapack-base-dlamch -"2IA",@stdlib/lapack/base/dlapy2 -"2IB",@stdlib/lapack-base-dlapy2 -"2IC",@stdlib/lapack/base/dlapy3 -"2ID",@stdlib/lapack-base-dlapy3 -"2V0",@stdlib/lapack/base/dlarf1f -"2V1",@stdlib/lapack-base-dlarf1f -"2OE",@stdlib/lapack/base/dlaset -"2OF",@stdlib/lapack-base-dlaset -"1yq",@stdlib/lapack/base/dlassq -"1yr",@stdlib/lapack-base-dlassq -"1xg",@stdlib/lapack/base/dlaswp -"1xh",@stdlib/lapack-base-dlaswp -"1ys",@stdlib/lapack/base/dpttrf -"1yt",@stdlib/lapack-base-dpttrf -"2IE",@stdlib/lapack/base/iladlc -"2IF",@stdlib/lapack-base-iladlc -"2IG",@stdlib/lapack/base/iladlr -"2IH",@stdlib/lapack-base-iladlr -"1xi",@stdlib/lapack/base -"1xj",@stdlib/lapack-base -"1zM",@stdlib/lapack/base/sge-trans -"1zN",@stdlib/lapack-base-sge-trans -"2OG",@stdlib/lapack/base/shared -"2OH",@stdlib/lapack-base-shared -"1yu",@stdlib/lapack/base/slacpy -"1yv",@stdlib/lapack-base-slacpy -"1zO",@stdlib/lapack/base/slaswp -"1zP",@stdlib/lapack-base-slaswp -"1yw",@stdlib/lapack/base/spttrf -"1yx",@stdlib/lapack-base-spttrf -"2OI",@stdlib/lapack/base/xerbla -"2OJ",@stdlib/lapack-base-xerbla -"26A",@stdlib/lapack/base/zlacpy -"26B",@stdlib/lapack-base-zlacpy -"27k",@stdlib/lapack/base/zlaset -"27l",@stdlib/lapack-base-zlaset -"2GG",@stdlib/lapack/base/zlaswp -"2GH",@stdlib/lapack-base-zlaswp -"26C",@stdlib/lapack/base/zrot -"26D",@stdlib/lapack-base-zrot -"1xl",@stdlib/lapack -"27m",@stdlib/math/array -"27n",@stdlib/math-array -"27o",@stdlib/math/array/special/abs -"27p",@stdlib/math-array-special-abs -"27q",@stdlib/math/array/special -"27r",@stdlib/math-array-special -"27s",@stdlib/math/array/tools -"27t",@stdlib/math-array-tools -"27u",@stdlib/math/array/tools/unary-factory -"27v",@stdlib/math-array-tools-unary-factory -"27w",@stdlib/math/array/tools/unary -"27x",@stdlib/math-array-tools-unary -"0QE",@stdlib/math/base/assert/int32-is-even -"0QF",@stdlib/math-base-assert-int32-is-even -"0QG",@stdlib/math/base/assert/int32-is-odd -"0QH",@stdlib/math-base-assert-int32-is-odd -"0QI",@stdlib/math/base/assert/is-composite -"0QJ",@stdlib/math-base-assert-is-composite -"0QK",@stdlib/math/base/assert/is-coprime -"0QL",@stdlib/math-base-assert-is-coprime -"0QM",@stdlib/math/base/assert/is-even -"0QN",@stdlib/math-base-assert-is-even -"23S",@stdlib/math/base/assert/is-evenf -"23T",@stdlib/math-base-assert-is-evenf -"0QO",@stdlib/math/base/assert/is-finite -"0QP",@stdlib/math-base-assert-is-finite -"0QQ",@stdlib/math/base/assert/is-finitef -"0QR",@stdlib/math-base-assert-is-finitef -"0QS",@stdlib/math/base/assert/is-infinite -"0QT",@stdlib/math-base-assert-is-infinite -"0QU",@stdlib/math/base/assert/is-infinitef -"0QV",@stdlib/math-base-assert-is-infinitef -"0QW",@stdlib/math/base/assert/is-integer -"0QX",@stdlib/math-base-assert-is-integer -"1zQ",@stdlib/math/base/assert/is-integerf -"1zR",@stdlib/math-base-assert-is-integerf -"0QY",@stdlib/math/base/assert/is-nan -"0QZ",@stdlib/math-base-assert-is-nan -"0Qa",@stdlib/math/base/assert/is-nanf -"0Qb",@stdlib/math-base-assert-is-nanf -"1aw",@stdlib/math/base/assert/is-negative-finite -"1ax",@stdlib/math-base-assert-is-negative-finite -"0Qc",@stdlib/math/base/assert/is-negative-integer -"0Qd",@stdlib/math-base-assert-is-negative-integer -"2TI",@stdlib/math/base/assert/is-negative-integerf -"2TJ",@stdlib/math-base-assert-is-negative-integerf -"0Qe",@stdlib/math/base/assert/is-negative-zero -"0Qf",@stdlib/math-base-assert-is-negative-zero -"0Qg",@stdlib/math/base/assert/is-negative-zerof -"0Qh",@stdlib/math-base-assert-is-negative-zerof -"1ay",@stdlib/math/base/assert/is-nonnegative-finite -"1az",@stdlib/math-base-assert-is-nonnegative-finite -"0Qi",@stdlib/math/base/assert/is-nonnegative-integer -"0Qj",@stdlib/math-base-assert-is-nonnegative-integer -"20E",@stdlib/math/base/assert/is-nonnegative-integerf -"20F",@stdlib/math-base-assert-is-nonnegative-integerf -"1b0",@stdlib/math/base/assert/is-nonpositive-finite -"1b1",@stdlib/math-base-assert-is-nonpositive-finite -"0Qk",@stdlib/math/base/assert/is-nonpositive-integer -"0Ql",@stdlib/math-base-assert-is-nonpositive-integer -"0Qm",@stdlib/math/base/assert/is-odd -"0Qn",@stdlib/math-base-assert-is-odd -"24e",@stdlib/math/base/assert/is-oddf -"24f",@stdlib/math-base-assert-is-oddf -"1b2",@stdlib/math/base/assert/is-positive-finite -"1b3",@stdlib/math-base-assert-is-positive-finite -"0Qo",@stdlib/math/base/assert/is-positive-integer -"0Qp",@stdlib/math-base-assert-is-positive-integer -"0Qq",@stdlib/math/base/assert/is-positive-zero -"0Qr",@stdlib/math-base-assert-is-positive-zero -"0Qs",@stdlib/math/base/assert/is-positive-zerof -"0Qt",@stdlib/math-base-assert-is-positive-zerof -"0Qu",@stdlib/math/base/assert/is-prime -"0Qv",@stdlib/math-base-assert-is-prime -"0Qw",@stdlib/math/base/assert/is-probability -"0Qx",@stdlib/math-base-assert-is-probability -"25q",@stdlib/math/base/assert/is-probabilityf -"25r",@stdlib/math-base-assert-is-probabilityf -"0Qy",@stdlib/math/base/assert/is-safe-integer -"0Qz",@stdlib/math-base-assert-is-safe-integer -"0R0",@stdlib/math/base/assert -"0R1",@stdlib/math-base-assert -"0R2",@stdlib/math/base/assert/uint32-is-pow2 -"0R3",@stdlib/math-base-assert-uint32-is-pow2 -"0R4",@stdlib/math/base/napi/binary -"0R5",@stdlib/math-base-napi-binary -"0R6",@stdlib/math/base/napi -"0R7",@stdlib/math-base-napi -"1m2",@stdlib/math/base/napi/quaternary -"1m3",@stdlib/math-base-napi-quaternary -"1m4",@stdlib/math/base/napi/quinary -"1m5",@stdlib/math-base-napi-quinary -"0R8",@stdlib/math/base/napi/ternary -"0R9",@stdlib/math-base-napi-ternary -"0RA",@stdlib/math/base/napi/unary -"0RB",@stdlib/math-base-napi-unary -"0Ro",@stdlib/math/base -"0Rp",@stdlib/math-base -"0Rq",@stdlib/math/base/special/abs -"0Rr",@stdlib/math-base-special-abs -"0Rs",@stdlib/math/base/special/abs2 -"0Rt",@stdlib/math-base-special-abs2 -"0Ru",@stdlib/math/base/special/abs2f -"0Rv",@stdlib/math-base-special-abs2f -"0Rw",@stdlib/math/base/special/absf -"0Rx",@stdlib/math-base-special-absf -"2TK",@stdlib/math/base/special/absgammalnf -"2TL",@stdlib/math-base-special-absgammalnf -"0Ry",@stdlib/math/base/special/acos -"0Rz",@stdlib/math-base-special-acos -"1tM",@stdlib/math/base/special/acosd -"1tN",@stdlib/math-base-special-acosd -"23U",@stdlib/math/base/special/acosdf -"23V",@stdlib/math-base-special-acosdf -"1tO",@stdlib/math/base/special/acosf -"1tP",@stdlib/math-base-special-acosf -"0S0",@stdlib/math/base/special/acosh -"0S1",@stdlib/math-base-special-acosh -"2kK",@stdlib/math/base/special/acoshf -"2kL",@stdlib/math-base-special-acoshf -"0S2",@stdlib/math/base/special/acot -"0S3",@stdlib/math-base-special-acot -"1tQ",@stdlib/math/base/special/acotd -"1tR",@stdlib/math-base-special-acotd -"20G",@stdlib/math/base/special/acotdf -"20H",@stdlib/math-base-special-acotdf -"1tS",@stdlib/math/base/special/acotf -"1tT",@stdlib/math-base-special-acotf -"0S4",@stdlib/math/base/special/acoth -"0S5",@stdlib/math-base-special-acoth -"2kM",@stdlib/math/base/special/acothf -"2kN",@stdlib/math-base-special-acothf -"0S6",@stdlib/math/base/special/acovercos -"0S7",@stdlib/math-base-special-acovercos -"20I",@stdlib/math/base/special/acovercosf -"20J",@stdlib/math-base-special-acovercosf -"0S8",@stdlib/math/base/special/acoversin -"0S9",@stdlib/math-base-special-acoversin -"20K",@stdlib/math/base/special/acoversinf -"20L",@stdlib/math-base-special-acoversinf -"0SA",@stdlib/math/base/special/acsc -"0SB",@stdlib/math-base-special-acsc -"1tU",@stdlib/math/base/special/acscd -"1tV",@stdlib/math-base-special-acscd -"1v4",@stdlib/math/base/special/acscdf -"1v5",@stdlib/math-base-special-acscdf -"1tW",@stdlib/math/base/special/acscf -"1tX",@stdlib/math-base-special-acscf -"0SC",@stdlib/math/base/special/acsch -"0SD",@stdlib/math-base-special-acsch -"0SE",@stdlib/math/base/special/ahavercos -"0SF",@stdlib/math-base-special-ahavercos -"23W",@stdlib/math/base/special/ahavercosf -"23X",@stdlib/math-base-special-ahavercosf -"0SG",@stdlib/math/base/special/ahaversin -"0SH",@stdlib/math-base-special-ahaversin -"23Y",@stdlib/math/base/special/ahaversinf -"23Z",@stdlib/math-base-special-ahaversinf -"1b6",@stdlib/math/base/special/asec -"1b7",@stdlib/math-base-special-asec -"1tY",@stdlib/math/base/special/asecd -"1tZ",@stdlib/math-base-special-asecd -"1v6",@stdlib/math/base/special/asecdf -"1v7",@stdlib/math-base-special-asecdf -"1ta",@stdlib/math/base/special/asecf -"1tb",@stdlib/math-base-special-asecf -"0SI",@stdlib/math/base/special/asech -"0SJ",@stdlib/math-base-special-asech -"0SK",@stdlib/math/base/special/asin -"0SL",@stdlib/math-base-special-asin -"1tc",@stdlib/math/base/special/asind -"1td",@stdlib/math-base-special-asind -"1v8",@stdlib/math/base/special/asindf -"1v9",@stdlib/math-base-special-asindf -"1te",@stdlib/math/base/special/asinf -"1tf",@stdlib/math-base-special-asinf -"0SM",@stdlib/math/base/special/asinh -"0SN",@stdlib/math-base-special-asinh -"2kO",@stdlib/math/base/special/asinhf -"2kP",@stdlib/math-base-special-asinhf -"0SO",@stdlib/math/base/special/atan -"0SP",@stdlib/math-base-special-atan -"0SQ",@stdlib/math/base/special/atan2 -"0SR",@stdlib/math-base-special-atan2 -"2Ds",@stdlib/math/base/special/atan2d -"2Dt",@stdlib/math-base-special-atan2d -"2II",@stdlib/math/base/special/atan2f -"2IJ",@stdlib/math-base-special-atan2f -"1tg",@stdlib/math/base/special/atand -"1th",@stdlib/math-base-special-atand -"20M",@stdlib/math/base/special/atandf -"20N",@stdlib/math-base-special-atandf -"1ti",@stdlib/math/base/special/atanf -"1tj",@stdlib/math-base-special-atanf -"0SS",@stdlib/math/base/special/atanh -"0ST",@stdlib/math-base-special-atanh -"2kQ",@stdlib/math/base/special/atanhf -"2kR",@stdlib/math-base-special-atanhf -"0SU",@stdlib/math/base/special/avercos -"0SV",@stdlib/math-base-special-avercos -"20O",@stdlib/math/base/special/avercosf -"20P",@stdlib/math-base-special-avercosf -"0SW",@stdlib/math/base/special/aversin -"0SX",@stdlib/math-base-special-aversin -"20Q",@stdlib/math/base/special/aversinf -"20R",@stdlib/math-base-special-aversinf -"0SY",@stdlib/math/base/special/bernoulli -"0SZ",@stdlib/math-base-special-bernoulli -"2H2",@stdlib/math/base/special/bernoullif -"2H3",@stdlib/math-base-special-bernoullif -"0Sa",@stdlib/math/base/special/besselj0 -"0Sb",@stdlib/math-base-special-besselj0 -"0Sc",@stdlib/math/base/special/besselj1 -"0Sd",@stdlib/math-base-special-besselj1 -"0Se",@stdlib/math/base/special/bessely0 -"0Sf",@stdlib/math-base-special-bessely0 -"0Sg",@stdlib/math/base/special/bessely1 -"0Sh",@stdlib/math-base-special-bessely1 -"0Si",@stdlib/math/base/special/beta -"0Sj",@stdlib/math-base-special-beta -"0Sk",@stdlib/math/base/special/betainc -"0Sl",@stdlib/math-base-special-betainc -"0Sm",@stdlib/math/base/special/betaincinv -"0Sn",@stdlib/math-base-special-betaincinv -"0So",@stdlib/math/base/special/betaln -"0Sp",@stdlib/math-base-special-betaln -"0Sq",@stdlib/math/base/special/binet -"0Sr",@stdlib/math-base-special-binet -"0Ss",@stdlib/math/base/special/binomcoef -"0St",@stdlib/math-base-special-binomcoef -"2IK",@stdlib/math/base/special/binomcoeff -"2IL",@stdlib/math-base-special-binomcoeff -"0Su",@stdlib/math/base/special/binomcoefln -"0Sv",@stdlib/math-base-special-binomcoefln -"0Sw",@stdlib/math/base/special/boxcox -"0Sx",@stdlib/math-base-special-boxcox -"0Sy",@stdlib/math/base/special/boxcox1p -"0Sz",@stdlib/math-base-special-boxcox1p -"0T0",@stdlib/math/base/special/boxcox1pinv -"0T1",@stdlib/math-base-special-boxcox1pinv -"0T2",@stdlib/math/base/special/boxcoxinv -"0T3",@stdlib/math-base-special-boxcoxinv -"0T4",@stdlib/math/base/special/cabs -"0T5",@stdlib/math-base-special-cabs -"0T6",@stdlib/math/base/special/cabs2 -"0T7",@stdlib/math-base-special-cabs2 -"0T8",@stdlib/math/base/special/cabs2f -"0T9",@stdlib/math-base-special-cabs2f -"0TA",@stdlib/math/base/special/cabsf -"0TB",@stdlib/math-base-special-cabsf -"0TC",@stdlib/math/base/special/cbrt -"0TD",@stdlib/math-base-special-cbrt -"0TE",@stdlib/math/base/special/cbrtf -"0TF",@stdlib/math-base-special-cbrtf -"0TG",@stdlib/math/base/special/cceil -"0TH",@stdlib/math-base-special-cceil -"0TI",@stdlib/math/base/special/cceilf -"0TJ",@stdlib/math-base-special-cceilf -"0TK",@stdlib/math/base/special/cceiln -"0TL",@stdlib/math-base-special-cceiln -"0TM",@stdlib/math/base/special/ccis -"0TN",@stdlib/math-base-special-ccis -"0TO",@stdlib/math/base/special/ceil -"0TP",@stdlib/math-base-special-ceil -"0TQ",@stdlib/math/base/special/ceil10 -"0TR",@stdlib/math-base-special-ceil10 -"0TS",@stdlib/math/base/special/ceil2 -"0TT",@stdlib/math-base-special-ceil2 -"0TU",@stdlib/math/base/special/ceilb -"0TV",@stdlib/math-base-special-ceilb -"0TW",@stdlib/math/base/special/ceilf -"0TX",@stdlib/math-base-special-ceilf -"0TY",@stdlib/math/base/special/ceiln -"0TZ",@stdlib/math-base-special-ceiln -"0Ta",@stdlib/math/base/special/ceilsd -"0Tb",@stdlib/math-base-special-ceilsd -"0Tc",@stdlib/math/base/special/cexp -"0Td",@stdlib/math-base-special-cexp -"0Te",@stdlib/math/base/special/cflipsign -"0Tf",@stdlib/math-base-special-cflipsign -"0Tg",@stdlib/math/base/special/cflipsignf -"0Th",@stdlib/math-base-special-cflipsignf -"0Ti",@stdlib/math/base/special/cfloor -"0Tj",@stdlib/math-base-special-cfloor -"23a",@stdlib/math/base/special/cfloorf -"23b",@stdlib/math-base-special-cfloorf -"0Tk",@stdlib/math/base/special/cfloorn -"0Tl",@stdlib/math-base-special-cfloorn -"0Tq",@stdlib/math/base/special/cinv -"0Tr",@stdlib/math-base-special-cinv -"2IM",@stdlib/math/base/special/cinvf -"2IN",@stdlib/math-base-special-cinvf -"0Ts",@stdlib/math/base/special/clamp -"0Tt",@stdlib/math-base-special-clamp -"0Tu",@stdlib/math/base/special/clampf -"0Tv",@stdlib/math-base-special-clampf -"0Tw",@stdlib/math/base/special/copysign -"0Tx",@stdlib/math-base-special-copysign -"0Ty",@stdlib/math/base/special/copysignf -"0Tz",@stdlib/math-base-special-copysignf -"0U0",@stdlib/math/base/special/cos -"0U1",@stdlib/math-base-special-cos -"1tk",@stdlib/math/base/special/cosd -"1tl",@stdlib/math-base-special-cosd -"2TM",@stdlib/math/base/special/cosdf -"2TN",@stdlib/math-base-special-cosdf -"2KK",@stdlib/math/base/special/cosf -"2KL",@stdlib/math-base-special-cosf -"0U2",@stdlib/math/base/special/cosh -"0U3",@stdlib/math-base-special-cosh -"2kS",@stdlib/math/base/special/coshf -"2kT",@stdlib/math-base-special-coshf -"0U4",@stdlib/math/base/special/cosm1 -"0U5",@stdlib/math-base-special-cosm1 -"2KM",@stdlib/math/base/special/cosm1f -"2KN",@stdlib/math-base-special-cosm1f -"0U6",@stdlib/math/base/special/cospi -"0U7",@stdlib/math-base-special-cospi -"2Rq",@stdlib/math/base/special/cospif -"2Rr",@stdlib/math-base-special-cospif -"0U8",@stdlib/math/base/special/cot -"0U9",@stdlib/math-base-special-cot -"1tm",@stdlib/math/base/special/cotd -"1tn",@stdlib/math-base-special-cotd -"2TO",@stdlib/math/base/special/cotdf -"2TP",@stdlib/math-base-special-cotdf -"2TQ",@stdlib/math/base/special/cotf -"2TR",@stdlib/math-base-special-cotf -"0UA",@stdlib/math/base/special/coth -"0UB",@stdlib/math-base-special-coth -"0UC",@stdlib/math/base/special/covercos -"0UD",@stdlib/math-base-special-covercos -"2KO",@stdlib/math/base/special/covercosf -"2KP",@stdlib/math-base-special-covercosf -"0UE",@stdlib/math/base/special/coversin -"0UF",@stdlib/math-base-special-coversin -"2KQ",@stdlib/math/base/special/coversinf -"2KR",@stdlib/math-base-special-coversinf -"0UG",@stdlib/math/base/special/cphase -"0UH",@stdlib/math-base-special-cphase -"2KS",@stdlib/math/base/special/cphasef -"2KT",@stdlib/math-base-special-cphasef -"0UI",@stdlib/math/base/special/cpolar -"0UJ",@stdlib/math-base-special-cpolar -"2Rs",@stdlib/math/base/special/cpolarf -"2Rt",@stdlib/math-base-special-cpolarf -"0UK",@stdlib/math/base/special/cround -"0UL",@stdlib/math-base-special-cround -"23c",@stdlib/math/base/special/croundf -"23d",@stdlib/math-base-special-croundf -"0UM",@stdlib/math/base/special/croundn -"0UN",@stdlib/math-base-special-croundn -"1si",@stdlib/math/base/special/csc -"1sj",@stdlib/math-base-special-csc -"1to",@stdlib/math/base/special/cscd -"1tp",@stdlib/math-base-special-cscd -"2TS",@stdlib/math/base/special/cscdf -"2TT",@stdlib/math-base-special-cscdf -"2KU",@stdlib/math/base/special/cscf -"2KV",@stdlib/math-base-special-cscf -"0UO",@stdlib/math/base/special/csch -"0UP",@stdlib/math-base-special-csch -"0UQ",@stdlib/math/base/special/csignum -"0UR",@stdlib/math-base-special-csignum -"2Du",@stdlib/math/base/special/csignumf -"2Dv",@stdlib/math-base-special-csignumf -"0US",@stdlib/math/base/special/deg2rad -"0UT",@stdlib/math-base-special-deg2rad -"0UU",@stdlib/math/base/special/deg2radf -"0UV",@stdlib/math-base-special-deg2radf -"0UW",@stdlib/math/base/special/digamma -"0UX",@stdlib/math-base-special-digamma -"0UY",@stdlib/math/base/special/dirac-delta -"0UZ",@stdlib/math-base-special-dirac-delta -"25s",@stdlib/math/base/special/dirac-deltaf -"25t",@stdlib/math-base-special-dirac-deltaf -"0Ua",@stdlib/math/base/special/dirichlet-eta -"0Ub",@stdlib/math-base-special-dirichlet-eta -"0Uc",@stdlib/math/base/special/ellipe -"0Ud",@stdlib/math-base-special-ellipe -"1b8",@stdlib/math/base/special/ellipj -"1b9",@stdlib/math-base-special-ellipj -"0Ue",@stdlib/math/base/special/ellipk -"0Uf",@stdlib/math-base-special-ellipk -"0Ug",@stdlib/math/base/special/erf -"0Uh",@stdlib/math-base-special-erf -"0Ui",@stdlib/math/base/special/erfc -"0Uj",@stdlib/math-base-special-erfc -"0Uk",@stdlib/math/base/special/erfcinv -"0Ul",@stdlib/math-base-special-erfcinv -"1bA",@stdlib/math/base/special/erfcx -"1bB",@stdlib/math-base-special-erfcx -"0Um",@stdlib/math/base/special/erfinv -"0Un",@stdlib/math-base-special-erfinv -"0Uo",@stdlib/math/base/special/exp -"0Up",@stdlib/math-base-special-exp -"0Uq",@stdlib/math/base/special/exp10 -"0Ur",@stdlib/math-base-special-exp10 -"0Us",@stdlib/math/base/special/exp2 -"0Ut",@stdlib/math-base-special-exp2 -"0Uu",@stdlib/math/base/special/expit -"0Uv",@stdlib/math-base-special-expit -"0Uw",@stdlib/math/base/special/expm1 -"0Ux",@stdlib/math-base-special-expm1 -"0Uy",@stdlib/math/base/special/expm1rel -"0Uz",@stdlib/math-base-special-expm1rel -"0V0",@stdlib/math/base/special/factorial -"0V1",@stdlib/math-base-special-factorial -"1mG",@stdlib/math/base/special/factorial2 -"1mH",@stdlib/math-base-special-factorial2 -"2IO",@stdlib/math/base/special/factorial2f -"2IP",@stdlib/math-base-special-factorial2f -"0V2",@stdlib/math/base/special/factorialln -"0V3",@stdlib/math-base-special-factorialln -"2TU",@stdlib/math/base/special/factoriallnf -"2TV",@stdlib/math-base-special-factoriallnf -"0V4",@stdlib/math/base/special/falling-factorial -"0V5",@stdlib/math-base-special-falling-factorial -"0V6",@stdlib/math/base/special/fast/abs -"0V7",@stdlib/math-base-special-fast-abs -"2V2",@stdlib/math/base/special/fast/absf -"2V3",@stdlib/math-base-special-fast-absf -"0V8",@stdlib/math/base/special/fast/acosh -"0V9",@stdlib/math-base-special-fast-acosh -"0VA",@stdlib/math/base/special/fast/alpha-max-plus-beta-min -"0VB",@stdlib/math-base-special-fast-alpha-max-plus-beta-min -"0VC",@stdlib/math/base/special/fast/asinh -"0VD",@stdlib/math-base-special-fast-asinh -"0VE",@stdlib/math/base/special/fast/atanh -"0VF",@stdlib/math-base-special-fast-atanh -"2kU",@stdlib/math/base/special/fast/atanhf -"2kV",@stdlib/math-base-special-fast-atanhf -"0VG",@stdlib/math/base/special/fast/hypot -"0VH",@stdlib/math-base-special-fast-hypot -"2VO",@stdlib/math/base/special/fast/hypotf -"2VP",@stdlib/math-base-special-fast-hypotf -"0VI",@stdlib/math/base/special/fast/max -"0VJ",@stdlib/math-base-special-fast-max -"2W4",@stdlib/math/base/special/fast/maxf -"2W5",@stdlib/math-base-special-fast-maxf -"0VK",@stdlib/math/base/special/fast/min -"0VL",@stdlib/math-base-special-fast-min -"2WO",@stdlib/math/base/special/fast/minf -"2WP",@stdlib/math-base-special-fast-minf -"0VM",@stdlib/math/base/special/fast -"0VN",@stdlib/math-base-special-fast -"0VO",@stdlib/math/base/special/fast/pow-int -"0VP",@stdlib/math-base-special-fast-pow-int -"0VQ",@stdlib/math/base/special/fast/uint32-log2 -"0VR",@stdlib/math-base-special-fast-uint32-log2 -"0VS",@stdlib/math/base/special/fast/uint32-sqrt -"0VT",@stdlib/math-base-special-fast-uint32-sqrt -"0VU",@stdlib/math/base/special/fibonacci-index -"0VV",@stdlib/math-base-special-fibonacci-index -"2EW",@stdlib/math/base/special/fibonacci-indexf -"2EX",@stdlib/math-base-special-fibonacci-indexf -"0VW",@stdlib/math/base/special/fibonacci -"0VX",@stdlib/math-base-special-fibonacci -"2Dw",@stdlib/math/base/special/fibonaccif -"2Dx",@stdlib/math-base-special-fibonaccif -"0VY",@stdlib/math/base/special/flipsign -"0VZ",@stdlib/math-base-special-flipsign -"0Va",@stdlib/math/base/special/flipsignf -"0Vb",@stdlib/math-base-special-flipsignf -"0Vc",@stdlib/math/base/special/floor -"0Vd",@stdlib/math-base-special-floor -"0Ve",@stdlib/math/base/special/floor10 -"0Vf",@stdlib/math-base-special-floor10 -"0Vg",@stdlib/math/base/special/floor2 -"0Vh",@stdlib/math-base-special-floor2 -"2kW",@stdlib/math/base/special/floor2f -"2kX",@stdlib/math-base-special-floor2f -"0Vi",@stdlib/math/base/special/floorb -"0Vj",@stdlib/math-base-special-floorb -"0Vk",@stdlib/math/base/special/floorf -"0Vl",@stdlib/math-base-special-floorf -"0Vm",@stdlib/math/base/special/floorn -"0Vn",@stdlib/math-base-special-floorn -"2kY",@stdlib/math/base/special/floornf -"2kZ",@stdlib/math-base-special-floornf -"0Vo",@stdlib/math/base/special/floorsd -"0Vp",@stdlib/math-base-special-floorsd -"1yQ",@stdlib/math/base/special/fmod -"1yR",@stdlib/math-base-special-fmod -"23e",@stdlib/math/base/special/fmodf -"23f",@stdlib/math-base-special-fmodf -"0Vq",@stdlib/math/base/special/fresnel -"0Vr",@stdlib/math-base-special-fresnel -"0Vs",@stdlib/math/base/special/fresnelc -"0Vt",@stdlib/math-base-special-fresnelc -"0Vu",@stdlib/math/base/special/fresnels -"0Vv",@stdlib/math-base-special-fresnels -"0Vw",@stdlib/math/base/special/frexp -"0Vx",@stdlib/math-base-special-frexp -"2KW",@stdlib/math/base/special/frexpf -"2KX",@stdlib/math-base-special-frexpf -"0Vy",@stdlib/math/base/special/gamma-delta-ratio -"0Vz",@stdlib/math-base-special-gamma-delta-ratio -"0W0",@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled -"0W1",@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled -"2KY",@stdlib/math/base/special/gamma-lanczos-sum-expg-scaledf -"2KZ",@stdlib/math-base-special-gamma-lanczos-sum-expg-scaledf -"0W2",@stdlib/math/base/special/gamma-lanczos-sum -"0W3",@stdlib/math-base-special-gamma-lanczos-sum -"0W4",@stdlib/math/base/special/gamma -"0W5",@stdlib/math-base-special-gamma -"0W6",@stdlib/math/base/special/gamma1pm1 -"0W7",@stdlib/math-base-special-gamma1pm1 -"0W8",@stdlib/math/base/special/gammainc -"0W9",@stdlib/math-base-special-gammainc -"0WA",@stdlib/math/base/special/gammaincinv -"0WB",@stdlib/math-base-special-gammaincinv -"0WC",@stdlib/math/base/special/gammaln -"0WD",@stdlib/math-base-special-gammaln -"1bC",@stdlib/math/base/special/gammasgn -"1bD",@stdlib/math-base-special-gammasgn -"2H4",@stdlib/math/base/special/gammasgnf -"2H5",@stdlib/math-base-special-gammasgnf -"0WE",@stdlib/math/base/special/gcd -"0WF",@stdlib/math-base-special-gcd -"23g",@stdlib/math/base/special/gcdf -"23h",@stdlib/math-base-special-gcdf -"0WG",@stdlib/math/base/special/hacovercos -"0WH",@stdlib/math-base-special-hacovercos -"2Ka",@stdlib/math/base/special/hacovercosf -"2Kb",@stdlib/math-base-special-hacovercosf -"0WI",@stdlib/math/base/special/hacoversin -"0WJ",@stdlib/math-base-special-hacoversin -"2Kc",@stdlib/math/base/special/hacoversinf -"2Kd",@stdlib/math-base-special-hacoversinf -"0WK",@stdlib/math/base/special/havercos -"0WL",@stdlib/math-base-special-havercos -"2Ke",@stdlib/math/base/special/havercosf -"2Kf",@stdlib/math-base-special-havercosf -"0WM",@stdlib/math/base/special/haversin -"0WN",@stdlib/math-base-special-haversin -"2Kg",@stdlib/math/base/special/haversinf -"2Kh",@stdlib/math-base-special-haversinf -"0WO",@stdlib/math/base/special/heaviside -"0WP",@stdlib/math-base-special-heaviside -"26E",@stdlib/math/base/special/heavisidef -"26F",@stdlib/math-base-special-heavisidef -"27y",@stdlib/math/base/special/hyp2f1 -"27z",@stdlib/math-base-special-hyp2f1 -"0WQ",@stdlib/math/base/special/hypot -"0WR",@stdlib/math-base-special-hypot -"0WS",@stdlib/math/base/special/hypotf -"0WT",@stdlib/math-base-special-hypotf -"0WY",@stdlib/math/base/special/inv -"0WZ",@stdlib/math-base-special-inv -"0Wa",@stdlib/math/base/special/invf -"0Wb",@stdlib/math-base-special-invf -"0Wc",@stdlib/math/base/special/kernel-betainc -"0Wd",@stdlib/math-base-special-kernel-betainc -"0We",@stdlib/math/base/special/kernel-betaincinv -"0Wf",@stdlib/math-base-special-kernel-betaincinv -"0Wg",@stdlib/math/base/special/kernel-cos -"0Wh",@stdlib/math-base-special-kernel-cos -"2IQ",@stdlib/math/base/special/kernel-cosf -"2IR",@stdlib/math-base-special-kernel-cosf -"1vA",@stdlib/math/base/special/kernel-log1p -"1vB",@stdlib/math-base-special-kernel-log1p -"2OK",@stdlib/math/base/special/kernel-log1pf -"2OL",@stdlib/math-base-special-kernel-log1pf -"0Wi",@stdlib/math/base/special/kernel-sin -"0Wj",@stdlib/math-base-special-kernel-sin -"2Ru",@stdlib/math/base/special/kernel-sincos -"2Rv",@stdlib/math-base-special-kernel-sincos -"2TW",@stdlib/math/base/special/kernel-sincosf -"2TX",@stdlib/math-base-special-kernel-sincosf -"2IS",@stdlib/math/base/special/kernel-sinf -"2IT",@stdlib/math-base-special-kernel-sinf -"0Wk",@stdlib/math/base/special/kernel-tan -"0Wl",@stdlib/math-base-special-kernel-tan -"2Ki",@stdlib/math/base/special/kernel-tanf -"2Kj",@stdlib/math-base-special-kernel-tanf -"0Wm",@stdlib/math/base/special/kronecker-delta -"0Wn",@stdlib/math-base-special-kronecker-delta -"0Wo",@stdlib/math/base/special/kronecker-deltaf -"0Wp",@stdlib/math-base-special-kronecker-deltaf -"0Wq",@stdlib/math/base/special/labs -"0Wr",@stdlib/math-base-special-labs -"0Ws",@stdlib/math/base/special/lcm -"0Wt",@stdlib/math-base-special-lcm -"24g",@stdlib/math/base/special/lcmf -"24h",@stdlib/math-base-special-lcmf -"0Wu",@stdlib/math/base/special/ldexp -"0Wv",@stdlib/math-base-special-ldexp -"20S",@stdlib/math/base/special/ldexpf -"20T",@stdlib/math-base-special-ldexpf -"0Ww",@stdlib/math/base/special/ln -"0Wx",@stdlib/math-base-special-ln -"1wq",@stdlib/math/base/special/lnf -"1wr",@stdlib/math-base-special-lnf -"0Wy",@stdlib/math/base/special/log -"0Wz",@stdlib/math-base-special-log -"0X0",@stdlib/math/base/special/log10 -"0X1",@stdlib/math-base-special-log10 -"0X2",@stdlib/math/base/special/log1mexp -"0X3",@stdlib/math-base-special-log1mexp -"0X4",@stdlib/math/base/special/log1p -"0X5",@stdlib/math-base-special-log1p -"0X6",@stdlib/math/base/special/log1pexp -"0X7",@stdlib/math-base-special-log1pexp -"2a4",@stdlib/math/base/special/log1pf -"2a5",@stdlib/math-base-special-log1pf -"1im",@stdlib/math/base/special/log1pmx -"1in",@stdlib/math-base-special-log1pmx -"0X8",@stdlib/math/base/special/log2 -"0X9",@stdlib/math-base-special-log2 -"0XA",@stdlib/math/base/special/logaddexp -"0XB",@stdlib/math-base-special-logaddexp -"20U",@stdlib/math/base/special/logf -"20V",@stdlib/math-base-special-logf -"0XC",@stdlib/math/base/special/logit -"0XD",@stdlib/math-base-special-logit -"2GI",@stdlib/math/base/special/logitf -"2GJ",@stdlib/math-base-special-logitf -"0XE",@stdlib/math/base/special/lucas -"0XF",@stdlib/math-base-special-lucas -"2Eo",@stdlib/math/base/special/lucasf -"2Ep",@stdlib/math-base-special-lucasf -"0XG",@stdlib/math/base/special/max -"0XH",@stdlib/math-base-special-max -"0XI",@stdlib/math/base/special/maxabs -"0XJ",@stdlib/math-base-special-maxabs -"20W",@stdlib/math/base/special/maxabsf -"20X",@stdlib/math-base-special-maxabsf -"1bE",@stdlib/math/base/special/maxabsn -"1bF",@stdlib/math-base-special-maxabsn -"20Y",@stdlib/math/base/special/maxf -"20Z",@stdlib/math-base-special-maxf -"1bG",@stdlib/math/base/special/maxn -"1bH",@stdlib/math-base-special-maxn -"0XK",@stdlib/math/base/special/min -"0XL",@stdlib/math-base-special-min -"0XM",@stdlib/math/base/special/minabs -"0XN",@stdlib/math-base-special-minabs -"20a",@stdlib/math/base/special/minabsf -"20b",@stdlib/math-base-special-minabsf -"1bI",@stdlib/math/base/special/minabsn -"1bJ",@stdlib/math-base-special-minabsn -"20c",@stdlib/math/base/special/minf -"20d",@stdlib/math-base-special-minf -"0XO",@stdlib/math/base/special/minmax -"0XP",@stdlib/math-base-special-minmax -"0XQ",@stdlib/math/base/special/minmaxabs -"0XR",@stdlib/math-base-special-minmaxabs -"2Kk",@stdlib/math/base/special/minmaxabsf -"2Kl",@stdlib/math-base-special-minmaxabsf -"1bK",@stdlib/math/base/special/minmaxabsn -"1bL",@stdlib/math-base-special-minmaxabsn -"2Km",@stdlib/math/base/special/minmaxf -"2Kn",@stdlib/math-base-special-minmaxf -"1bM",@stdlib/math/base/special/minmaxn -"1bN",@stdlib/math-base-special-minmaxn -"1bO",@stdlib/math/base/special/minn -"1bP",@stdlib/math-base-special-minn -"0XS",@stdlib/math/base/special/modf -"0XT",@stdlib/math-base-special-modf -"2Ko",@stdlib/math/base/special/modff -"2Kp",@stdlib/math-base-special-modff -"1ws",@stdlib/math/base/special/nanmax -"1wt",@stdlib/math-base-special-nanmax -"23i",@stdlib/math/base/special/nanmaxf -"23j",@stdlib/math-base-special-nanmaxf -"1wu",@stdlib/math/base/special/nanmin -"1wv",@stdlib/math-base-special-nanmin -"23k",@stdlib/math/base/special/nanminf -"23l",@stdlib/math-base-special-nanminf -"0XU",@stdlib/math/base/special/negafibonacci -"0XV",@stdlib/math-base-special-negafibonacci -"2IU",@stdlib/math/base/special/negafibonaccif -"2IV",@stdlib/math-base-special-negafibonaccif -"0XW",@stdlib/math/base/special/negalucas -"0XX",@stdlib/math-base-special-negalucas -"24i",@stdlib/math/base/special/negalucasf -"24j",@stdlib/math-base-special-negalucasf -"0XY",@stdlib/math/base/special/nonfibonacci -"0XZ",@stdlib/math-base-special-nonfibonacci -"24k",@stdlib/math/base/special/nonfibonaccif -"24l",@stdlib/math-base-special-nonfibonaccif -"0Xa",@stdlib/math/base/special -"0Xb",@stdlib/math-base-special -"0Xc",@stdlib/math/base/special/pdiff -"0Xd",@stdlib/math-base-special-pdiff -"0Xe",@stdlib/math/base/special/pdifff -"0Xf",@stdlib/math-base-special-pdifff -"0Xg",@stdlib/math/base/special/polygamma -"0Xh",@stdlib/math-base-special-polygamma -"0Xi",@stdlib/math/base/special/pow -"0Xj",@stdlib/math-base-special-pow -"2a6",@stdlib/math/base/special/powf -"2a7",@stdlib/math-base-special-powf -"0Xk",@stdlib/math/base/special/powm1 -"0Xl",@stdlib/math-base-special-powm1 -"0Xm",@stdlib/math/base/special/rad2deg -"0Xn",@stdlib/math-base-special-rad2deg -"1tq",@stdlib/math/base/special/rad2degf -"1tr",@stdlib/math-base-special-rad2degf -"0Xo",@stdlib/math/base/special/ramp -"0Xp",@stdlib/math-base-special-ramp -"0Xq",@stdlib/math/base/special/rampf -"0Xr",@stdlib/math-base-special-rampf -"1bQ",@stdlib/math/base/special/rcbrt -"1bR",@stdlib/math-base-special-rcbrt -"1vC",@stdlib/math/base/special/rcbrtf -"1vD",@stdlib/math-base-special-rcbrtf -"0Xs",@stdlib/math/base/special/rempio2 -"0Xt",@stdlib/math-base-special-rempio2 -"2IW",@stdlib/math/base/special/rempio2f -"2IX",@stdlib/math-base-special-rempio2f -"0Xu",@stdlib/math/base/special/riemann-zeta -"0Xv",@stdlib/math-base-special-riemann-zeta -"0Xw",@stdlib/math/base/special/rising-factorial -"0Xx",@stdlib/math-base-special-rising-factorial -"2OM",@stdlib/math/base/special/round-nearest-even -"2ON",@stdlib/math-base-special-round-nearest-even -"0Xy",@stdlib/math/base/special/round -"0Xz",@stdlib/math-base-special-round -"0Y0",@stdlib/math/base/special/round10 -"0Y1",@stdlib/math-base-special-round10 -"0Y2",@stdlib/math/base/special/round2 -"0Y3",@stdlib/math-base-special-round2 -"0Y4",@stdlib/math/base/special/roundb -"0Y5",@stdlib/math-base-special-roundb -"1zS",@stdlib/math/base/special/roundf -"1zT",@stdlib/math-base-special-roundf -"0Y6",@stdlib/math/base/special/roundn -"0Y7",@stdlib/math-base-special-roundn -"2ka",@stdlib/math/base/special/roundnf -"2kb",@stdlib/math-base-special-roundnf -"0Y8",@stdlib/math/base/special/roundsd -"0Y9",@stdlib/math-base-special-roundsd -"0YA",@stdlib/math/base/special/rsqrt -"0YB",@stdlib/math-base-special-rsqrt -"0YC",@stdlib/math/base/special/rsqrtf -"0YD",@stdlib/math-base-special-rsqrtf -"23m",@stdlib/math/base/special/sec -"23n",@stdlib/math-base-special-sec -"1ts",@stdlib/math/base/special/secd -"1tt",@stdlib/math-base-special-secd -"2TY",@stdlib/math/base/special/secdf -"2TZ",@stdlib/math-base-special-secdf -"2Kq",@stdlib/math/base/special/secf -"2Kr",@stdlib/math-base-special-secf -"2OO",@stdlib/math/base/special/sech -"2OP",@stdlib/math-base-special-sech -"0YE",@stdlib/math/base/special/sici -"0YF",@stdlib/math-base-special-sici -"0YG",@stdlib/math/base/special/signum -"0YH",@stdlib/math-base-special-signum -"0YI",@stdlib/math/base/special/signumf -"0YJ",@stdlib/math-base-special-signumf -"0YK",@stdlib/math/base/special/sin -"0YL",@stdlib/math-base-special-sin -"0YM",@stdlib/math/base/special/sinc -"0YN",@stdlib/math-base-special-sinc -"2Ta",@stdlib/math/base/special/sincf -"2Tb",@stdlib/math-base-special-sincf -"0YO",@stdlib/math/base/special/sincos -"0YP",@stdlib/math-base-special-sincos -"2AO",@stdlib/math/base/special/sincosd -"2AP",@stdlib/math-base-special-sincosd -"2kc",@stdlib/math/base/special/sincosdf -"2kd",@stdlib/math-base-special-sincosdf -"2Tc",@stdlib/math/base/special/sincosf -"2Td",@stdlib/math-base-special-sincosf -"0YQ",@stdlib/math/base/special/sincospi -"0YR",@stdlib/math-base-special-sincospi -"2AQ",@stdlib/math/base/special/sind -"2AR",@stdlib/math-base-special-sind -"2Te",@stdlib/math/base/special/sindf -"2Tf",@stdlib/math-base-special-sindf -"2Ks",@stdlib/math/base/special/sinf -"2Kt",@stdlib/math-base-special-sinf -"0YS",@stdlib/math/base/special/sinh -"0YT",@stdlib/math-base-special-sinh -"0YU",@stdlib/math/base/special/sinpi -"0YV",@stdlib/math-base-special-sinpi -"2Rw",@stdlib/math/base/special/sinpif -"2Rx",@stdlib/math-base-special-sinpif -"0YW",@stdlib/math/base/special/spence -"0YX",@stdlib/math-base-special-spence -"2IY",@stdlib/math/base/special/spencef -"2IZ",@stdlib/math-base-special-spencef -"0YY",@stdlib/math/base/special/sqrt -"0YZ",@stdlib/math-base-special-sqrt -"0Ya",@stdlib/math/base/special/sqrt1pm1 -"0Yb",@stdlib/math-base-special-sqrt1pm1 -"0Yc",@stdlib/math/base/special/sqrtf -"0Yd",@stdlib/math-base-special-sqrtf -"1bS",@stdlib/math/base/special/sqrtpi -"1bT",@stdlib/math-base-special-sqrtpi -"24m",@stdlib/math/base/special/sqrtpif -"24n",@stdlib/math-base-special-sqrtpif -"0Ye",@stdlib/math/base/special/tan -"0Yf",@stdlib/math-base-special-tan -"1tu",@stdlib/math/base/special/tand -"1tv",@stdlib/math-base-special-tand -"2Tg",@stdlib/math/base/special/tandf -"2Th",@stdlib/math-base-special-tandf -"2Ku",@stdlib/math/base/special/tanf -"2Kv",@stdlib/math-base-special-tanf -"0Yg",@stdlib/math/base/special/tanh -"0Yh",@stdlib/math-base-special-tanh -"0Yi",@stdlib/math/base/special/tribonacci -"0Yj",@stdlib/math-base-special-tribonacci -"2Ia",@stdlib/math/base/special/tribonaccif -"2Ib",@stdlib/math-base-special-tribonaccif -"0Yk",@stdlib/math/base/special/trigamma -"0Yl",@stdlib/math-base-special-trigamma -"2Ti",@stdlib/math/base/special/trigammaf -"2Tj",@stdlib/math-base-special-trigammaf -"0Ym",@stdlib/math/base/special/trunc -"0Yn",@stdlib/math-base-special-trunc -"0Yo",@stdlib/math/base/special/trunc10 -"0Yp",@stdlib/math-base-special-trunc10 -"0Yq",@stdlib/math/base/special/trunc2 -"0Yr",@stdlib/math-base-special-trunc2 -"0Ys",@stdlib/math/base/special/truncb -"0Yt",@stdlib/math-base-special-truncb -"0Yu",@stdlib/math/base/special/truncf -"0Yv",@stdlib/math-base-special-truncf -"0Yw",@stdlib/math/base/special/truncn -"0Yx",@stdlib/math-base-special-truncn -"0Yy",@stdlib/math/base/special/truncsd -"0Yz",@stdlib/math-base-special-truncsd -"0Z0",@stdlib/math/base/special/vercos -"0Z1",@stdlib/math-base-special-vercos -"2Kw",@stdlib/math/base/special/vercosf -"2Kx",@stdlib/math-base-special-vercosf -"0Z2",@stdlib/math/base/special/versin -"0Z3",@stdlib/math-base-special-versin -"2Ky",@stdlib/math/base/special/versinf -"2Kz",@stdlib/math-base-special-versinf -"0Z4",@stdlib/math/base/special/wrap -"0Z5",@stdlib/math-base-special-wrap -"2Ic",@stdlib/math/base/special/wrapf -"2Id",@stdlib/math-base-special-wrapf -"0Z6",@stdlib/math/base/special/xlog1py -"0Z7",@stdlib/math-base-special-xlog1py -"0Z8",@stdlib/math/base/special/xlogy -"0Z9",@stdlib/math-base-special-xlogy -"20e",@stdlib/math/base/special/xlogyf -"20f",@stdlib/math-base-special-xlogyf -"2ke",@stdlib/math/base/tools/chebyshev-series -"2kf",@stdlib/math-base-tools-chebyshev-series -"2kg",@stdlib/math/base/tools/chebyshev-seriesf -"2kh",@stdlib/math-base-tools-chebyshev-seriesf -"0ZA",@stdlib/math/base/tools/continued-fraction -"0ZB",@stdlib/math-base-tools-continued-fraction -"1bU",@stdlib/math/base/tools/evalpoly-compile-c -"1bV",@stdlib/math-base-tools-evalpoly-compile-c -"0ZC",@stdlib/math/base/tools/evalpoly-compile -"0ZD",@stdlib/math-base-tools-evalpoly-compile -"0ZE",@stdlib/math/base/tools/evalpoly -"0ZF",@stdlib/math-base-tools-evalpoly -"1tw",@stdlib/math/base/tools/evalpolyf -"1tx",@stdlib/math-base-tools-evalpolyf -"1bW",@stdlib/math/base/tools/evalrational-compile-c -"1bX",@stdlib/math-base-tools-evalrational-compile-c -"0ZG",@stdlib/math/base/tools/evalrational-compile -"0ZH",@stdlib/math-base-tools-evalrational-compile -"0ZI",@stdlib/math/base/tools/evalrational -"0ZJ",@stdlib/math-base-tools-evalrational -"1ty",@stdlib/math/base/tools/evalrationalf -"1tz",@stdlib/math-base-tools-evalrationalf -"0ZK",@stdlib/math/base/tools/fibpoly -"0ZL",@stdlib/math-base-tools-fibpoly -"0ZM",@stdlib/math/base/tools/hermitepoly -"0ZN",@stdlib/math-base-tools-hermitepoly -"0ZO",@stdlib/math/base/tools/lucaspoly -"0ZP",@stdlib/math-base-tools-lucaspoly -"0ZQ",@stdlib/math/base/tools/normhermitepoly -"0ZR",@stdlib/math-base-tools-normhermitepoly -"1vE",@stdlib/math/base/tools/normhermitepolyf -"1vF",@stdlib/math-base-tools-normhermitepolyf -"0ZS",@stdlib/math/base/tools -"0ZT",@stdlib/math-base-tools -"0ZU",@stdlib/math/base/tools/sum-series -"0ZV",@stdlib/math-base-tools-sum-series -"0ZW",@stdlib/math/base/utils/absolute-difference -"0ZX",@stdlib/math-base-utils-absolute-difference -"0ZY",@stdlib/math/base/utils/float64-epsilon-difference -"0ZZ",@stdlib/math-base-utils-float64-epsilon-difference -"0Za",@stdlib/math/base/utils -"0Zb",@stdlib/math-base-utils -"0Zc",@stdlib/math/base/utils/relative-difference -"0Zd",@stdlib/math-base-utils-relative-difference -"0Ze",@stdlib/math/iter/ops/add -"0Zf",@stdlib/math-iter-ops-add -"0Zg",@stdlib/math/iter/ops/divide -"0Zh",@stdlib/math-iter-ops-divide -"0Zi",@stdlib/math/iter/ops/mod -"0Zj",@stdlib/math-iter-ops-mod -"0Zk",@stdlib/math/iter/ops/multiply -"0Zl",@stdlib/math-iter-ops-multiply -"0Zm",@stdlib/math/iter/ops -"0Zn",@stdlib/math-iter-ops -"0Zo",@stdlib/math/iter/ops/subtract -"0Zp",@stdlib/math-iter-ops-subtract -"0Zq",@stdlib/math/iter -"0Zr",@stdlib/math-iter -"0Zs",@stdlib/math/iter/sequences/composites -"0Zt",@stdlib/math-iter-sequences-composites -"0Zu",@stdlib/math/iter/sequences/continued-fraction -"0Zv",@stdlib/math-iter-sequences-continued-fraction -"0Zw",@stdlib/math/iter/sequences/cubes -"0Zx",@stdlib/math-iter-sequences-cubes -"0Zy",@stdlib/math/iter/sequences/even-integers -"0Zz",@stdlib/math-iter-sequences-even-integers -"0a0",@stdlib/math/iter/sequences/factorials -"0a1",@stdlib/math-iter-sequences-factorials -"0a2",@stdlib/math/iter/sequences/fibonacci -"0a3",@stdlib/math-iter-sequences-fibonacci -"0a4",@stdlib/math/iter/sequences/fifth-powers -"0a5",@stdlib/math-iter-sequences-fifth-powers -"0a6",@stdlib/math/iter/sequences/fourth-powers -"0a7",@stdlib/math-iter-sequences-fourth-powers -"0a8",@stdlib/math/iter/sequences/integers -"0a9",@stdlib/math-iter-sequences-integers -"0aA",@stdlib/math/iter/sequences/lucas -"0aB",@stdlib/math-iter-sequences-lucas -"0aC",@stdlib/math/iter/sequences/negafibonacci -"0aD",@stdlib/math-iter-sequences-negafibonacci -"0aE",@stdlib/math/iter/sequences/negalucas -"0aF",@stdlib/math-iter-sequences-negalucas -"0aG",@stdlib/math/iter/sequences/negative-even-integers -"0aH",@stdlib/math-iter-sequences-negative-even-integers -"0aI",@stdlib/math/iter/sequences/negative-integers -"0aJ",@stdlib/math-iter-sequences-negative-integers -"0aK",@stdlib/math/iter/sequences/negative-odd-integers -"0aL",@stdlib/math-iter-sequences-negative-odd-integers -"0aM",@stdlib/math/iter/sequences/nonfibonacci -"0aN",@stdlib/math-iter-sequences-nonfibonacci -"0aO",@stdlib/math/iter/sequences/nonnegative-even-integers -"0aP",@stdlib/math-iter-sequences-nonnegative-even-integers -"0aQ",@stdlib/math/iter/sequences/nonnegative-integers -"0aR",@stdlib/math-iter-sequences-nonnegative-integers -"0aS",@stdlib/math/iter/sequences/nonpositive-even-integers -"0aT",@stdlib/math-iter-sequences-nonpositive-even-integers -"0aU",@stdlib/math/iter/sequences/nonpositive-integers -"0aV",@stdlib/math-iter-sequences-nonpositive-integers -"0aW",@stdlib/math/iter/sequences/nonsquares -"0aX",@stdlib/math-iter-sequences-nonsquares -"0aY",@stdlib/math/iter/sequences/odd-integers -"0aZ",@stdlib/math-iter-sequences-odd-integers -"0aa",@stdlib/math/iter/sequences -"0ab",@stdlib/math-iter-sequences -"0ac",@stdlib/math/iter/sequences/positive-even-integers -"0ad",@stdlib/math-iter-sequences-positive-even-integers -"0ae",@stdlib/math/iter/sequences/positive-integers -"0af",@stdlib/math-iter-sequences-positive-integers -"0ag",@stdlib/math/iter/sequences/positive-odd-integers -"0ah",@stdlib/math-iter-sequences-positive-odd-integers -"0ai",@stdlib/math/iter/sequences/primes -"0aj",@stdlib/math-iter-sequences-primes -"0ak",@stdlib/math/iter/sequences/squared-triangular -"0al",@stdlib/math-iter-sequences-squared-triangular -"0am",@stdlib/math/iter/sequences/squares -"0an",@stdlib/math-iter-sequences-squares -"0ao",@stdlib/math/iter/sequences/triangular -"0ap",@stdlib/math-iter-sequences-triangular -"1sk",@stdlib/math/iter/sequences/tribonacci -"1sl",@stdlib/math-iter-sequences-tribonacci -"0aq",@stdlib/math/iter/special/abs -"0ar",@stdlib/math-iter-special-abs -"0as",@stdlib/math/iter/special/abs2 -"0at",@stdlib/math-iter-special-abs2 -"0au",@stdlib/math/iter/special/acos -"0av",@stdlib/math-iter-special-acos -"0aw",@stdlib/math/iter/special/acosh -"0ax",@stdlib/math-iter-special-acosh -"0ay",@stdlib/math/iter/special/acot -"0az",@stdlib/math-iter-special-acot -"0b0",@stdlib/math/iter/special/acoth -"0b1",@stdlib/math-iter-special-acoth -"0b2",@stdlib/math/iter/special/acovercos -"0b3",@stdlib/math-iter-special-acovercos -"0b4",@stdlib/math/iter/special/acoversin -"0b5",@stdlib/math-iter-special-acoversin -"0b6",@stdlib/math/iter/special/ahavercos -"0b7",@stdlib/math-iter-special-ahavercos -"0b8",@stdlib/math/iter/special/ahaversin -"0b9",@stdlib/math-iter-special-ahaversin -"0bA",@stdlib/math/iter/special/asin -"0bB",@stdlib/math-iter-special-asin -"0bC",@stdlib/math/iter/special/asinh -"0bD",@stdlib/math-iter-special-asinh -"0bE",@stdlib/math/iter/special/atan -"0bF",@stdlib/math-iter-special-atan -"0bG",@stdlib/math/iter/special/atan2 -"0bH",@stdlib/math-iter-special-atan2 -"0bI",@stdlib/math/iter/special/atanh -"0bJ",@stdlib/math-iter-special-atanh -"0bK",@stdlib/math/iter/special/avercos -"0bL",@stdlib/math-iter-special-avercos -"0bM",@stdlib/math/iter/special/aversin -"0bN",@stdlib/math-iter-special-aversin -"0bO",@stdlib/math/iter/special/besselj0 -"0bP",@stdlib/math-iter-special-besselj0 -"0bQ",@stdlib/math/iter/special/besselj1 -"0bR",@stdlib/math-iter-special-besselj1 -"0bS",@stdlib/math/iter/special/bessely0 -"0bT",@stdlib/math-iter-special-bessely0 -"0bU",@stdlib/math/iter/special/bessely1 -"0bV",@stdlib/math-iter-special-bessely1 -"0bW",@stdlib/math/iter/special/beta -"0bX",@stdlib/math-iter-special-beta -"0bY",@stdlib/math/iter/special/betaln -"0bZ",@stdlib/math-iter-special-betaln -"0ba",@stdlib/math/iter/special/binet -"0bb",@stdlib/math-iter-special-binet -"0bc",@stdlib/math/iter/special/cbrt -"0bd",@stdlib/math-iter-special-cbrt -"0be",@stdlib/math/iter/special/ceil -"0bf",@stdlib/math-iter-special-ceil -"0bg",@stdlib/math/iter/special/ceil10 -"0bh",@stdlib/math-iter-special-ceil10 -"0bi",@stdlib/math/iter/special/ceil2 -"0bj",@stdlib/math-iter-special-ceil2 -"0bk",@stdlib/math/iter/special/cos -"0bl",@stdlib/math-iter-special-cos -"0bm",@stdlib/math/iter/special/cosh -"0bn",@stdlib/math-iter-special-cosh -"0bo",@stdlib/math/iter/special/cosm1 -"0bp",@stdlib/math-iter-special-cosm1 -"0bq",@stdlib/math/iter/special/cospi -"0br",@stdlib/math-iter-special-cospi -"0bs",@stdlib/math/iter/special/covercos -"0bt",@stdlib/math-iter-special-covercos -"0bu",@stdlib/math/iter/special/coversin -"0bv",@stdlib/math-iter-special-coversin -"0bw",@stdlib/math/iter/special/deg2rad -"0bx",@stdlib/math-iter-special-deg2rad -"0by",@stdlib/math/iter/special/digamma -"0bz",@stdlib/math-iter-special-digamma -"0c0",@stdlib/math/iter/special/dirac-delta -"0c1",@stdlib/math-iter-special-dirac-delta -"0c2",@stdlib/math/iter/special/dirichlet-eta -"0c3",@stdlib/math-iter-special-dirichlet-eta -"0c4",@stdlib/math/iter/special/ellipe -"0c5",@stdlib/math-iter-special-ellipe -"0c6",@stdlib/math/iter/special/ellipk -"0c7",@stdlib/math-iter-special-ellipk -"0c8",@stdlib/math/iter/special/erf -"0c9",@stdlib/math-iter-special-erf -"0cA",@stdlib/math/iter/special/erfc -"0cB",@stdlib/math-iter-special-erfc -"0cC",@stdlib/math/iter/special/erfcinv -"0cD",@stdlib/math-iter-special-erfcinv -"0cE",@stdlib/math/iter/special/erfinv -"0cF",@stdlib/math-iter-special-erfinv -"0cG",@stdlib/math/iter/special/exp -"0cH",@stdlib/math-iter-special-exp -"0cI",@stdlib/math/iter/special/exp10 -"0cJ",@stdlib/math-iter-special-exp10 -"0cK",@stdlib/math/iter/special/exp2 -"0cL",@stdlib/math-iter-special-exp2 -"0cM",@stdlib/math/iter/special/expit -"0cN",@stdlib/math-iter-special-expit -"0cO",@stdlib/math/iter/special/expm1 -"0cP",@stdlib/math-iter-special-expm1 -"0cQ",@stdlib/math/iter/special/expm1rel -"0cR",@stdlib/math-iter-special-expm1rel -"0cS",@stdlib/math/iter/special/factorial -"0cT",@stdlib/math-iter-special-factorial -"0cU",@stdlib/math/iter/special/factorialln -"0cV",@stdlib/math-iter-special-factorialln -"0cW",@stdlib/math/iter/special/floor -"0cX",@stdlib/math-iter-special-floor -"0cY",@stdlib/math/iter/special/floor10 -"0cZ",@stdlib/math-iter-special-floor10 -"0ca",@stdlib/math/iter/special/floor2 -"0cb",@stdlib/math-iter-special-floor2 -"0cc",@stdlib/math/iter/special/fresnelc -"0cd",@stdlib/math-iter-special-fresnelc -"0ce",@stdlib/math/iter/special/fresnels -"0cf",@stdlib/math-iter-special-fresnels -"0cg",@stdlib/math/iter/special/gamma -"0ch",@stdlib/math-iter-special-gamma -"0ci",@stdlib/math/iter/special/gamma1pm1 -"0cj",@stdlib/math-iter-special-gamma1pm1 -"0ck",@stdlib/math/iter/special/gammaln -"0cl",@stdlib/math-iter-special-gammaln -"0cm",@stdlib/math/iter/special/hacovercos -"0cn",@stdlib/math-iter-special-hacovercos -"0co",@stdlib/math/iter/special/hacoversin -"0cp",@stdlib/math-iter-special-hacoversin -"0cq",@stdlib/math/iter/special/havercos -"0cr",@stdlib/math-iter-special-havercos -"0cs",@stdlib/math/iter/special/haversin -"0ct",@stdlib/math-iter-special-haversin -"0cu",@stdlib/math/iter/special/inv -"0cv",@stdlib/math-iter-special-inv -"0cw",@stdlib/math/iter/special/ln -"0cx",@stdlib/math-iter-special-ln -"0cy",@stdlib/math/iter/special/log -"0cz",@stdlib/math-iter-special-log -"0d0",@stdlib/math/iter/special/log10 -"0d1",@stdlib/math-iter-special-log10 -"0d2",@stdlib/math/iter/special/log1mexp -"0d3",@stdlib/math-iter-special-log1mexp -"0d4",@stdlib/math/iter/special/log1p -"0d5",@stdlib/math-iter-special-log1p -"0d6",@stdlib/math/iter/special/log1pexp -"0d7",@stdlib/math-iter-special-log1pexp -"0d8",@stdlib/math/iter/special/log2 -"0d9",@stdlib/math-iter-special-log2 -"0dA",@stdlib/math/iter/special/logit -"0dB",@stdlib/math-iter-special-logit -"0dC",@stdlib/math/iter/special -"0dD",@stdlib/math-iter-special -"0dE",@stdlib/math/iter/special/pow -"0dF",@stdlib/math-iter-special-pow -"0dG",@stdlib/math/iter/special/rad2deg -"0dH",@stdlib/math-iter-special-rad2deg -"0dI",@stdlib/math/iter/special/ramp -"0dJ",@stdlib/math-iter-special-ramp -"0dK",@stdlib/math/iter/special/riemann-zeta -"0dL",@stdlib/math-iter-special-riemann-zeta -"0dM",@stdlib/math/iter/special/round -"0dN",@stdlib/math-iter-special-round -"0dO",@stdlib/math/iter/special/round10 -"0dP",@stdlib/math-iter-special-round10 -"0dQ",@stdlib/math/iter/special/round2 -"0dR",@stdlib/math-iter-special-round2 -"0dS",@stdlib/math/iter/special/rsqrt -"0dT",@stdlib/math-iter-special-rsqrt -"0dU",@stdlib/math/iter/special/signum -"0dV",@stdlib/math-iter-special-signum -"0dW",@stdlib/math/iter/special/sin -"0dX",@stdlib/math-iter-special-sin -"0dY",@stdlib/math/iter/special/sinc -"0dZ",@stdlib/math-iter-special-sinc -"0da",@stdlib/math/iter/special/sinh -"0db",@stdlib/math-iter-special-sinh -"0dc",@stdlib/math/iter/special/sinpi -"0dd",@stdlib/math-iter-special-sinpi -"0de",@stdlib/math/iter/special/spence -"0df",@stdlib/math-iter-special-spence -"0dg",@stdlib/math/iter/special/sqrt -"0dh",@stdlib/math-iter-special-sqrt -"0di",@stdlib/math/iter/special/sqrt1pm1 -"0dj",@stdlib/math-iter-special-sqrt1pm1 -"0dk",@stdlib/math/iter/special/tan -"0dl",@stdlib/math-iter-special-tan -"0dm",@stdlib/math/iter/special/tanh -"0dn",@stdlib/math-iter-special-tanh -"0do",@stdlib/math/iter/special/trigamma -"0dp",@stdlib/math-iter-special-trigamma -"0dq",@stdlib/math/iter/special/trunc -"0dr",@stdlib/math-iter-special-trunc -"0ds",@stdlib/math/iter/special/trunc10 -"0dt",@stdlib/math-iter-special-trunc10 -"0du",@stdlib/math/iter/special/trunc2 -"0dv",@stdlib/math-iter-special-trunc2 -"0dw",@stdlib/math/iter/special/vercos -"0dx",@stdlib/math-iter-special-vercos -"0dy",@stdlib/math/iter/special/versin -"0dz",@stdlib/math-iter-special-versin -"0e0",@stdlib/math/iter/tools/map -"0e1",@stdlib/math-iter-tools-map -"0e2",@stdlib/math/iter/tools/map2 -"0e3",@stdlib/math-iter-tools-map2 -"0e4",@stdlib/math/iter/tools/map3 -"0e5",@stdlib/math-iter-tools-map3 -"0e6",@stdlib/math/iter/tools -"0e7",@stdlib/math-iter-tools -"0e8",@stdlib/math/iter/utils/continued-fraction -"0e9",@stdlib/math-iter-utils-continued-fraction -"0eA",@stdlib/math/iter/utils -"0eB",@stdlib/math-iter-utils -"0eD",@stdlib/math -"0eE",@stdlib/math/special/abs -"0eF",@stdlib/math-special-abs -"0eG",@stdlib/math/special -"0eH",@stdlib/math-special -"1bY",@stdlib/math/strided/ops/add-by -"1bZ",@stdlib/math-strided-ops-add-by -"0eI",@stdlib/math/strided/ops/add -"0eJ",@stdlib/math-strided-ops-add -"1ba",@stdlib/math/strided/ops/mul-by -"1bb",@stdlib/math-strided-ops-mul-by -"0eK",@stdlib/math/strided/ops/mul -"0eL",@stdlib/math-strided-ops-mul -"0eM",@stdlib/math/strided/ops -"0eN",@stdlib/math-strided-ops -"1bc",@stdlib/math/strided/ops/sub-by -"1bd",@stdlib/math-strided-ops-sub-by -"0eO",@stdlib/math/strided/ops/sub -"0eP",@stdlib/math-strided-ops-sub -"0eQ",@stdlib/math/strided -"0eR",@stdlib/math-strided -"0eS",@stdlib/math/strided/special/abs-by -"0eT",@stdlib/math-strided-special-abs-by -"0eU",@stdlib/math/strided/special/abs -"0eV",@stdlib/math-strided-special-abs -"0eW",@stdlib/math/strided/special/abs2-by -"0eX",@stdlib/math-strided-special-abs2-by -"0eY",@stdlib/math/strided/special/abs2 -"0eZ",@stdlib/math-strided-special-abs2 -"0ea",@stdlib/math/strided/special/acos-by -"0eb",@stdlib/math-strided-special-acos-by -"0ec",@stdlib/math/strided/special/acosh-by -"0ed",@stdlib/math-strided-special-acosh-by -"0ee",@stdlib/math/strided/special/acot-by -"0ef",@stdlib/math-strided-special-acot-by -"0eg",@stdlib/math/strided/special/acoth-by -"0eh",@stdlib/math-strided-special-acoth-by -"0ei",@stdlib/math/strided/special/acovercos-by -"0ej",@stdlib/math-strided-special-acovercos-by -"0ek",@stdlib/math/strided/special/acoversin-by -"0el",@stdlib/math-strided-special-acoversin-by -"0em",@stdlib/math/strided/special/ahavercos-by -"0en",@stdlib/math-strided-special-ahavercos-by -"0eo",@stdlib/math/strided/special/ahaversin-by -"0ep",@stdlib/math-strided-special-ahaversin-by -"0eq",@stdlib/math/strided/special/asin-by -"0er",@stdlib/math-strided-special-asin-by -"0es",@stdlib/math/strided/special/asinh-by -"0et",@stdlib/math-strided-special-asinh-by -"0eu",@stdlib/math/strided/special/atan-by -"0ev",@stdlib/math-strided-special-atan-by -"0ew",@stdlib/math/strided/special/atanh-by -"0ex",@stdlib/math-strided-special-atanh-by -"0ey",@stdlib/math/strided/special/avercos-by -"0ez",@stdlib/math-strided-special-avercos-by -"0f0",@stdlib/math/strided/special/aversin-by -"0f1",@stdlib/math-strided-special-aversin-by -"0f2",@stdlib/math/strided/special/besselj0-by -"0f3",@stdlib/math-strided-special-besselj0-by -"0f4",@stdlib/math/strided/special/besselj1-by -"0f5",@stdlib/math-strided-special-besselj1-by -"0f6",@stdlib/math/strided/special/bessely0-by -"0f7",@stdlib/math-strided-special-bessely0-by -"0f8",@stdlib/math/strided/special/bessely1-by -"0f9",@stdlib/math-strided-special-bessely1-by -"0fA",@stdlib/math/strided/special/binet-by -"0fB",@stdlib/math-strided-special-binet-by -"1be",@stdlib/math/strided/special/cbrt-by -"1bf",@stdlib/math-strided-special-cbrt-by -"0fC",@stdlib/math/strided/special/cbrt -"0fD",@stdlib/math-strided-special-cbrt -"0fE",@stdlib/math/strided/special/ceil -"0fF",@stdlib/math-strided-special-ceil -"1bg",@stdlib/math/strided/special/cos-by -"1bh",@stdlib/math-strided-special-cos-by -"0fG",@stdlib/math/strided/special/dabs -"0fH",@stdlib/math-strided-special-dabs -"0fI",@stdlib/math/strided/special/dabs2 -"0fJ",@stdlib/math-strided-special-dabs2 -"1bi",@stdlib/math/strided/special/dcbrt-by -"1bj",@stdlib/math-strided-special-dcbrt-by -"0fK",@stdlib/math/strided/special/dcbrt -"0fL",@stdlib/math-strided-special-dcbrt -"0fM",@stdlib/math/strided/special/dceil -"0fN",@stdlib/math-strided-special-dceil -"0fO",@stdlib/math/strided/special/ddeg2rad -"0fP",@stdlib/math-strided-special-ddeg2rad -"0fQ",@stdlib/math/strided/special/deg2rad -"0fR",@stdlib/math-strided-special-deg2rad -"0fS",@stdlib/math/strided/special/dfloor -"0fT",@stdlib/math-strided-special-dfloor -"0fU",@stdlib/math/strided/special/dinv -"0fV",@stdlib/math-strided-special-dinv -"0fW",@stdlib/math/strided/special/dmskabs -"0fX",@stdlib/math-strided-special-dmskabs -"0fY",@stdlib/math/strided/special/dmskabs2 -"0fZ",@stdlib/math-strided-special-dmskabs2 -"0fa",@stdlib/math/strided/special/dmskcbrt -"0fb",@stdlib/math-strided-special-dmskcbrt -"0fc",@stdlib/math/strided/special/dmskceil -"0fd",@stdlib/math-strided-special-dmskceil -"0fe",@stdlib/math/strided/special/dmskdeg2rad -"0ff",@stdlib/math-strided-special-dmskdeg2rad -"0fg",@stdlib/math/strided/special/dmskfloor -"0fh",@stdlib/math-strided-special-dmskfloor -"0fi",@stdlib/math/strided/special/dmskinv -"0fj",@stdlib/math-strided-special-dmskinv -"0fk",@stdlib/math/strided/special/dmskramp -"0fl",@stdlib/math-strided-special-dmskramp -"0fm",@stdlib/math/strided/special/dmskrsqrt -"0fn",@stdlib/math-strided-special-dmskrsqrt -"0fo",@stdlib/math/strided/special/dmsksqrt -"0fp",@stdlib/math-strided-special-dmsksqrt -"0fq",@stdlib/math/strided/special/dmsktrunc -"0fr",@stdlib/math-strided-special-dmsktrunc -"0fs",@stdlib/math/strided/special/dramp -"0ft",@stdlib/math-strided-special-dramp -"0fu",@stdlib/math/strided/special/drsqrt -"0fv",@stdlib/math-strided-special-drsqrt -"0fw",@stdlib/math/strided/special/dsqrt -"0fx",@stdlib/math-strided-special-dsqrt -"0fy",@stdlib/math/strided/special/dtrunc -"0fz",@stdlib/math-strided-special-dtrunc -"0g0",@stdlib/math/strided/special/floor -"0g1",@stdlib/math-strided-special-floor -"0g2",@stdlib/math/strided/special/inv -"0g3",@stdlib/math-strided-special-inv -"0g4",@stdlib/math/strided/special -"0g5",@stdlib/math-strided-special -"0g6",@stdlib/math/strided/special/ramp -"0g7",@stdlib/math-strided-special-ramp -"0g8",@stdlib/math/strided/special/rsqrt -"0g9",@stdlib/math-strided-special-rsqrt -"0gA",@stdlib/math/strided/special/sabs -"0gB",@stdlib/math-strided-special-sabs -"0gC",@stdlib/math/strided/special/sabs2 -"0gD",@stdlib/math-strided-special-sabs2 -"0gE",@stdlib/math/strided/special/scbrt -"0gF",@stdlib/math-strided-special-scbrt -"0gG",@stdlib/math/strided/special/sceil -"0gH",@stdlib/math-strided-special-sceil -"0gI",@stdlib/math/strided/special/sdeg2rad -"0gJ",@stdlib/math-strided-special-sdeg2rad -"0gK",@stdlib/math/strided/special/sfloor -"0gL",@stdlib/math-strided-special-sfloor -"1bk",@stdlib/math/strided/special/sin-by -"1bl",@stdlib/math-strided-special-sin-by -"0gM",@stdlib/math/strided/special/sinv -"0gN",@stdlib/math-strided-special-sinv -"0gO",@stdlib/math/strided/special/smskabs -"0gP",@stdlib/math-strided-special-smskabs -"0gQ",@stdlib/math/strided/special/smskabs2 -"0gR",@stdlib/math-strided-special-smskabs2 -"0gS",@stdlib/math/strided/special/smskcbrt -"0gT",@stdlib/math-strided-special-smskcbrt -"0gU",@stdlib/math/strided/special/smskceil -"0gV",@stdlib/math-strided-special-smskceil -"0gW",@stdlib/math/strided/special/smskdeg2rad -"0gX",@stdlib/math-strided-special-smskdeg2rad -"0gY",@stdlib/math/strided/special/smskfloor -"0gZ",@stdlib/math-strided-special-smskfloor -"0ga",@stdlib/math/strided/special/smskinv -"0gb",@stdlib/math-strided-special-smskinv -"0gc",@stdlib/math/strided/special/smskramp -"0gd",@stdlib/math-strided-special-smskramp -"0ge",@stdlib/math/strided/special/smskrsqrt -"0gf",@stdlib/math-strided-special-smskrsqrt -"0gg",@stdlib/math/strided/special/smsksqrt -"0gh",@stdlib/math-strided-special-smsksqrt -"0gi",@stdlib/math/strided/special/smsktrunc -"0gj",@stdlib/math-strided-special-smsktrunc -"1bm",@stdlib/math/strided/special/sqrt-by -"1bn",@stdlib/math-strided-special-sqrt-by -"0gk",@stdlib/math/strided/special/sqrt -"0gl",@stdlib/math-strided-special-sqrt -"0gm",@stdlib/math/strided/special/sramp -"0gn",@stdlib/math-strided-special-sramp -"0go",@stdlib/math/strided/special/srsqrt -"0gp",@stdlib/math-strided-special-srsqrt -"0gq",@stdlib/math/strided/special/ssqrt -"0gr",@stdlib/math-strided-special-ssqrt -"0gs",@stdlib/math/strided/special/strunc -"0gt",@stdlib/math-strided-special-strunc -"0gu",@stdlib/math/strided/special/trunc -"0gv",@stdlib/math-strided-special-trunc -"0gw",@stdlib/math/tools -"0gx",@stdlib/math-tools -"0gy",@stdlib/math/tools/unary -"0gz",@stdlib/math-tools-unary -"2ki",@stdlib/ml/base/kmeans/algorithm-enum2str -"2kj",@stdlib/ml-base-kmeans-algorithm-enum2str -"2kk",@stdlib/ml/base/kmeans/algorithm-resolve-enum -"2kl",@stdlib/ml-base-kmeans-algorithm-resolve-enum -"2km",@stdlib/ml/base/kmeans/algorithm-resolve-str -"2kn",@stdlib/ml-base-kmeans-algorithm-resolve-str -"2ko",@stdlib/ml/base/kmeans/algorithm-str2enum -"2kp",@stdlib/ml-base-kmeans-algorithm-str2enum -"2kq",@stdlib/ml/base/kmeans/algorithms -"2kr",@stdlib/ml-base-kmeans-algorithms -"2ks",@stdlib/ml/base/kmeans/metric-enum2str -"2kt",@stdlib/ml-base-kmeans-metric-enum2str -"2ku",@stdlib/ml/base/kmeans/metric-resolve-enum -"2kv",@stdlib/ml-base-kmeans-metric-resolve-enum -"2kw",@stdlib/ml/base/kmeans/metric-resolve-str -"2kx",@stdlib/ml-base-kmeans-metric-resolve-str -"2ky",@stdlib/ml/base/kmeans/metric-str2enum -"2kz",@stdlib/ml-base-kmeans-metric-str2enum -"2l0",@stdlib/ml/base/kmeans/metrics -"2l1",@stdlib/ml-base-kmeans-metrics -"0h0",@stdlib/ml/incr/binary-classification -"0h1",@stdlib/ml-incr-binary-classification -"0h2",@stdlib/ml/incr/kmeans -"0h3",@stdlib/ml-incr-kmeans -"0h4",@stdlib/ml/incr -"0h5",@stdlib/ml-incr -"0h6",@stdlib/ml/incr/sgd-regression -"0h7",@stdlib/ml-incr-sgd-regression -"0h9",@stdlib/ml -"0hA",@stdlib/namespace/alias2pkg -"0hB",@stdlib/namespace-alias2pkg -"0hC",@stdlib/namespace/alias2related -"0hD",@stdlib/namespace-alias2related -"0hE",@stdlib/namespace/alias2standalone -"0hF",@stdlib/namespace-alias2standalone -"0hG",@stdlib/namespace/aliases -"0hH",@stdlib/namespace-aliases -"0hJ",@stdlib/namespace -"0hK",@stdlib/namespace/pkg2alias -"0hL",@stdlib/namespace-pkg2alias -"0hM",@stdlib/namespace/pkg2related -"0hN",@stdlib/namespace-pkg2related -"0hO",@stdlib/namespace/pkg2standalone -"0hP",@stdlib/namespace-pkg2standalone -"0hQ",@stdlib/namespace/standalone2pkg -"0hR",@stdlib/namespace-standalone2pkg -"2l2",@stdlib/napi/argv-booleanarray -"2l3",@stdlib/napi-argv-booleanarray -"1vG",@stdlib/napi/argv-complex128 -"1vH",@stdlib/napi-argv-complex128 -"1bo",@stdlib/napi/argv-complex128array -"1bp",@stdlib/napi-argv-complex128array -"1vI",@stdlib/napi/argv-complex64 -"1vJ",@stdlib/napi-argv-complex64 -"1bq",@stdlib/napi/argv-complex64array -"1br",@stdlib/napi-argv-complex64array -"2L0",@stdlib/napi/argv-dataview-cast -"2L1",@stdlib/napi-argv-dataview-cast -"2L2",@stdlib/napi/argv-dataview -"2L3",@stdlib/napi-argv-dataview -"1bs",@stdlib/napi/argv-double -"1bt",@stdlib/napi-argv-double -"1bu",@stdlib/napi/argv-float -"1bv",@stdlib/napi-argv-float -"1bw",@stdlib/napi/argv-float32array -"1bx",@stdlib/napi-argv-float32array -"1by",@stdlib/napi/argv-float64array -"1bz",@stdlib/napi-argv-float64array -"1c0",@stdlib/napi/argv-int16array -"1c1",@stdlib/napi-argv-int16array -"1c2",@stdlib/napi/argv-int32 -"1c3",@stdlib/napi-argv-int32 -"1c4",@stdlib/napi/argv-int32array -"1c5",@stdlib/napi-argv-int32array -"1c6",@stdlib/napi/argv-int64 -"1c7",@stdlib/napi-argv-int64 -"1c8",@stdlib/napi/argv-int8array -"1c9",@stdlib/napi-argv-int8array -"2l4",@stdlib/napi/argv-strided-booleanarray -"2l5",@stdlib/napi-argv-strided-booleanarray -"2l6",@stdlib/napi/argv-strided-booleanarray2d -"2l7",@stdlib/napi-argv-strided-booleanarray2d -"1cA",@stdlib/napi/argv-strided-complex128array -"1cB",@stdlib/napi-argv-strided-complex128array -"20g",@stdlib/napi/argv-strided-complex128array2d -"20h",@stdlib/napi-argv-strided-complex128array2d -"1cC",@stdlib/napi/argv-strided-complex64array -"1cD",@stdlib/napi-argv-strided-complex64array -"20i",@stdlib/napi/argv-strided-complex64array2d -"20j",@stdlib/napi-argv-strided-complex64array2d -"1cE",@stdlib/napi/argv-strided-float32array -"1cF",@stdlib/napi-argv-strided-float32array -"20k",@stdlib/napi/argv-strided-float32array2d -"20l",@stdlib/napi-argv-strided-float32array2d -"1cG",@stdlib/napi/argv-strided-float64array -"1cH",@stdlib/napi-argv-strided-float64array -"20m",@stdlib/napi/argv-strided-float64array2d -"20n",@stdlib/napi-argv-strided-float64array2d -"1cI",@stdlib/napi/argv-strided-int16array -"1cJ",@stdlib/napi-argv-strided-int16array -"20o",@stdlib/napi/argv-strided-int16array2d -"20p",@stdlib/napi-argv-strided-int16array2d -"1cK",@stdlib/napi/argv-strided-int32array -"1cL",@stdlib/napi-argv-strided-int32array -"20q",@stdlib/napi/argv-strided-int32array2d -"20r",@stdlib/napi-argv-strided-int32array2d -"1cM",@stdlib/napi/argv-strided-int8array -"1cN",@stdlib/napi-argv-strided-int8array -"20s",@stdlib/napi/argv-strided-int8array2d -"20t",@stdlib/napi-argv-strided-int8array2d -"1cO",@stdlib/napi/argv-strided-uint16array -"1cP",@stdlib/napi-argv-strided-uint16array -"20u",@stdlib/napi/argv-strided-uint16array2d -"20v",@stdlib/napi-argv-strided-uint16array2d -"1cQ",@stdlib/napi/argv-strided-uint32array -"1cR",@stdlib/napi-argv-strided-uint32array -"20w",@stdlib/napi/argv-strided-uint32array2d -"20x",@stdlib/napi-argv-strided-uint32array2d -"1cS",@stdlib/napi/argv-strided-uint8array -"1cT",@stdlib/napi-argv-strided-uint8array -"20y",@stdlib/napi/argv-strided-uint8array2d -"20z",@stdlib/napi-argv-strided-uint8array2d -"1cU",@stdlib/napi/argv-uint16array -"1cV",@stdlib/napi-argv-uint16array -"1cW",@stdlib/napi/argv-uint32 -"1cX",@stdlib/napi-argv-uint32 -"1cY",@stdlib/napi/argv-uint32array -"1cZ",@stdlib/napi-argv-uint32array -"2l8",@stdlib/napi/argv-uint64 -"2l9",@stdlib/napi-argv-uint64 -"1ca",@stdlib/napi/argv-uint8array -"1cb",@stdlib/napi-argv-uint8array -"1cc",@stdlib/napi/argv -"1cd",@stdlib/napi-argv -"1vK",@stdlib/napi/create-complex-like -"1vL",@stdlib/napi-create-complex-like -"1vM",@stdlib/napi/create-double -"1vN",@stdlib/napi-create-double -"1vO",@stdlib/napi/create-int32 -"1vP",@stdlib/napi-create-int32 -"2lA",@stdlib/napi/create-int64 -"2lB",@stdlib/napi-create-int64 -"1vQ",@stdlib/napi/create-uint32 -"1vR",@stdlib/napi-create-uint32 -"2lC",@stdlib/napi/create-uint64 -"2lD",@stdlib/napi-create-uint64 -"1ce",@stdlib/napi/export -"1cf",@stdlib/napi-export -"1ch",@stdlib/napi -"2WQ",@stdlib/ndarray/any-by -"2WR",@stdlib/ndarray-any-by -"2WS",@stdlib/ndarray/any -"2WT",@stdlib/ndarray-any -"0hS",@stdlib/ndarray/array -"0hT",@stdlib/ndarray-array -"1q2",@stdlib/ndarray/at -"1q3",@stdlib/ndarray-at -"2VQ",@stdlib/ndarray/base/any-by -"2VR",@stdlib/ndarray-base-any-by -"2V4",@stdlib/ndarray/base/any -"2V5",@stdlib/ndarray-base-any -"2lE",@stdlib/ndarray/base/append-singleton-dimensions -"2lF",@stdlib/ndarray-base-append-singleton-dimensions -"0hU",@stdlib/ndarray/base/assert/is-allowed-data-type-cast -"0hV",@stdlib/ndarray-base-assert-is-allowed-data-type-cast -"1xm",@stdlib/ndarray/base/assert/is-boolean-data-type -"1xn",@stdlib/ndarray-base-assert-is-boolean-data-type -"2Fe",@stdlib/ndarray/base/assert/is-boolean-index-data-type -"2Ff",@stdlib/ndarray-base-assert-is-boolean-index-data-type -"0hW",@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape -"0hX",@stdlib/ndarray-base-assert-is-buffer-length-compatible-shape -"0hY",@stdlib/ndarray/base/assert/is-buffer-length-compatible -"0hZ",@stdlib/ndarray-base-assert-is-buffer-length-compatible -"0ha",@stdlib/ndarray/base/assert/is-casting-mode -"0hb",@stdlib/ndarray-base-assert-is-casting-mode -"0hc",@stdlib/ndarray/base/assert/is-column-major-contiguous -"0hd",@stdlib/ndarray-base-assert-is-column-major-contiguous -"25u",@stdlib/ndarray/base/assert/is-column-major-string -"25v",@stdlib/ndarray-base-assert-is-column-major-string -"0he",@stdlib/ndarray/base/assert/is-column-major -"0hf",@stdlib/ndarray-base-assert-is-column-major -"2Wo",@stdlib/ndarray/base/assert/is-complex-floating-point-data-type-char -"2Wp",@stdlib/ndarray-base-assert-is-complex-floating-point-data-type-char -"1ci",@stdlib/ndarray/base/assert/is-complex-floating-point-data-type -"1cj",@stdlib/ndarray-base-assert-is-complex-floating-point-data-type -"0hg",@stdlib/ndarray/base/assert/is-contiguous -"0hh",@stdlib/ndarray-base-assert-is-contiguous -"2W6",@stdlib/ndarray/base/assert/is-data-type-object -"2W7",@stdlib/ndarray-base-assert-is-data-type-object -"2OQ",@stdlib/ndarray/base/assert/is-data-type-string -"2OR",@stdlib/ndarray-base-assert-is-data-type-string -"0hi",@stdlib/ndarray/base/assert/is-data-type -"0hj",@stdlib/ndarray-base-assert-is-data-type -"2W8",@stdlib/ndarray/base/assert/is-equal-data-type -"2W9",@stdlib/ndarray-base-assert-is-equal-data-type -"1ck",@stdlib/ndarray/base/assert/is-floating-point-data-type -"1cl",@stdlib/ndarray-base-assert-is-floating-point-data-type -"2Fg",@stdlib/ndarray/base/assert/is-index-data-type -"2Fh",@stdlib/ndarray-base-assert-is-index-data-type -"0hk",@stdlib/ndarray/base/assert/is-index-mode -"0hl",@stdlib/ndarray-base-assert-is-index-mode -"2Fi",@stdlib/ndarray/base/assert/is-input-casting-policy -"2Fj",@stdlib/ndarray-base-assert-is-input-casting-policy -"1cm",@stdlib/ndarray/base/assert/is-integer-data-type -"1cn",@stdlib/ndarray-base-assert-is-integer-data-type -"2Fk",@stdlib/ndarray/base/assert/is-integer-index-data-type -"2Fl",@stdlib/ndarray-base-assert-is-integer-index-data-type -"2Fm",@stdlib/ndarray/base/assert/is-mask-index-data-type -"2Fn",@stdlib/ndarray-base-assert-is-mask-index-data-type -"1kE",@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast -"1kF",@stdlib/ndarray-base-assert-is-mostly-safe-data-type-cast -"1co",@stdlib/ndarray/base/assert/is-numeric-data-type -"1cp",@stdlib/ndarray-base-assert-is-numeric-data-type -"0hm",@stdlib/ndarray/base/assert/is-order -"0hn",@stdlib/ndarray-base-assert-is-order -"0ho",@stdlib/ndarray/base/assert/is-read-only -"0hp",@stdlib/ndarray-base-assert-is-read-only -"1cq",@stdlib/ndarray/base/assert/is-real-data-type -"1cr",@stdlib/ndarray-base-assert-is-real-data-type -"1cs",@stdlib/ndarray/base/assert/is-real-floating-point-data-type -"1ct",@stdlib/ndarray-base-assert-is-real-floating-point-data-type -"0hq",@stdlib/ndarray/base/assert/is-row-major-contiguous -"0hr",@stdlib/ndarray-base-assert-is-row-major-contiguous -"25w",@stdlib/ndarray/base/assert/is-row-major-string -"25x",@stdlib/ndarray-base-assert-is-row-major-string -"0hs",@stdlib/ndarray/base/assert/is-row-major -"0ht",@stdlib/ndarray-base-assert-is-row-major -"0hu",@stdlib/ndarray/base/assert/is-safe-data-type-cast -"0hv",@stdlib/ndarray-base-assert-is-safe-data-type-cast -"0hw",@stdlib/ndarray/base/assert/is-same-kind-data-type-cast -"0hx",@stdlib/ndarray-base-assert-is-same-kind-data-type-cast -"2AS",@stdlib/ndarray/base/assert/is-scalar-mostly-safe-compatible -"2AT",@stdlib/ndarray-base-assert-is-scalar-mostly-safe-compatible -"1cu",@stdlib/ndarray/base/assert/is-signed-integer-data-type -"1cv",@stdlib/ndarray-base-assert-is-signed-integer-data-type -"0hy",@stdlib/ndarray/base/assert/is-single-segment-compatible -"0hz",@stdlib/ndarray-base-assert-is-single-segment-compatible -"2L4",@stdlib/ndarray/base/assert/is-struct-data-type -"2L5",@stdlib/ndarray-base-assert-is-struct-data-type -"1cw",@stdlib/ndarray/base/assert/is-unsigned-integer-data-type -"1cx",@stdlib/ndarray-base-assert-is-unsigned-integer-data-type -"0i0",@stdlib/ndarray/base/assert -"0i1",@stdlib/ndarray-base-assert -"2lG",@stdlib/ndarray/base/assign-scalar -"2lH",@stdlib/ndarray-base-assign-scalar -"1kG",@stdlib/ndarray/base/assign -"1kH",@stdlib/ndarray-base-assign -"2lI",@stdlib/ndarray/base/atleast1d -"2lJ",@stdlib/ndarray-base-atleast1d -"2lK",@stdlib/ndarray/base/atleast2d -"2lL",@stdlib/ndarray-base-atleast2d -"2lM",@stdlib/ndarray/base/atleast3d -"2lN",@stdlib/ndarray-base-atleast3d -"2lO",@stdlib/ndarray/base/atleastnd -"2lP",@stdlib/ndarray-base-atleastnd -"2VS",@stdlib/ndarray/base/binary-input-casting-dtype -"2VT",@stdlib/ndarray-base-binary-input-casting-dtype -"1cy",@stdlib/ndarray/base/binary-loop-interchange-order -"1cz",@stdlib/ndarray-base-binary-loop-interchange-order -"2Gi",@stdlib/ndarray/base/binary-output-dtype -"2Gj",@stdlib/ndarray-base-binary-output-dtype -"2VU",@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory -"2VV",@stdlib/ndarray-base-binary-reduce-strided1d-dispatch-factory -"2VW",@stdlib/ndarray/base/binary-reduce-strided1d-dispatch -"2VX",@stdlib/ndarray-base-binary-reduce-strided1d-dispatch -"2Tk",@stdlib/ndarray/base/binary-reduce-strided1d -"2Tl",@stdlib/ndarray-base-binary-reduce-strided1d -"1d0",@stdlib/ndarray/base/binary-tiling-block-size -"1d1",@stdlib/ndarray-base-binary-tiling-block-size -"2Gk",@stdlib/ndarray/base/binary -"2Gl",@stdlib/ndarray-base-binary -"0i2",@stdlib/ndarray/base/bind2vind -"0i3",@stdlib/ndarray-base-bind2vind -"2VY",@stdlib/ndarray/base/broadcast-array-except-dimensions -"2VZ",@stdlib/ndarray-base-broadcast-array-except-dimensions -"0i4",@stdlib/ndarray/base/broadcast-array -"0i5",@stdlib/ndarray-base-broadcast-array -"1nU",@stdlib/ndarray/base/broadcast-arrays -"1nV",@stdlib/ndarray-base-broadcast-arrays -"2lQ",@stdlib/ndarray/base/broadcast-scalar-like -"2lR",@stdlib/ndarray-base-broadcast-scalar-like -"1d2",@stdlib/ndarray/base/broadcast-scalar -"1d3",@stdlib/ndarray-base-broadcast-scalar -"0i6",@stdlib/ndarray/base/broadcast-shapes -"0i7",@stdlib/ndarray-base-broadcast-shapes -"0i8",@stdlib/ndarray/base/buffer-ctors -"0i9",@stdlib/ndarray-base-buffer-ctors -"0iA",@stdlib/ndarray/base/buffer-dtype-enum -"0iB",@stdlib/ndarray-base-buffer-dtype-enum -"0iC",@stdlib/ndarray/base/buffer-dtype -"0iD",@stdlib/ndarray-base-buffer-dtype -"0iE",@stdlib/ndarray/base/buffer -"0iF",@stdlib/ndarray-base-buffer -"0iG",@stdlib/ndarray/base/bytes-per-element -"0iH",@stdlib/ndarray-base-bytes-per-element -"0iI",@stdlib/ndarray/base/char2dtype -"0iJ",@stdlib/ndarray-base-char2dtype -"0iK",@stdlib/ndarray/base/clamp-index -"0iL",@stdlib/ndarray-base-clamp-index -"2Xw",@stdlib/ndarray/base/complement-shape -"2Xx",@stdlib/ndarray-base-complement-shape -"2lS",@stdlib/ndarray/base/consensus-order -"2lT",@stdlib/ndarray-base-consensus-order -"2Wq",@stdlib/ndarray/base/copy -"2Wr",@stdlib/ndarray-base-copy -"2Ie",@stdlib/ndarray/base/count-falsy -"2If",@stdlib/ndarray-base-count-falsy -"2Ig",@stdlib/ndarray/base/count-if -"2Ih",@stdlib/ndarray-base-count-if -"2Ii",@stdlib/ndarray/base/count-truthy -"2Ij",@stdlib/ndarray-base-count-truthy -"0iM",@stdlib/ndarray/base/ctor -"0iN",@stdlib/ndarray-base-ctor -"1kI",@stdlib/ndarray/base/data-buffer -"1kJ",@stdlib/ndarray-base-data-buffer -"2lU",@stdlib/ndarray/base/descriptor -"2lV",@stdlib/ndarray-base-descriptor -"2lW",@stdlib/ndarray/base/diagonal -"2lX",@stdlib/ndarray-base-diagonal -"2WA",@stdlib/ndarray/base/dtype-alignment -"2WB",@stdlib/ndarray-base-dtype-alignment -"0iO",@stdlib/ndarray/base/dtype-char -"0iP",@stdlib/ndarray-base-dtype-char -"2Ws",@stdlib/ndarray/base/dtype-chars -"2Wt",@stdlib/ndarray-base-dtype-chars -"0iQ",@stdlib/ndarray/base/dtype-desc -"0iR",@stdlib/ndarray-base-dtype-desc -"0iS",@stdlib/ndarray/base/dtype-enum2str -"0iT",@stdlib/ndarray-base-dtype-enum2str -"2WU",@stdlib/ndarray/base/dtype-enums -"2WV",@stdlib/ndarray-base-dtype-enums -"2WW",@stdlib/ndarray/base/dtype-objects -"2WX",@stdlib/ndarray-base-dtype-objects -"0iU",@stdlib/ndarray/base/dtype-resolve-enum -"0iV",@stdlib/ndarray-base-dtype-resolve-enum -"0iW",@stdlib/ndarray/base/dtype-resolve-str -"0iX",@stdlib/ndarray-base-dtype-resolve-str -"0iY",@stdlib/ndarray/base/dtype-str2enum -"0iZ",@stdlib/ndarray-base-dtype-str2enum -"2WY",@stdlib/ndarray/base/dtype-strings -"2WZ",@stdlib/ndarray-base-dtype-strings -"1kK",@stdlib/ndarray/base/dtype -"1kL",@stdlib/ndarray-base-dtype -"0ia",@stdlib/ndarray/base/dtype2c -"0ib",@stdlib/ndarray-base-dtype2c -"2WC",@stdlib/ndarray/base/dtypes2enums -"2WD",@stdlib/ndarray-base-dtypes2enums -"0ic",@stdlib/ndarray/base/dtypes2signatures -"0id",@stdlib/ndarray-base-dtypes2signatures -"2lY",@stdlib/ndarray/base/dtypes2strings -"2lZ",@stdlib/ndarray-base-dtypes2strings -"1d4",@stdlib/ndarray/base/empty-like -"1d5",@stdlib/ndarray-base-empty-like -"1d6",@stdlib/ndarray/base/empty -"1d7",@stdlib/ndarray-base-empty -"2Eq",@stdlib/ndarray/base/every-by -"2Er",@stdlib/ndarray-base-every-by -"2AU",@stdlib/ndarray/base/every -"2AV",@stdlib/ndarray-base-every -"0ie",@stdlib/ndarray/base/expand-dimensions -"0if",@stdlib/ndarray-base-expand-dimensions -"2la",@stdlib/ndarray/base/falses-like -"2lb",@stdlib/ndarray-base-falses-like -"2lc",@stdlib/ndarray/base/falses -"2ld",@stdlib/ndarray-base-falses -"2AW",@stdlib/ndarray/base/fill-by -"2AX",@stdlib/ndarray-base-fill-by -"2le",@stdlib/ndarray/base/fill-diagonal -"2lf",@stdlib/ndarray-base-fill-diagonal -"2Va",@stdlib/ndarray/base/find -"2Vb",@stdlib/ndarray-base-find -"1ns",@stdlib/ndarray/base/flag -"1nt",@stdlib/ndarray-base-flag -"1nW",@stdlib/ndarray/base/flags -"1nX",@stdlib/ndarray-base-flags -"2Wu",@stdlib/ndarray/base/flatten-shape-from -"2Wv",@stdlib/ndarray-base-flatten-shape-from -"2Vc",@stdlib/ndarray/base/flatten-shape -"2Vd",@stdlib/ndarray-base-flatten-shape -"1l4",@stdlib/ndarray/base/fliplr -"1l5",@stdlib/ndarray-base-fliplr -"1l6",@stdlib/ndarray/base/flipud -"1l7",@stdlib/ndarray-base-flipud -"1yW",@stdlib/ndarray/base/for-each -"1yX",@stdlib/ndarray-base-for-each -"2Tm",@stdlib/ndarray/base/from-array -"2Tn",@stdlib/ndarray-base-from-array -"24o",@stdlib/ndarray/base/from-scalar-like -"24p",@stdlib/ndarray-base-from-scalar-like -"0ig",@stdlib/ndarray/base/from-scalar -"0ih",@stdlib/ndarray-base-from-scalar -"2lg",@stdlib/ndarray/base/full-by -"2lh",@stdlib/ndarray-base-full-by -"2li",@stdlib/ndarray/base/full -"2lj",@stdlib/ndarray-base-full -"0ii",@stdlib/ndarray/base/function-object -"0ij",@stdlib/ndarray-base-function-object -"2Dy",@stdlib/ndarray/base/includes -"2Dz",@stdlib/ndarray-base-includes -"0ik",@stdlib/ndarray/base/ind -"0il",@stdlib/ndarray-base-ind -"0im",@stdlib/ndarray/base/ind2sub -"0in",@stdlib/ndarray-base-ind2sub -"0io",@stdlib/ndarray/base/iteration-order -"0ip",@stdlib/ndarray-base-iteration-order -"2H6",@stdlib/ndarray/base/loop-interchange-order -"2H7",@stdlib/ndarray-base-loop-interchange-order -"1zU",@stdlib/ndarray/base/map -"1zV",@stdlib/ndarray-base-map -"0iq",@stdlib/ndarray/base/max-view-buffer-index -"0ir",@stdlib/ndarray-base-max-view-buffer-index -"2lk",@stdlib/ndarray/base/maybe-broadcast-array-except-dimensions -"2ll",@stdlib/ndarray-base-maybe-broadcast-array-except-dimensions -"0is",@stdlib/ndarray/base/maybe-broadcast-array -"0it",@stdlib/ndarray-base-maybe-broadcast-array -"1nY",@stdlib/ndarray/base/maybe-broadcast-arrays -"1nZ",@stdlib/ndarray-base-maybe-broadcast-arrays -"0iu",@stdlib/ndarray/base/meta-data-props -"0iv",@stdlib/ndarray-base-meta-data-props -"24q",@stdlib/ndarray/base/min-signed-integer-dtype -"24r",@stdlib/ndarray-base-min-signed-integer-dtype -"24s",@stdlib/ndarray/base/min-unsigned-integer-dtype -"24t",@stdlib/ndarray-base-min-unsigned-integer-dtype -"0iw",@stdlib/ndarray/base/min-view-buffer-index -"0ix",@stdlib/ndarray-base-min-view-buffer-index -"0iy",@stdlib/ndarray/base/minmax-view-buffer-index -"0iz",@stdlib/ndarray-base-minmax-view-buffer-index -"2lm",@stdlib/ndarray/base/nans-like -"2ln",@stdlib/ndarray-base-nans-like -"2lo",@stdlib/ndarray/base/nans -"2lp",@stdlib/ndarray-base-nans -"0j0",@stdlib/ndarray/base/napi/addon-arguments -"0j1",@stdlib/ndarray-base-napi-addon-arguments -"0j2",@stdlib/ndarray/base/napi/dtype-string-to-dtype -"0j3",@stdlib/ndarray-base-napi-dtype-string-to-dtype -"0j4",@stdlib/ndarray/base/napi -"0j5",@stdlib/ndarray-base-napi -"0j6",@stdlib/ndarray/base/napi/typedarray-type-to-dtype -"0j7",@stdlib/ndarray-base-napi-typedarray-type-to-dtype -"0j8",@stdlib/ndarray/base/napi/unary -"0j9",@stdlib/ndarray-base-napi-unary -"2lq",@stdlib/ndarray/base/ndarraylike2descriptor -"2lr",@stdlib/ndarray-base-ndarraylike2descriptor -"1zW",@stdlib/ndarray/base/ndarraylike2ndarray -"1zX",@stdlib/ndarray-base-ndarraylike2ndarray -"0jA",@stdlib/ndarray/base/ndarraylike2object -"0jB",@stdlib/ndarray-base-ndarraylike2object -"2OS",@stdlib/ndarray/base/ndarraylike2scalar -"2OT",@stdlib/ndarray-base-ndarraylike2scalar -"1jc",@stdlib/ndarray/base/ndims -"1jd",@stdlib/ndarray-base-ndims -"1je",@stdlib/ndarray/base/next-cartesian-index -"1jf",@stdlib/ndarray-base-next-cartesian-index -"0jC",@stdlib/ndarray/base/nonsingleton-dimensions -"0jD",@stdlib/ndarray-base-nonsingleton-dimensions -"1l8",@stdlib/ndarray/base/normalize-index -"1l9",@stdlib/ndarray-base-normalize-index -"25y",@stdlib/ndarray/base/normalize-indices -"25z",@stdlib/ndarray-base-normalize-indices -"1d8",@stdlib/ndarray/base/nullary-loop-interchange-order -"1d9",@stdlib/ndarray-base-nullary-loop-interchange-order -"2WE",@stdlib/ndarray/base/nullary-strided1d-dispatch-factory -"2WF",@stdlib/ndarray-base-nullary-strided1d-dispatch-factory -"2Ve",@stdlib/ndarray/base/nullary-strided1d-dispatch -"2Vf",@stdlib/ndarray-base-nullary-strided1d-dispatch -"2V6",@stdlib/ndarray/base/nullary-strided1d -"2V7",@stdlib/ndarray-base-nullary-strided1d -"1dA",@stdlib/ndarray/base/nullary-tiling-block-size -"1dB",@stdlib/ndarray-base-nullary-tiling-block-size -"1dC",@stdlib/ndarray/base/nullary -"1dD",@stdlib/ndarray-base-nullary -"2ls",@stdlib/ndarray/base/nulls-like -"2lt",@stdlib/ndarray-base-nulls-like -"2lu",@stdlib/ndarray/base/nulls -"2lv",@stdlib/ndarray-base-nulls -"1nu",@stdlib/ndarray/base/numel-dimension -"1nv",@stdlib/ndarray-base-numel-dimension -"0jE",@stdlib/ndarray/base/numel -"0jF",@stdlib/ndarray-base-numel -"1jg",@stdlib/ndarray/base/offset -"1jh",@stdlib/ndarray-base-offset -"2lw",@stdlib/ndarray/base/ones-like -"2lx",@stdlib/ndarray-base-ones-like -"2ly",@stdlib/ndarray/base/ones -"2lz",@stdlib/ndarray-base-ones -"1kM",@stdlib/ndarray/base/order -"1kN",@stdlib/ndarray-base-order -"2Gm",@stdlib/ndarray/base/output-dtype -"2Gn",@stdlib/ndarray-base-output-dtype -"2m0",@stdlib/ndarray/base/output-order -"2m1",@stdlib/ndarray-base-output-order -"1dE",@stdlib/ndarray/base/output-policy-enum2str -"1dF",@stdlib/ndarray-base-output-policy-enum2str -"1dG",@stdlib/ndarray/base/output-policy-resolve-enum -"1dH",@stdlib/ndarray-base-output-policy-resolve-enum -"1dI",@stdlib/ndarray/base/output-policy-resolve-str -"1dJ",@stdlib/ndarray-base-output-policy-resolve-str -"1dK",@stdlib/ndarray/base/output-policy-str2enum -"1dL",@stdlib/ndarray-base-output-policy-str2enum -"0jG",@stdlib/ndarray/base -"0jH",@stdlib/ndarray-base -"2Wa",@stdlib/ndarray/base/pop -"2Wb",@stdlib/ndarray-base-pop -"0jI",@stdlib/ndarray/base/prepend-singleton-dimensions -"0jJ",@stdlib/ndarray-base-prepend-singleton-dimensions -"2Go",@stdlib/ndarray/base/promote-dtypes -"2Gp",@stdlib/ndarray-base-promote-dtypes -"2m2",@stdlib/ndarray/base/quaternary-loop-interchange-order -"2m3",@stdlib/ndarray-base-quaternary-loop-interchange-order -"2m4",@stdlib/ndarray/base/quaternary-tiling-block-size -"2m5",@stdlib/ndarray-base-quaternary-tiling-block-size -"2m6",@stdlib/ndarray/base/quinary-loop-interchange-order -"2m7",@stdlib/ndarray-base-quinary-loop-interchange-order -"2m8",@stdlib/ndarray/base/quinary-tiling-block-size -"2m9",@stdlib/ndarray-base-quinary-tiling-block-size -"2mA",@stdlib/ndarray/base/reinterpret-boolean -"2mB",@stdlib/ndarray-base-reinterpret-boolean -"2mC",@stdlib/ndarray/base/reinterpret-complex -"2mD",@stdlib/ndarray-base-reinterpret-complex -"2mE",@stdlib/ndarray/base/reinterpret-complex128 -"2mF",@stdlib/ndarray-base-reinterpret-complex128 -"2mG",@stdlib/ndarray/base/reinterpret-complex64 -"2mH",@stdlib/ndarray-base-reinterpret-complex64 -"0jK",@stdlib/ndarray/base/remove-singleton-dimensions -"0jL",@stdlib/ndarray-base-remove-singleton-dimensions -"1lA",@stdlib/ndarray/base/reverse-dimension -"1lB",@stdlib/ndarray-base-reverse-dimension -"2mI",@stdlib/ndarray/base/reverse-dimensions -"2mJ",@stdlib/ndarray-base-reverse-dimensions -"1kO",@stdlib/ndarray/base/reverse -"1kP",@stdlib/ndarray-base-reverse -"2mK",@stdlib/ndarray/base/rot180 -"2mL",@stdlib/ndarray-base-rot180 -"2mM",@stdlib/ndarray/base/rot90 -"2mN",@stdlib/ndarray-base-rot90 -"2mO",@stdlib/ndarray/base/rotl90 -"2mP",@stdlib/ndarray-base-rotl90 -"2mQ",@stdlib/ndarray/base/rotr90 -"2mR",@stdlib/ndarray-base-rotr90 -"0jM",@stdlib/ndarray/base/serialize-meta-data -"0jN",@stdlib/ndarray-base-serialize-meta-data -"1ji",@stdlib/ndarray/base/shape -"1jj",@stdlib/ndarray-base-shape -"0jO",@stdlib/ndarray/base/shape2strides -"0jP",@stdlib/ndarray-base-shape2strides -"2Wc",@stdlib/ndarray/base/shift -"2Wd",@stdlib/ndarray-base-shift -"0jQ",@stdlib/ndarray/base/singleton-dimensions -"0jR",@stdlib/ndarray-base-singleton-dimensions -"1jO",@stdlib/ndarray/base/slice-assign -"1jP",@stdlib/ndarray-base-slice-assign -"1lC",@stdlib/ndarray/base/slice-dimension-from -"1lD",@stdlib/ndarray-base-slice-dimension-from -"1lE",@stdlib/ndarray/base/slice-dimension-to -"1lF",@stdlib/ndarray-base-slice-dimension-to -"1kQ",@stdlib/ndarray/base/slice-dimension -"1kR",@stdlib/ndarray-base-slice-dimension -"1lG",@stdlib/ndarray/base/slice-from -"1lH",@stdlib/ndarray-base-slice-from -"1lI",@stdlib/ndarray/base/slice-to -"1lJ",@stdlib/ndarray-base-slice-to -"1jQ",@stdlib/ndarray/base/slice -"1jR",@stdlib/ndarray-base-slice -"2Ik",@stdlib/ndarray/base/some-by -"2Il",@stdlib/ndarray-base-some-by -"2Ww",@stdlib/ndarray/base/some -"2Wx",@stdlib/ndarray-base-some -"1mg",@stdlib/ndarray/base/stride -"1mh",@stdlib/ndarray-base-stride -"1jk",@stdlib/ndarray/base/strides -"1jl",@stdlib/ndarray-base-strides -"0jS",@stdlib/ndarray/base/strides2offset -"0jT",@stdlib/ndarray-base-strides2offset -"0jU",@stdlib/ndarray/base/strides2order -"0jV",@stdlib/ndarray-base-strides2order -"0jW",@stdlib/ndarray/base/sub2ind -"0jX",@stdlib/ndarray-base-sub2ind -"2mS",@stdlib/ndarray/base/ternary-loop-interchange-order -"2mT",@stdlib/ndarray-base-ternary-loop-interchange-order -"2mU",@stdlib/ndarray/base/ternary-output-dtype -"2mV",@stdlib/ndarray-base-ternary-output-dtype -"2mW",@stdlib/ndarray/base/ternary-tiling-block-size -"2mX",@stdlib/ndarray-base-ternary-tiling-block-size -"2mY",@stdlib/ndarray/base/ternary -"2mZ",@stdlib/ndarray-base-ternary -"2ma",@stdlib/ndarray/base/tile -"2mb",@stdlib/ndarray-base-tile -"2mc",@stdlib/ndarray/base/tiling-block-size -"2md",@stdlib/ndarray-base-tiling-block-size -"0jY",@stdlib/ndarray/base/to-array -"0jZ",@stdlib/ndarray-base-to-array -"2a8",@stdlib/ndarray/base/to-flippedlr -"2a9",@stdlib/ndarray-base-to-flippedlr -"2aA",@stdlib/ndarray/base/to-flippedud -"2aB",@stdlib/ndarray-base-to-flippedud -"2me",@stdlib/ndarray/base/to-reversed-dimension -"2mf",@stdlib/ndarray-base-to-reversed-dimension -"2mg",@stdlib/ndarray/base/to-reversed-dimensions -"2mh",@stdlib/ndarray-base-to-reversed-dimensions -"2mi",@stdlib/ndarray/base/to-rot180 -"2mj",@stdlib/ndarray-base-to-rot180 -"2mk",@stdlib/ndarray/base/to-rot90 -"2ml",@stdlib/ndarray-base-to-rot90 -"2mm",@stdlib/ndarray/base/to-rotl90 -"2mn",@stdlib/ndarray-base-to-rotl90 -"2mo",@stdlib/ndarray/base/to-rotr90 -"2mp",@stdlib/ndarray-base-to-rotr90 -"2mq",@stdlib/ndarray/base/to-transposed -"2mr",@stdlib/ndarray-base-to-transposed -"2ms",@stdlib/ndarray/base/to-unflattened -"2mt",@stdlib/ndarray-base-to-unflattened -"0ja",@stdlib/ndarray/base/transpose -"0jb",@stdlib/ndarray-base-transpose -"2mu",@stdlib/ndarray/base/trues-like -"2mv",@stdlib/ndarray-base-trues-like -"2mw",@stdlib/ndarray/base/trues -"2mx",@stdlib/ndarray-base-trues -"26G",@stdlib/ndarray/base/unary-accumulate -"26H",@stdlib/ndarray-base-unary-accumulate -"2Vg",@stdlib/ndarray/base/unary-addon-dispatch -"2Vh",@stdlib/ndarray-base-unary-addon-dispatch -"1dM",@stdlib/ndarray/base/unary-by -"1dN",@stdlib/ndarray-base-unary-by -"2Fo",@stdlib/ndarray/base/unary-input-casting-dtype -"2Fp",@stdlib/ndarray-base-unary-input-casting-dtype -"1dO",@stdlib/ndarray/base/unary-loop-interchange-order -"1dP",@stdlib/ndarray-base-unary-loop-interchange-order -"1dQ",@stdlib/ndarray/base/unary-output-dtype -"1dR",@stdlib/ndarray-base-unary-output-dtype -"2OU",@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct -"2OV",@stdlib/ndarray-base-unary-reduce-strided1d-assign-struct -"2Im",@stdlib/ndarray/base/unary-reduce-strided1d-by -"2In",@stdlib/ndarray-base-unary-reduce-strided1d-by -"2Io",@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory -"2Ip",@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by-factory -"2Iq",@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by -"2Ir",@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by -"2Fq",@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory -"2Fr",@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-factory -"2Fs",@stdlib/ndarray/base/unary-reduce-strided1d-dispatch -"2Ft",@stdlib/ndarray-base-unary-reduce-strided1d-dispatch -"2Es",@stdlib/ndarray/base/unary-reduce-strided1d -"2Et",@stdlib/ndarray-base-unary-reduce-strided1d -"2Is",@stdlib/ndarray/base/unary-reduce-subarray-by -"2It",@stdlib/ndarray-base-unary-reduce-subarray-by -"2AY",@stdlib/ndarray/base/unary-reduce-subarray -"2AZ",@stdlib/ndarray-base-unary-reduce-subarray -"2Fu",@stdlib/ndarray/base/unary-strided1d-dispatch-factory -"2Fv",@stdlib/ndarray-base-unary-strided1d-dispatch-factory -"2Fw",@stdlib/ndarray/base/unary-strided1d-dispatch -"2Fx",@stdlib/ndarray-base-unary-strided1d-dispatch -"2Fy",@stdlib/ndarray/base/unary-strided1d -"2Fz",@stdlib/ndarray-base-unary-strided1d -"1dS",@stdlib/ndarray/base/unary-tiling-block-size -"1dT",@stdlib/ndarray-base-unary-tiling-block-size -"0jc",@stdlib/ndarray/base/unary -"0jd",@stdlib/ndarray-base-unary -"2my",@stdlib/ndarray/base/unflatten-shape -"2mz",@stdlib/ndarray-base-unflatten-shape -"2n0",@stdlib/ndarray/base/unflatten -"2n1",@stdlib/ndarray-base-unflatten -"0je",@stdlib/ndarray/base/vind2bind -"0jf",@stdlib/ndarray-base-vind2bind -"0jg",@stdlib/ndarray/base/wrap-index -"0jh",@stdlib/ndarray-base-wrap-index -"0ji",@stdlib/ndarray/base/zeros-like -"0jj",@stdlib/ndarray-base-zeros-like -"0jk",@stdlib/ndarray/base/zeros -"0jl",@stdlib/ndarray-base-zeros -"2To",@stdlib/ndarray/base/zip2views1d -"2Tp",@stdlib/ndarray-base-zip2views1d -"1jm",@stdlib/ndarray/broadcast-array -"1jn",@stdlib/ndarray-broadcast-array -"1na",@stdlib/ndarray/broadcast-arrays -"1nb",@stdlib/ndarray-broadcast-arrays -"2n2",@stdlib/ndarray/broadcast-scalar-like -"2n3",@stdlib/ndarray-broadcast-scalar-like -"2n4",@stdlib/ndarray/broadcast-scalar -"2n5",@stdlib/ndarray-broadcast-scalar -"0jm",@stdlib/ndarray/casting-modes -"0jn",@stdlib/ndarray-casting-modes -"2n6",@stdlib/ndarray/colcat -"2n7",@stdlib/ndarray-colcat -"2Wy",@stdlib/ndarray/concat -"2Wz",@stdlib/ndarray-concat -"2aC",@stdlib/ndarray/concat1d -"2aD",@stdlib/ndarray-concat1d -"2Xy",@stdlib/ndarray/copy -"2Xz",@stdlib/ndarray-copy -"2Iu",@stdlib/ndarray/count-falsy -"2Iv",@stdlib/ndarray-count-falsy -"2Iw",@stdlib/ndarray/count-if -"2Ix",@stdlib/ndarray-count-if -"2Iy",@stdlib/ndarray/count-truthy -"2Iz",@stdlib/ndarray-count-truthy -"0jo",@stdlib/ndarray/ctor -"0jp",@stdlib/ndarray-ctor -"1kS",@stdlib/ndarray/data-buffer -"1kT",@stdlib/ndarray-data-buffer -"1dU",@stdlib/ndarray/defaults -"1dV",@stdlib/ndarray-defaults -"2n8",@stdlib/ndarray/diagonal -"2n9",@stdlib/ndarray-diagonal -"1dW",@stdlib/ndarray/dispatch-by -"1dX",@stdlib/ndarray-dispatch-by -"0jq",@stdlib/ndarray/dispatch -"0jr",@stdlib/ndarray-dispatch -"2WG",@stdlib/ndarray/dtype-ctor -"2WH",@stdlib/ndarray-dtype-ctor -"1kU",@stdlib/ndarray/dtype -"1kV",@stdlib/ndarray-dtype -"0js",@stdlib/ndarray/dtypes -"0jt",@stdlib/ndarray-dtypes -"1dY",@stdlib/ndarray/empty-like -"1dZ",@stdlib/ndarray-empty-like -"1da",@stdlib/ndarray/empty -"1db",@stdlib/ndarray-empty -"2nA",@stdlib/ndarray/every-by -"2nB",@stdlib/ndarray-every-by -"2E0",@stdlib/ndarray/every -"2E1",@stdlib/ndarray-every -"2nC",@stdlib/ndarray/falses-like -"2nD",@stdlib/ndarray-falses-like -"2nE",@stdlib/ndarray/falses -"2nF",@stdlib/ndarray-falses -"1j6",@stdlib/ndarray/fancy -"1j7",@stdlib/ndarray-fancy -"2Aa",@stdlib/ndarray/fill-by -"2Ab",@stdlib/ndarray-fill-by -"2Vi",@stdlib/ndarray/fill-slice -"2Vj",@stdlib/ndarray-fill-slice -"2Ac",@stdlib/ndarray/fill -"2Ad",@stdlib/ndarray-fill -"24u",@stdlib/ndarray/filter-map -"24v",@stdlib/ndarray-filter-map -"24w",@stdlib/ndarray/filter -"24x",@stdlib/ndarray-filter -"2nG",@stdlib/ndarray/find-last -"2nH",@stdlib/ndarray-find-last -"2X0",@stdlib/ndarray/find -"2X1",@stdlib/ndarray-find -"2nI",@stdlib/ndarray/first -"2nJ",@stdlib/ndarray-first -"1nw",@stdlib/ndarray/flag -"1nx",@stdlib/ndarray-flag -"1ny",@stdlib/ndarray/flags -"1nz",@stdlib/ndarray-flags -"2WI",@stdlib/ndarray/flatten-by -"2WJ",@stdlib/ndarray-flatten-by -"2nK",@stdlib/ndarray/flatten-from-by -"2nL",@stdlib/ndarray-flatten-from-by -"2X2",@stdlib/ndarray/flatten-from -"2X3",@stdlib/ndarray-flatten-from -"2Vk",@stdlib/ndarray/flatten -"2Vl",@stdlib/ndarray-flatten -"2aE",@stdlib/ndarray/fliplr -"2aF",@stdlib/ndarray-fliplr -"2aG",@stdlib/ndarray/flipud -"2aH",@stdlib/ndarray-flipud -"24y",@stdlib/ndarray/for-each -"24z",@stdlib/ndarray-for-each -"2nM",@stdlib/ndarray/from-scalar-like -"2nN",@stdlib/ndarray-from-scalar-like -"0ju",@stdlib/ndarray/from-scalar -"0jv",@stdlib/ndarray-from-scalar -"2nO",@stdlib/ndarray/hconcat -"2nP",@stdlib/ndarray-hconcat -"2E2",@stdlib/ndarray/includes -"2E3",@stdlib/ndarray-includes -"0jw",@stdlib/ndarray/ind2sub -"0jx",@stdlib/ndarray-ind2sub -"0jy",@stdlib/ndarray/index-modes -"0jz",@stdlib/ndarray-index-modes -"2G0",@stdlib/ndarray/input-casting-policies -"2G1",@stdlib/ndarray-input-casting-policies -"1lK",@stdlib/ndarray/iter/column-entries -"1lL",@stdlib/ndarray-iter-column-entries -"1jo",@stdlib/ndarray/iter/columns -"1jp",@stdlib/ndarray-iter-columns -"1jq",@stdlib/ndarray/iter/entries -"1jr",@stdlib/ndarray-iter-entries -"1js",@stdlib/ndarray/iter/indices -"1jt",@stdlib/ndarray-iter-indices -"1zY",@stdlib/ndarray/iter/interleave-subarrays -"1zZ",@stdlib/ndarray-iter-interleave-subarrays -"1lM",@stdlib/ndarray/iter/matrices -"1lN",@stdlib/ndarray-iter-matrices -"1lO",@stdlib/ndarray/iter/matrix-entries -"1lP",@stdlib/ndarray-iter-matrix-entries -"1ju",@stdlib/ndarray/iter -"1jv",@stdlib/ndarray-iter -"1lQ",@stdlib/ndarray/iter/row-entries -"1lR",@stdlib/ndarray-iter-row-entries -"1jw",@stdlib/ndarray/iter/rows -"1jx",@stdlib/ndarray-iter-rows -"1za",@stdlib/ndarray/iter/select-dimension -"1zb",@stdlib/ndarray-iter-select-dimension -"1zc",@stdlib/ndarray/iter/stacks -"1zd",@stdlib/ndarray-iter-stacks -"1ze",@stdlib/ndarray/iter/subarrays -"1zf",@stdlib/ndarray-iter-subarrays -"1jy",@stdlib/ndarray/iter/to-array-each -"1jz",@stdlib/ndarray-iter-to-array-each -"1k0",@stdlib/ndarray/iter/values -"1k1",@stdlib/ndarray-iter-values -"2nQ",@stdlib/ndarray/last -"2nR",@stdlib/ndarray-last -"1k2",@stdlib/ndarray/maybe-broadcast-array -"1k3",@stdlib/ndarray-maybe-broadcast-array -"1nc",@stdlib/ndarray/maybe-broadcast-arrays -"1nd",@stdlib/ndarray-maybe-broadcast-arrays -"0k0",@stdlib/ndarray/min-dtype -"0k1",@stdlib/ndarray-min-dtype -"1kW",@stdlib/ndarray/mostly-safe-casts -"1kX",@stdlib/ndarray-mostly-safe-casts -"2nS",@stdlib/ndarray/nans-like -"2nT",@stdlib/ndarray-nans-like -"2nU",@stdlib/ndarray/nans -"2nV",@stdlib/ndarray-nans -"1zg",@stdlib/ndarray/ndarraylike2ndarray -"1zh",@stdlib/ndarray-ndarraylike2ndarray -"2nW",@stdlib/ndarray/ndarraylike2scalar -"2nX",@stdlib/ndarray-ndarraylike2scalar -"1k4",@stdlib/ndarray/ndims -"1k5",@stdlib/ndarray-ndims -"0k2",@stdlib/ndarray/next-dtype -"0k3",@stdlib/ndarray-next-dtype -"1o0",@stdlib/ndarray/numel-dimension -"1o1",@stdlib/ndarray-numel-dimension -"1k6",@stdlib/ndarray/numel -"1k7",@stdlib/ndarray-numel -"1k8",@stdlib/ndarray/offset -"1k9",@stdlib/ndarray-offset -"2nY",@stdlib/ndarray/ones-like -"2nZ",@stdlib/ndarray-ones-like -"2na",@stdlib/ndarray/ones -"2nb",@stdlib/ndarray-ones -"1kY",@stdlib/ndarray/order -"1kZ",@stdlib/ndarray-order -"0k4",@stdlib/ndarray/orders -"0k5",@stdlib/ndarray-orders -"1dc",@stdlib/ndarray/output-dtype-policies -"1dd",@stdlib/ndarray-output-dtype-policies -"0k7",@stdlib/ndarray -"2X4",@stdlib/ndarray/pop -"2X5",@stdlib/ndarray-pop -"2nc",@stdlib/ndarray/prepend-singleton-dimensions -"2nd",@stdlib/ndarray-prepend-singleton-dimensions -"0k8",@stdlib/ndarray/promotion-rules -"0k9",@stdlib/ndarray-promotion-rules -"2ne",@stdlib/ndarray/push -"2nf",@stdlib/ndarray-push -"2ng",@stdlib/ndarray/remove-singleton-dimensions -"2nh",@stdlib/ndarray-remove-singleton-dimensions -"2X6",@stdlib/ndarray/reverse-dimension -"2X7",@stdlib/ndarray-reverse-dimension -"2ni",@stdlib/ndarray/reverse-dimensions -"2nj",@stdlib/ndarray-reverse-dimensions -"2X8",@stdlib/ndarray/reverse -"2X9",@stdlib/ndarray-reverse -"2nk",@stdlib/ndarray/rot180 -"2nl",@stdlib/ndarray-rot180 -"2nm",@stdlib/ndarray/rot90 -"2nn",@stdlib/ndarray-rot90 -"2no",@stdlib/ndarray/rotl90 -"2np",@stdlib/ndarray-rotl90 -"2nq",@stdlib/ndarray/rotr90 -"2nr",@stdlib/ndarray-rotr90 -"2ns",@stdlib/ndarray/rowcat -"2nt",@stdlib/ndarray-rowcat -"0kA",@stdlib/ndarray/safe-casts -"0kB",@stdlib/ndarray-safe-casts -"0kC",@stdlib/ndarray/same-kind-casts -"0kD",@stdlib/ndarray-same-kind-casts -"1kA",@stdlib/ndarray/shape -"1kB",@stdlib/ndarray-shape -"2XA",@stdlib/ndarray/shift -"2XB",@stdlib/ndarray-shift -"1jS",@stdlib/ndarray/slice-assign -"1jT",@stdlib/ndarray-slice-assign -"1lS",@stdlib/ndarray/slice-dimension-from -"1lT",@stdlib/ndarray-slice-dimension-from -"1lU",@stdlib/ndarray/slice-dimension-to -"1lV",@stdlib/ndarray-slice-dimension-to -"1ka",@stdlib/ndarray/slice-dimension -"1kb",@stdlib/ndarray-slice-dimension -"1mw",@stdlib/ndarray/slice-from -"1mx",@stdlib/ndarray-slice-from -"1mi",@stdlib/ndarray/slice-to -"1mj",@stdlib/ndarray-slice-to -"1jU",@stdlib/ndarray/slice -"1jV",@stdlib/ndarray-slice -"2J0",@stdlib/ndarray/some-by -"2J1",@stdlib/ndarray-some-by -"2YU",@stdlib/ndarray/some -"2YV",@stdlib/ndarray-some -"2nu",@stdlib/ndarray/spread-dimensions -"2nv",@stdlib/ndarray-spread-dimensions -"1mk",@stdlib/ndarray/stride -"1ml",@stdlib/ndarray-stride -"1kC",@stdlib/ndarray/strides -"1kD",@stdlib/ndarray-strides -"0kE",@stdlib/ndarray/sub2ind -"0kF",@stdlib/ndarray-sub2ind -"1de",@stdlib/ndarray/to-array -"1df",@stdlib/ndarray-to-array -"2nw",@stdlib/ndarray/to-flippedlr -"2nx",@stdlib/ndarray-to-flippedlr -"2ny",@stdlib/ndarray/to-flippedud -"2nz",@stdlib/ndarray-to-flippedud -"2o0",@stdlib/ndarray/to-locale-string -"2o1",@stdlib/ndarray-to-locale-string -"2o2",@stdlib/ndarray/to-reversed-dimension -"2o3",@stdlib/ndarray-to-reversed-dimension -"2o4",@stdlib/ndarray/to-reversed-dimensions -"2o5",@stdlib/ndarray-to-reversed-dimensions -"2XC",@stdlib/ndarray/to-reversed -"2XD",@stdlib/ndarray-to-reversed -"2o6",@stdlib/ndarray/to-rot180 -"2o7",@stdlib/ndarray-to-rot180 -"2o8",@stdlib/ndarray/to-rot90 -"2o9",@stdlib/ndarray-to-rot90 -"2oA",@stdlib/ndarray/to-rotl90 -"2oB",@stdlib/ndarray-to-rotl90 -"2oC",@stdlib/ndarray/to-rotr90 -"2oD",@stdlib/ndarray-to-rotr90 -"2oE",@stdlib/ndarray/to-string -"2oF",@stdlib/ndarray-to-string -"2oG",@stdlib/ndarray/to-transposed -"2oH",@stdlib/ndarray-to-transposed -"2oI",@stdlib/ndarray/to-unflattened -"2oJ",@stdlib/ndarray-to-unflattened -"2oK",@stdlib/ndarray/transpose -"2oL",@stdlib/ndarray-transpose -"2oM",@stdlib/ndarray/trues-like -"2oN",@stdlib/ndarray-trues-like -"2oO",@stdlib/ndarray/trues -"2oP",@stdlib/ndarray-trues -"2oQ",@stdlib/ndarray/unflatten -"2oR",@stdlib/ndarray-unflatten -"2oS",@stdlib/ndarray/unshift -"2oT",@stdlib/ndarray-unshift -"2oU",@stdlib/ndarray/vconcat -"2oV",@stdlib/ndarray-vconcat -"2J2",@stdlib/ndarray/vector/bool -"2J3",@stdlib/ndarray-vector-bool -"2J4",@stdlib/ndarray/vector/complex128 -"2J5",@stdlib/ndarray-vector-complex128 -"2J6",@stdlib/ndarray/vector/complex64 -"2J7",@stdlib/ndarray-vector-complex64 -"2H8",@stdlib/ndarray/vector/ctor -"2H9",@stdlib/ndarray-vector-ctor -"2HA",@stdlib/ndarray/vector/float32 -"2HB",@stdlib/ndarray-vector-float32 -"2HC",@stdlib/ndarray/vector/float64 -"2HD",@stdlib/ndarray-vector-float64 -"2J8",@stdlib/ndarray/vector/int16 -"2J9",@stdlib/ndarray-vector-int16 -"2JA",@stdlib/ndarray/vector/int32 -"2JB",@stdlib/ndarray-vector-int32 -"2JC",@stdlib/ndarray/vector/int8 -"2JD",@stdlib/ndarray-vector-int8 -"2JE",@stdlib/ndarray/vector -"2JF",@stdlib/ndarray-vector -"2JG",@stdlib/ndarray/vector/uint16 -"2JH",@stdlib/ndarray-vector-uint16 -"2JI",@stdlib/ndarray/vector/uint32 -"2JJ",@stdlib/ndarray-vector-uint32 -"2JK",@stdlib/ndarray/vector/uint8 -"2JL",@stdlib/ndarray-vector-uint8 -"2JM",@stdlib/ndarray/vector/uint8c -"2JN",@stdlib/ndarray-vector-uint8c -"2V8",@stdlib/ndarray/with -"2V9",@stdlib/ndarray-with -"0kG",@stdlib/ndarray/zeros-like -"0kH",@stdlib/ndarray-zeros-like -"0kI",@stdlib/ndarray/zeros -"0kJ",@stdlib/ndarray-zeros -"0kK",@stdlib/net/disposable-http-server -"0kL",@stdlib/net-disposable-http-server -"0kM",@stdlib/net/http-server -"0kN",@stdlib/net-http-server -"2Tq",@stdlib/net/http2-secure-server -"2Tr",@stdlib/net-http2-secure-server -"0kP",@stdlib/net -"0kQ",@stdlib/net/simple-http-server -"0kR",@stdlib/net-simple-http-server -"1dg",@stdlib/nlp/expand-acronyms -"1dh",@stdlib/nlp-expand-acronyms -"0kS",@stdlib/nlp/expand-contractions -"0kT",@stdlib/nlp-expand-contractions -"0kU",@stdlib/nlp/lda -"0kV",@stdlib/nlp-lda -"0kW",@stdlib/nlp/ordinalize -"0kX",@stdlib/nlp-ordinalize -"0kZ",@stdlib/nlp -"0ka",@stdlib/nlp/porter-stemmer -"0kb",@stdlib/nlp-porter-stemmer -"1di",@stdlib/nlp/sentencize -"1dj",@stdlib/nlp-sentencize -"0kc",@stdlib/nlp/tokenize -"0kd",@stdlib/nlp-tokenize -"0ke",@stdlib/number/ctor -"0kf",@stdlib/number-ctor -"2oW",@stdlib/number/float16/base/assert/is-almost-equal -"2oX",@stdlib/number-float16-base-assert-is-almost-equal -"2oY",@stdlib/number/float16/base/assert/is-nan -"2oZ",@stdlib/number-float16-base-assert-is-nan -"2oa",@stdlib/number/float16/base/assert/is-negative-zero -"2ob",@stdlib/number-float16-base-assert-is-negative-zero -"2oc",@stdlib/number/float16/base/assert/is-positive-zero -"2od",@stdlib/number-float16-base-assert-is-positive-zero -"2aI",@stdlib/number/float16/base/exponent -"2aJ",@stdlib/number-float16-base-exponent -"2oe",@stdlib/number/float16/base/from-binary-string -"2of",@stdlib/number-float16-base-from-binary-string -"2aK",@stdlib/number/float16/base/from-word -"2aL",@stdlib/number-float16-base-from-word -"2og",@stdlib/number/float16/base/mul -"2oh",@stdlib/number-float16-base-mul -"2oi",@stdlib/number/float16/base/signbit -"2oj",@stdlib/number-float16-base-signbit -"2ok",@stdlib/number/float16/base/significand -"2ol",@stdlib/number-float16-base-significand -"2om",@stdlib/number/float16/base/sub -"2on",@stdlib/number-float16-base-sub -"2aM",@stdlib/number/float16/base/to-binary-string -"2aN",@stdlib/number-float16-base-to-binary-string -"2oo",@stdlib/number/float16/base/to-float32 -"2op",@stdlib/number-float16-base-to-float32 -"2oq",@stdlib/number/float16/base/to-float64 -"2or",@stdlib/number-float16-base-to-float64 -"2aO",@stdlib/number/float16/base/to-word -"2aP",@stdlib/number-float16-base-to-word -"2os",@stdlib/number/float16/base/ulp-difference -"2ot",@stdlib/number-float16-base-ulp-difference -"2ou",@stdlib/number/float16/ctor -"2ov",@stdlib/number-float16-ctor -"2OW",@stdlib/number/float32/base/assert/is-almost-equal -"2OX",@stdlib/number-float32-base-assert-is-almost-equal -"2ow",@stdlib/number/float32/base/assert/is-almost-same-value -"2ox",@stdlib/number-float32-base-assert-is-almost-same-value -"1q4",@stdlib/number/float32/base/assert/is-same-value-zero -"1q5",@stdlib/number-float32-base-assert-is-same-value-zero -"1q6",@stdlib/number/float32/base/assert/is-same-value -"1q7",@stdlib/number-float32-base-assert-is-same-value -"1q8",@stdlib/number/float32/base/assert -"1q9",@stdlib/number-float32-base-assert -"0kg",@stdlib/number/float32/base/exponent -"0kh",@stdlib/number-float32-base-exponent -"0ki",@stdlib/number/float32/base/from-binary-string -"0kj",@stdlib/number-float32-base-from-binary-string -"0kk",@stdlib/number/float32/base/from-word -"0kl",@stdlib/number-float32-base-from-word -"2Ae",@stdlib/number/float32/base/identity -"2Af",@stdlib/number-float32-base-identity -"0km",@stdlib/number/float32/base/normalize -"0kn",@stdlib/number-float32-base-normalize -"0ko",@stdlib/number/float32/base -"0kp",@stdlib/number-float32-base -"0kq",@stdlib/number/float32/base/signbit -"0kr",@stdlib/number-float32-base-signbit -"0ks",@stdlib/number/float32/base/significand -"0kt",@stdlib/number-float32-base-significand -"28A",@stdlib/number/float32/base/sub -"28B",@stdlib/number-float32-base-sub -"0ku",@stdlib/number/float32/base/to-binary-string -"0kv",@stdlib/number-float32-base-to-binary-string -"2oy",@stdlib/number/float32/base/to-float16 -"2oz",@stdlib/number-float32-base-to-float16 -"0kw",@stdlib/number/float32/base/to-int32 -"0kx",@stdlib/number-float32-base-to-int32 -"0ky",@stdlib/number/float32/base/to-uint32 -"0kz",@stdlib/number-float32-base-to-uint32 -"0l0",@stdlib/number/float32/base/to-word -"0l1",@stdlib/number-float32-base-to-word -"2OY",@stdlib/number/float32/base/ulp-difference -"2OZ",@stdlib/number-float32-base-ulp-difference -"0l2",@stdlib/number/float32 -"0l3",@stdlib/number-float32 -"28C",@stdlib/number/float64/base/add -"28D",@stdlib/number-float64-base-add -"28E",@stdlib/number/float64/base/add3 -"28F",@stdlib/number-float64-base-add3 -"28G",@stdlib/number/float64/base/add4 -"28H",@stdlib/number-float64-base-add4 -"28I",@stdlib/number/float64/base/add5 -"28J",@stdlib/number-float64-base-add5 -"2Oa",@stdlib/number/float64/base/assert/is-almost-equal -"2Ob",@stdlib/number-float64-base-assert-is-almost-equal -"2p0",@stdlib/number/float64/base/assert/is-almost-same-value -"2p1",@stdlib/number-float64-base-assert-is-almost-same-value -"1qA",@stdlib/number/float64/base/assert/is-same-value-zero -"1qB",@stdlib/number-float64-base-assert-is-same-value-zero -"1qC",@stdlib/number/float64/base/assert/is-same-value -"1qD",@stdlib/number-float64-base-assert-is-same-value -"1qE",@stdlib/number/float64/base/assert -"1qF",@stdlib/number-float64-base-assert -"28K",@stdlib/number/float64/base/div -"28L",@stdlib/number-float64-base-div -"0l4",@stdlib/number/float64/base/exponent -"0l5",@stdlib/number-float64-base-exponent -"0l6",@stdlib/number/float64/base/from-binary-string -"0l7",@stdlib/number-float64-base-from-binary-string -"0l8",@stdlib/number/float64/base/from-int64-bytes -"0l9",@stdlib/number-float64-base-from-int64-bytes -"0lA",@stdlib/number/float64/base/from-words -"0lB",@stdlib/number-float64-base-from-words -"0lC",@stdlib/number/float64/base/get-high-word -"0lD",@stdlib/number-float64-base-get-high-word -"0lE",@stdlib/number/float64/base/get-low-word -"0lF",@stdlib/number-float64-base-get-low-word -"2Ag",@stdlib/number/float64/base/identity -"2Ah",@stdlib/number-float64-base-identity -"28M",@stdlib/number/float64/base/mul -"28N",@stdlib/number-float64-base-mul -"0lG",@stdlib/number/float64/base/normalize -"0lH",@stdlib/number-float64-base-normalize -"0lI",@stdlib/number/float64/base -"0lJ",@stdlib/number-float64-base -"0lK",@stdlib/number/float64/base/set-high-word -"0lL",@stdlib/number-float64-base-set-high-word -"0lM",@stdlib/number/float64/base/set-low-word -"0lN",@stdlib/number-float64-base-set-low-word -"0lO",@stdlib/number/float64/base/signbit -"0lP",@stdlib/number-float64-base-signbit -"28O",@stdlib/number/float64/base/sub -"28P",@stdlib/number-float64-base-sub -"2p2",@stdlib/number/float64/base/sub3 -"2p3",@stdlib/number-float64-base-sub3 -"0lQ",@stdlib/number/float64/base/to-binary-string -"0lR",@stdlib/number-float64-base-to-binary-string -"2YW",@stdlib/number/float64/base/to-float16 -"2YX",@stdlib/number-float64-base-to-float16 -"0lS",@stdlib/number/float64/base/to-float32 -"0lT",@stdlib/number-float64-base-to-float32 -"0lU",@stdlib/number/float64/base/to-int32 -"0lV",@stdlib/number-float64-base-to-int32 -"0lW",@stdlib/number/float64/base/to-int64-bytes -"0lX",@stdlib/number-float64-base-to-int64-bytes -"0lY",@stdlib/number/float64/base/to-uint32 -"0lZ",@stdlib/number-float64-base-to-uint32 -"0la",@stdlib/number/float64/base/to-words -"0lb",@stdlib/number-float64-base-to-words -"2L6",@stdlib/number/float64/base/ulp-difference -"2L7",@stdlib/number-float64-base-ulp-difference -"0lc",@stdlib/number/float64 -"0ld",@stdlib/number-float64 -"1dk",@stdlib/number/float64/reviver -"1dl",@stdlib/number-float64-reviver -"1dm",@stdlib/number/float64/to-json -"1dn",@stdlib/number-float64-to-json -"2Ts",@stdlib/number/int16/base/identity -"2Tt",@stdlib/number-int16-base-identity -"2YY",@stdlib/number/int16/base -"2YZ",@stdlib/number-int16-base -"2Tu",@stdlib/number/int32/base/identity -"2Tv",@stdlib/number-int32-base-identity -"2Ai",@stdlib/number/int32/base/mul -"2Aj",@stdlib/number-int32-base-mul -"2Ak",@stdlib/number/int32/base/muldw -"2Al",@stdlib/number-int32-base-muldw -"0le",@stdlib/number/int32/base -"0lf",@stdlib/number-int32-base -"0lg",@stdlib/number/int32/base/to-uint32 -"0lh",@stdlib/number-int32-base-to-uint32 -"0li",@stdlib/number/int32 -"0lj",@stdlib/number-int32 -"2Tw",@stdlib/number/int8/base/identity -"2Tx",@stdlib/number-int8-base-identity -"2Ya",@stdlib/number/int8/base -"2Yb",@stdlib/number-int8-base -"0ll",@stdlib/number -"2L8",@stdlib/number/uint16/base/add -"2L9",@stdlib/number-uint16-base-add -"0lm",@stdlib/number/uint16/base/from-binary-string -"0ln",@stdlib/number-uint16-base-from-binary-string -"2Ty",@stdlib/number/uint16/base/identity -"2Tz",@stdlib/number-uint16-base-identity -"2LA",@stdlib/number/uint16/base/mul -"2LB",@stdlib/number-uint16-base-mul -"0lo",@stdlib/number/uint16/base -"0lp",@stdlib/number-uint16-base -"2LC",@stdlib/number/uint16/base/sub -"2LD",@stdlib/number-uint16-base-sub -"0lq",@stdlib/number/uint16/base/to-binary-string -"0lr",@stdlib/number-uint16-base-to-binary-string -"0ls",@stdlib/number/uint16 -"0lt",@stdlib/number-uint16 -"2LE",@stdlib/number/uint32/base/add -"2LF",@stdlib/number-uint32-base-add -"0lu",@stdlib/number/uint32/base/from-binary-string -"0lv",@stdlib/number-uint32-base-from-binary-string -"2U0",@stdlib/number/uint32/base/identity -"2U1",@stdlib/number-uint32-base-identity -"28Q",@stdlib/number/uint32/base/mul -"28R",@stdlib/number-uint32-base-mul -"2Am",@stdlib/number/uint32/base/muldw -"2An",@stdlib/number-uint32-base-muldw -"0lw",@stdlib/number/uint32/base -"0lx",@stdlib/number-uint32-base -"0ly",@stdlib/number/uint32/base/rotl -"0lz",@stdlib/number-uint32-base-rotl -"0m0",@stdlib/number/uint32/base/rotr -"0m1",@stdlib/number-uint32-base-rotr -"2LG",@stdlib/number/uint32/base/sub -"2LH",@stdlib/number-uint32-base-sub -"0m2",@stdlib/number/uint32/base/to-binary-string -"0m3",@stdlib/number-uint32-base-to-binary-string -"0m4",@stdlib/number/uint32/base/to-int32 -"0m5",@stdlib/number-uint32-base-to-int32 -"0m6",@stdlib/number/uint32 -"0m7",@stdlib/number-uint32 -"2p4",@stdlib/number/uint64/ctor -"2p5",@stdlib/number-uint64-ctor -"2LI",@stdlib/number/uint8/base/add -"2LJ",@stdlib/number-uint8-base-add -"0m8",@stdlib/number/uint8/base/from-binary-string -"0m9",@stdlib/number-uint8-base-from-binary-string -"2U2",@stdlib/number/uint8/base/identity -"2U3",@stdlib/number-uint8-base-identity -"2LK",@stdlib/number/uint8/base/mul -"2LL",@stdlib/number-uint8-base-mul -"0mA",@stdlib/number/uint8/base -"0mB",@stdlib/number-uint8-base -"2LM",@stdlib/number/uint8/base/sub -"2LN",@stdlib/number-uint8-base-sub -"0mC",@stdlib/number/uint8/base/to-binary-string -"0mD",@stdlib/number-uint8-base-to-binary-string -"0mE",@stdlib/number/uint8 -"0mF",@stdlib/number-uint8 -"2aQ",@stdlib/object/any-in-by -"2aR",@stdlib/object-any-in-by -"2aS",@stdlib/object/any-own-by -"2aT",@stdlib/object-any-own-by -"2Ry",@stdlib/object/assign-in -"2Rz",@stdlib/object-assign-in -"1do",@stdlib/object/assign -"1dp",@stdlib/object-assign -"2p6",@stdlib/object/bifurcate-in -"2p7",@stdlib/object-bifurcate-in -"2p8",@stdlib/object/bifurcate-own -"2p9",@stdlib/object-bifurcate-own -"2pA",@stdlib/object/capitalize-keys -"2pB",@stdlib/object-capitalize-keys -"2pC",@stdlib/object/common-keys-in -"2pD",@stdlib/object-common-keys-in -"2pE",@stdlib/object/common-keys -"2pF",@stdlib/object-common-keys -"1dq",@stdlib/object/ctor -"1dr",@stdlib/object-ctor -"2pG",@stdlib/object/deep-get -"2pH",@stdlib/object-deep-get -"2pI",@stdlib/object/deep-set -"2pJ",@stdlib/object-deep-set -"2Eu",@stdlib/object/every-in-by -"2Ev",@stdlib/object-every-in-by -"2Oc",@stdlib/object/every-own-by -"2Od",@stdlib/object-every-own-by -"2pK",@stdlib/object/for-in -"2pL",@stdlib/object-for-in -"2pM",@stdlib/object/for-own -"2pN",@stdlib/object-for-own -"2pO",@stdlib/object/inverse-by -"2pP",@stdlib/object-inverse-by -"2pQ",@stdlib/object/inverse -"2pR",@stdlib/object-inverse -"2pS",@stdlib/object/lowercase-keys -"2pT",@stdlib/object-lowercase-keys -"2aU",@stdlib/object/move-property -"2aV",@stdlib/object-move-property -"2Oe",@stdlib/object/none-in-by -"2Of",@stdlib/object-none-in-by -"2aW",@stdlib/object/none-own-by -"2aX",@stdlib/object-none-own-by -"1dt",@stdlib/object -"2Og",@stdlib/object/some-in-by -"2Oh",@stdlib/object-some-in-by -"2aY",@stdlib/object/some-own-by -"2aZ",@stdlib/object-some-own-by -"2pU",@stdlib/object/uncapitalize-keys -"2pV",@stdlib/object-uncapitalize-keys -"2pW",@stdlib/object/uppercase-keys -"2pX",@stdlib/object-uppercase-keys -"0mG",@stdlib/os/arch -"0mH",@stdlib/os-arch -"0mI",@stdlib/os/byte-order -"0mJ",@stdlib/os-byte-order -"0mK",@stdlib/os/configdir -"0mL",@stdlib/os-configdir -"0mM",@stdlib/os/float-word-order -"0mN",@stdlib/os-float-word-order -"0mO",@stdlib/os/homedir -"0mP",@stdlib/os-homedir -"0mQ",@stdlib/os/num-cpus -"0mR",@stdlib/os-num-cpus -"0mT",@stdlib/os -"0mU",@stdlib/os/platform -"0mV",@stdlib/os-platform -"0mW",@stdlib/os/tmpdir -"0mX",@stdlib/os-tmpdir -"0mY",@stdlib/plot/base/ctor -"0mZ",@stdlib/plot-base-ctor -"0ma",@stdlib/plot/components/svg/annotations -"0mb",@stdlib/plot-components-svg-annotations -"0mc",@stdlib/plot/components/svg/axis -"0md",@stdlib/plot-components-svg-axis -"0me",@stdlib/plot/components/svg/background -"0mf",@stdlib/plot-components-svg-background -"0mg",@stdlib/plot/components/svg/canvas -"0mh",@stdlib/plot-components-svg-canvas -"0mi",@stdlib/plot/components/svg/clip-path -"0mj",@stdlib/plot-components-svg-clip-path -"0mk",@stdlib/plot/components/svg/defs -"0ml",@stdlib/plot-components-svg-defs -"0mm",@stdlib/plot/components/svg/graph -"0mn",@stdlib/plot-components-svg-graph -"0mo",@stdlib/plot/components/svg/marks -"0mp",@stdlib/plot-components-svg-marks -"0mq",@stdlib/plot/components/svg/path -"0mr",@stdlib/plot-components-svg-path -"0ms",@stdlib/plot/components/svg/rug -"0mt",@stdlib/plot-components-svg-rug -"0mu",@stdlib/plot/components/svg/symbols -"0mv",@stdlib/plot-components-svg-symbols -"0mw",@stdlib/plot/components/svg/title -"0mx",@stdlib/plot-components-svg-title -"0my",@stdlib/plot/ctor -"0mz",@stdlib/plot-ctor -"0n1",@stdlib/plot -"0n2",@stdlib/plot/sparklines/base/ctor -"0n3",@stdlib/plot-sparklines-base-ctor -"0n4",@stdlib/plot/sparklines/base -"0n5",@stdlib/plot-sparklines-base -"0n6",@stdlib/plot/sparklines -"0n7",@stdlib/plot-sparklines -"0n8",@stdlib/plot/sparklines/unicode/column -"0n9",@stdlib/plot-sparklines-unicode-column -"0nA",@stdlib/plot/sparklines/unicode/line -"0nB",@stdlib/plot-sparklines-unicode-line -"0nC",@stdlib/plot/sparklines/unicode -"0nD",@stdlib/plot-sparklines-unicode -"0nE",@stdlib/plot/sparklines/unicode/tristate -"0nF",@stdlib/plot-sparklines-unicode-tristate -"0nG",@stdlib/plot/sparklines/unicode/up-down -"0nH",@stdlib/plot-sparklines-unicode-up-down -"0nI",@stdlib/plot/sparklines/unicode/win-loss -"0nJ",@stdlib/plot-sparklines-unicode-win-loss -"0nK",@stdlib/plot/unicode/stemleaf -"0nL",@stdlib/plot-unicode-stemleaf -"0nM",@stdlib/process/argv -"0nN",@stdlib/process-argv -"0nO",@stdlib/process/chdir -"0nP",@stdlib/process-chdir -"0nQ",@stdlib/process/cwd -"0nR",@stdlib/process-cwd -"0nS",@stdlib/process/env -"0nT",@stdlib/process-env -"0nU",@stdlib/process/exec-path -"0nV",@stdlib/process-exec-path -"0nW",@stdlib/process/getegid -"0nX",@stdlib/process-getegid -"0nY",@stdlib/process/geteuid -"0nZ",@stdlib/process-geteuid -"0na",@stdlib/process/getgid -"0nb",@stdlib/process-getgid -"0nc",@stdlib/process/getuid -"0nd",@stdlib/process-getuid -"0ne",@stdlib/process/node-version -"0nf",@stdlib/process-node-version -"0nh",@stdlib/process -"0ni",@stdlib/process/read-stdin -"0nj",@stdlib/process-read-stdin -"0nk",@stdlib/process/umask -"0nl",@stdlib/process-umask -"0nm",@stdlib/proxy/ctor -"0nn",@stdlib/proxy-ctor -"0np",@stdlib/proxy -"2pY",@stdlib/random/arcsine -"2pZ",@stdlib/random-arcsine -"1du",@stdlib/random/array/arcsine -"1dv",@stdlib/random-array-arcsine -"1o2",@stdlib/random/array/bernoulli -"1o3",@stdlib/random-array-bernoulli -"1dw",@stdlib/random/array/beta -"1dx",@stdlib/random-array-beta -"1dy",@stdlib/random/array/betaprime -"1dz",@stdlib/random-array-betaprime -"1qG",@stdlib/random/array/binomial -"1qH",@stdlib/random-array-binomial -"1qI",@stdlib/random/array/cauchy -"1qJ",@stdlib/random-array-cauchy -"1o4",@stdlib/random/array/chi -"1o5",@stdlib/random-array-chi -"1o6",@stdlib/random/array/chisquare -"1o7",@stdlib/random-array-chisquare -"1e0",@stdlib/random/array/cosine -"1e1",@stdlib/random-array-cosine -"1e2",@stdlib/random/array/discrete-uniform -"1e3",@stdlib/random-array-discrete-uniform -"1qK",@stdlib/random/array/erlang -"1qL",@stdlib/random-array-erlang -"1e4",@stdlib/random/array/exponential -"1e5",@stdlib/random-array-exponential -"1qM",@stdlib/random/array/f -"1qN",@stdlib/random-array-f -"1qO",@stdlib/random/array/frechet -"1qP",@stdlib/random-array-frechet -"1e6",@stdlib/random/array/gamma -"1e7",@stdlib/random-array-gamma -"1e8",@stdlib/random/array/geometric -"1e9",@stdlib/random-array-geometric -"1qQ",@stdlib/random/array/gumbel -"1qR",@stdlib/random-array-gumbel -"1qS",@stdlib/random/array/hypergeometric -"1qT",@stdlib/random-array-hypergeometric -"1eA",@stdlib/random/array/invgamma -"1eB",@stdlib/random-array-invgamma -"1qU",@stdlib/random/array/kumaraswamy -"1qV",@stdlib/random-array-kumaraswamy -"1qW",@stdlib/random/array/laplace -"1qX",@stdlib/random-array-laplace -"1qY",@stdlib/random/array/levy -"1qZ",@stdlib/random-array-levy -"1qa",@stdlib/random/array/logistic -"1qb",@stdlib/random-array-logistic -"1eC",@stdlib/random/array/lognormal -"1eD",@stdlib/random-array-lognormal -"1eE",@stdlib/random/array/minstd-shuffle -"1eF",@stdlib/random-array-minstd-shuffle -"1eG",@stdlib/random/array/minstd -"1eH",@stdlib/random-array-minstd -"1eI",@stdlib/random/array/mt19937 -"1eJ",@stdlib/random-array-mt19937 -"1qc",@stdlib/random/array/negative-binomial -"1qd",@stdlib/random-array-negative-binomial -"1eK",@stdlib/random/array/normal -"1eL",@stdlib/random-array-normal -"1eM",@stdlib/random/array -"1eN",@stdlib/random-array -"1qe",@stdlib/random/array/pareto-type1 -"1qf",@stdlib/random-array-pareto-type1 -"1o8",@stdlib/random/array/poisson -"1o9",@stdlib/random-array-poisson -"1eO",@stdlib/random/array/randu -"1eP",@stdlib/random-array-randu -"1oA",@stdlib/random/array/rayleigh -"1oB",@stdlib/random-array-rayleigh -"1oC",@stdlib/random/array/t -"1oD",@stdlib/random-array-t -"1qg",@stdlib/random/array/tools/binary-factory -"1qh",@stdlib/random-array-tools-binary-factory -"1qi",@stdlib/random/array/tools/binary -"1qj",@stdlib/random-array-tools-binary -"1oE",@stdlib/random/array/tools/nullary -"1oF",@stdlib/random-array-tools-nullary -"1rY",@stdlib/random/array/tools -"1rZ",@stdlib/random-array-tools -"1qk",@stdlib/random/array/tools/ternary-factory -"1ql",@stdlib/random-array-tools-ternary-factory -"1qm",@stdlib/random/array/tools/ternary -"1qn",@stdlib/random-array-tools-ternary -"1oG",@stdlib/random/array/tools/unary-factory -"1oH",@stdlib/random-array-tools-unary-factory -"1oI",@stdlib/random/array/tools/unary -"1oJ",@stdlib/random-array-tools-unary -"1qo",@stdlib/random/array/triangular -"1qp",@stdlib/random-array-triangular -"1eQ",@stdlib/random/array/uniform -"1eR",@stdlib/random-array-uniform -"1qq",@stdlib/random/array/weibull -"1qr",@stdlib/random-array-weibull -"0nq",@stdlib/random/base/arcsine -"0nr",@stdlib/random-base-arcsine -"0ns",@stdlib/random/base/bernoulli -"0nt",@stdlib/random-base-bernoulli -"0nu",@stdlib/random/base/beta -"0nv",@stdlib/random-base-beta -"0nw",@stdlib/random/base/betaprime -"0nx",@stdlib/random-base-betaprime -"0ny",@stdlib/random/base/binomial -"0nz",@stdlib/random-base-binomial -"0o0",@stdlib/random/base/box-muller -"0o1",@stdlib/random-base-box-muller -"0o2",@stdlib/random/base/cauchy -"0o3",@stdlib/random-base-cauchy -"0o4",@stdlib/random/base/chi -"0o5",@stdlib/random-base-chi -"0o6",@stdlib/random/base/chisquare -"0o7",@stdlib/random-base-chisquare -"0o8",@stdlib/random/base/cosine -"0o9",@stdlib/random-base-cosine -"0oA",@stdlib/random/base/discrete-uniform -"0oB",@stdlib/random-base-discrete-uniform -"0oC",@stdlib/random/base/erlang -"0oD",@stdlib/random-base-erlang -"0oE",@stdlib/random/base/exponential -"0oF",@stdlib/random-base-exponential -"0oG",@stdlib/random/base/f -"0oH",@stdlib/random-base-f -"0oI",@stdlib/random/base/frechet -"0oJ",@stdlib/random-base-frechet -"0oK",@stdlib/random/base/gamma -"0oL",@stdlib/random-base-gamma -"0oM",@stdlib/random/base/geometric -"0oN",@stdlib/random-base-geometric -"0oO",@stdlib/random/base/gumbel -"0oP",@stdlib/random-base-gumbel -"0oQ",@stdlib/random/base/hypergeometric -"0oR",@stdlib/random-base-hypergeometric -"0oS",@stdlib/random/base/improved-ziggurat -"0oT",@stdlib/random-base-improved-ziggurat -"0oU",@stdlib/random/base/invgamma -"0oV",@stdlib/random-base-invgamma -"0oW",@stdlib/random/base/kumaraswamy -"0oX",@stdlib/random-base-kumaraswamy -"0oY",@stdlib/random/base/laplace -"0oZ",@stdlib/random-base-laplace -"0oa",@stdlib/random/base/levy -"0ob",@stdlib/random-base-levy -"0oc",@stdlib/random/base/logistic -"0od",@stdlib/random-base-logistic -"0oe",@stdlib/random/base/lognormal -"0of",@stdlib/random-base-lognormal -"0og",@stdlib/random/base/minstd-shuffle -"0oh",@stdlib/random-base-minstd-shuffle -"0oi",@stdlib/random/base/minstd -"0oj",@stdlib/random-base-minstd -"0ok",@stdlib/random/base/mt19937 -"0ol",@stdlib/random-base-mt19937 -"0om",@stdlib/random/base/negative-binomial -"0on",@stdlib/random-base-negative-binomial -"0oo",@stdlib/random/base/normal -"0op",@stdlib/random-base-normal -"0oq",@stdlib/random/base -"0or",@stdlib/random-base -"0os",@stdlib/random/base/pareto-type1 -"0ot",@stdlib/random-base-pareto-type1 -"0ou",@stdlib/random/base/poisson -"0ov",@stdlib/random-base-poisson -"0ow",@stdlib/random/base/randi -"0ox",@stdlib/random-base-randi -"0oy",@stdlib/random/base/randn -"0oz",@stdlib/random-base-randn -"0p0",@stdlib/random/base/randu -"0p1",@stdlib/random-base-randu -"0p2",@stdlib/random/base/rayleigh -"0p3",@stdlib/random-base-rayleigh -"0p4",@stdlib/random/base/reviver -"0p5",@stdlib/random-base-reviver -"1sM",@stdlib/random/base/shared -"1sN",@stdlib/random-base-shared -"0p6",@stdlib/random/base/t -"0p7",@stdlib/random-base-t -"0p8",@stdlib/random/base/triangular -"0p9",@stdlib/random-base-triangular -"0pA",@stdlib/random/base/uniform -"0pB",@stdlib/random-base-uniform -"0pC",@stdlib/random/base/weibull -"0pD",@stdlib/random-base-weibull -"2pa",@stdlib/random/bernoulli -"2pb",@stdlib/random-bernoulli -"2pc",@stdlib/random/beta -"2pd",@stdlib/random-beta -"2pe",@stdlib/random/betaprime -"2pf",@stdlib/random-betaprime -"2pg",@stdlib/random/binomial -"2ph",@stdlib/random-binomial -"2pi",@stdlib/random/cauchy -"2pj",@stdlib/random-cauchy -"2pk",@stdlib/random/chi -"2pl",@stdlib/random-chi -"2pm",@stdlib/random/chisquare -"2pn",@stdlib/random-chisquare -"2po",@stdlib/random/cosine -"2pp",@stdlib/random-cosine -"2pq",@stdlib/random/discrete-uniform -"2pr",@stdlib/random-discrete-uniform -"2ps",@stdlib/random/erlang -"2pt",@stdlib/random-erlang -"1eS",@stdlib/random/exponential -"1eT",@stdlib/random-exponential -"2pu",@stdlib/random/f -"2pv",@stdlib/random-f -"2pw",@stdlib/random/frechet -"2px",@stdlib/random-frechet -"2py",@stdlib/random/gamma -"2pz",@stdlib/random-gamma -"2q0",@stdlib/random/geometric -"2q1",@stdlib/random-geometric -"2q2",@stdlib/random/gumbel -"2q3",@stdlib/random-gumbel -"2q4",@stdlib/random/hypergeometric -"2q5",@stdlib/random-hypergeometric -"2q6",@stdlib/random/invgamma -"2q7",@stdlib/random-invgamma -"0pE",@stdlib/random/iter/arcsine -"0pF",@stdlib/random-iter-arcsine -"0pG",@stdlib/random/iter/bernoulli -"0pH",@stdlib/random-iter-bernoulli -"0pI",@stdlib/random/iter/beta -"0pJ",@stdlib/random-iter-beta -"0pK",@stdlib/random/iter/betaprime -"0pL",@stdlib/random-iter-betaprime -"0pM",@stdlib/random/iter/binomial -"0pN",@stdlib/random-iter-binomial -"0pO",@stdlib/random/iter/box-muller -"0pP",@stdlib/random-iter-box-muller -"0pQ",@stdlib/random/iter/cauchy -"0pR",@stdlib/random-iter-cauchy -"0pS",@stdlib/random/iter/chi -"0pT",@stdlib/random-iter-chi -"0pU",@stdlib/random/iter/chisquare -"0pV",@stdlib/random-iter-chisquare -"0pW",@stdlib/random/iter/cosine -"0pX",@stdlib/random-iter-cosine -"0pY",@stdlib/random/iter/discrete-uniform -"0pZ",@stdlib/random-iter-discrete-uniform -"0pa",@stdlib/random/iter/erlang -"0pb",@stdlib/random-iter-erlang -"0pc",@stdlib/random/iter/exponential -"0pd",@stdlib/random-iter-exponential -"0pe",@stdlib/random/iter/f -"0pf",@stdlib/random-iter-f -"0pg",@stdlib/random/iter/frechet -"0ph",@stdlib/random-iter-frechet -"0pi",@stdlib/random/iter/gamma -"0pj",@stdlib/random-iter-gamma -"0pk",@stdlib/random/iter/geometric -"0pl",@stdlib/random-iter-geometric -"0pm",@stdlib/random/iter/gumbel -"0pn",@stdlib/random-iter-gumbel -"0po",@stdlib/random/iter/hypergeometric -"0pp",@stdlib/random-iter-hypergeometric -"0pq",@stdlib/random/iter/improved-ziggurat -"0pr",@stdlib/random-iter-improved-ziggurat -"0ps",@stdlib/random/iter/invgamma -"0pt",@stdlib/random-iter-invgamma -"0pu",@stdlib/random/iter/kumaraswamy -"0pv",@stdlib/random-iter-kumaraswamy -"0pw",@stdlib/random/iter/laplace -"0px",@stdlib/random-iter-laplace -"0py",@stdlib/random/iter/levy -"0pz",@stdlib/random-iter-levy -"0q0",@stdlib/random/iter/logistic -"0q1",@stdlib/random-iter-logistic -"0q2",@stdlib/random/iter/lognormal -"0q3",@stdlib/random-iter-lognormal -"0q4",@stdlib/random/iter/minstd-shuffle -"0q5",@stdlib/random-iter-minstd-shuffle -"0q6",@stdlib/random/iter/minstd -"0q7",@stdlib/random-iter-minstd -"0q8",@stdlib/random/iter/mt19937 -"0q9",@stdlib/random-iter-mt19937 -"0qA",@stdlib/random/iter/negative-binomial -"0qB",@stdlib/random-iter-negative-binomial -"0qC",@stdlib/random/iter/normal -"0qD",@stdlib/random-iter-normal -"0qE",@stdlib/random/iter -"0qF",@stdlib/random-iter -"0qG",@stdlib/random/iter/pareto-type1 -"0qH",@stdlib/random-iter-pareto-type1 -"0qI",@stdlib/random/iter/poisson -"0qJ",@stdlib/random-iter-poisson -"0qK",@stdlib/random/iter/randi -"0qL",@stdlib/random-iter-randi -"0qM",@stdlib/random/iter/randn -"0qN",@stdlib/random-iter-randn -"0qO",@stdlib/random/iter/randu -"0qP",@stdlib/random-iter-randu -"0qQ",@stdlib/random/iter/rayleigh -"0qR",@stdlib/random-iter-rayleigh -"0qS",@stdlib/random/iter/t -"0qT",@stdlib/random-iter-t -"0qU",@stdlib/random/iter/triangular -"0qV",@stdlib/random-iter-triangular -"0qW",@stdlib/random/iter/uniform -"0qX",@stdlib/random-iter-uniform -"0qY",@stdlib/random/iter/weibull -"0qZ",@stdlib/random-iter-weibull -"2q8",@stdlib/random/kumaraswamy -"2q9",@stdlib/random-kumaraswamy -"2qA",@stdlib/random/laplace -"2qB",@stdlib/random-laplace -"2qC",@stdlib/random/levy -"2qD",@stdlib/random-levy -"2qE",@stdlib/random/logistic -"2qF",@stdlib/random-logistic -"2qG",@stdlib/random/lognormal -"2qH",@stdlib/random-lognormal -"2qI",@stdlib/random/negative-binomial -"2qJ",@stdlib/random-negative-binomial -"2qK",@stdlib/random/normal -"2qL",@stdlib/random-normal -"0qb",@stdlib/random -"2qM",@stdlib/random/pareto-type1 -"2qN",@stdlib/random-pareto-type1 -"2qO",@stdlib/random/poisson -"2qP",@stdlib/random-poisson -"2qQ",@stdlib/random/rayleigh -"2qR",@stdlib/random-rayleigh -"0qc",@stdlib/random/sample -"0qd",@stdlib/random-sample -"0qe",@stdlib/random/shuffle -"0qf",@stdlib/random-shuffle -"0qg",@stdlib/random/streams/arcsine -"0qh",@stdlib/random-streams-arcsine -"0qi",@stdlib/random/streams/bernoulli -"0qj",@stdlib/random-streams-bernoulli -"0qk",@stdlib/random/streams/beta -"0ql",@stdlib/random-streams-beta -"0qm",@stdlib/random/streams/betaprime -"0qn",@stdlib/random-streams-betaprime -"0qo",@stdlib/random/streams/binomial -"0qp",@stdlib/random-streams-binomial -"0qq",@stdlib/random/streams/box-muller -"0qr",@stdlib/random-streams-box-muller -"0qs",@stdlib/random/streams/cauchy -"0qt",@stdlib/random-streams-cauchy -"0qu",@stdlib/random/streams/chi -"0qv",@stdlib/random-streams-chi -"0qw",@stdlib/random/streams/chisquare -"0qx",@stdlib/random-streams-chisquare -"0qy",@stdlib/random/streams/cosine -"0qz",@stdlib/random-streams-cosine -"0r0",@stdlib/random/streams/discrete-uniform -"0r1",@stdlib/random-streams-discrete-uniform -"0r2",@stdlib/random/streams/erlang -"0r3",@stdlib/random-streams-erlang -"0r4",@stdlib/random/streams/exponential -"0r5",@stdlib/random-streams-exponential -"0r6",@stdlib/random/streams/f -"0r7",@stdlib/random-streams-f -"0r8",@stdlib/random/streams/frechet -"0r9",@stdlib/random-streams-frechet -"0rA",@stdlib/random/streams/gamma -"0rB",@stdlib/random-streams-gamma -"0rC",@stdlib/random/streams/geometric -"0rD",@stdlib/random-streams-geometric -"0rE",@stdlib/random/streams/gumbel -"0rF",@stdlib/random-streams-gumbel -"0rG",@stdlib/random/streams/hypergeometric -"0rH",@stdlib/random-streams-hypergeometric -"0rI",@stdlib/random/streams/improved-ziggurat -"0rJ",@stdlib/random-streams-improved-ziggurat -"0rK",@stdlib/random/streams/invgamma -"0rL",@stdlib/random-streams-invgamma -"0rM",@stdlib/random/streams/kumaraswamy -"0rN",@stdlib/random-streams-kumaraswamy -"0rO",@stdlib/random/streams/laplace -"0rP",@stdlib/random-streams-laplace -"0rQ",@stdlib/random/streams/levy -"0rR",@stdlib/random-streams-levy -"0rS",@stdlib/random/streams/logistic -"0rT",@stdlib/random-streams-logistic -"0rU",@stdlib/random/streams/lognormal -"0rV",@stdlib/random-streams-lognormal -"0rW",@stdlib/random/streams/minstd-shuffle -"0rX",@stdlib/random-streams-minstd-shuffle -"0rY",@stdlib/random/streams/minstd -"0rZ",@stdlib/random-streams-minstd -"0ra",@stdlib/random/streams/mt19937 -"0rb",@stdlib/random-streams-mt19937 -"0rc",@stdlib/random/streams/negative-binomial -"0rd",@stdlib/random-streams-negative-binomial -"0re",@stdlib/random/streams/normal -"0rf",@stdlib/random-streams-normal -"0rg",@stdlib/random/streams -"0rh",@stdlib/random-streams -"0ri",@stdlib/random/streams/pareto-type1 -"0rj",@stdlib/random-streams-pareto-type1 -"0rk",@stdlib/random/streams/poisson -"0rl",@stdlib/random-streams-poisson -"0rm",@stdlib/random/streams/randi -"0rn",@stdlib/random-streams-randi -"0ro",@stdlib/random/streams/randn -"0rp",@stdlib/random-streams-randn -"0rq",@stdlib/random/streams/randu -"0rr",@stdlib/random-streams-randu -"0rs",@stdlib/random/streams/rayleigh -"0rt",@stdlib/random-streams-rayleigh -"0ru",@stdlib/random/streams/t -"0rv",@stdlib/random-streams-t -"0rw",@stdlib/random/streams/triangular -"0rx",@stdlib/random-streams-triangular -"0ry",@stdlib/random/streams/uniform -"0rz",@stdlib/random-streams-uniform -"0s0",@stdlib/random/streams/weibull -"0s1",@stdlib/random-streams-weibull -"1eU",@stdlib/random/strided/arcsine -"1eV",@stdlib/random-strided-arcsine -"1ra",@stdlib/random/strided/bernoulli -"1rb",@stdlib/random-strided-bernoulli -"1eW",@stdlib/random/strided/beta -"1eX",@stdlib/random-strided-beta -"1eY",@stdlib/random/strided/betaprime -"1eZ",@stdlib/random-strided-betaprime -"1rc",@stdlib/random/strided/chi -"1rd",@stdlib/random-strided-chi -"1re",@stdlib/random/strided/chisquare -"1rf",@stdlib/random-strided-chisquare -"1ea",@stdlib/random/strided/cosine -"1eb",@stdlib/random-strided-cosine -"1ec",@stdlib/random/strided/discrete-uniform -"1ed",@stdlib/random-strided-discrete-uniform -"1ee",@stdlib/random/strided/exponential -"1ef",@stdlib/random-strided-exponential -"1eg",@stdlib/random/strided/gamma -"1eh",@stdlib/random-strided-gamma -"1rg",@stdlib/random/strided/geometric -"1rh",@stdlib/random-strided-geometric -"1ei",@stdlib/random/strided/invgamma -"1ej",@stdlib/random-strided-invgamma -"1ek",@stdlib/random/strided/lognormal -"1el",@stdlib/random-strided-lognormal -"1em",@stdlib/random/strided/minstd-shuffle -"1en",@stdlib/random-strided-minstd-shuffle -"1eo",@stdlib/random/strided/minstd -"1ep",@stdlib/random-strided-minstd -"1eq",@stdlib/random/strided/mt19937 -"1er",@stdlib/random-strided-mt19937 -"1es",@stdlib/random/strided/normal -"1et",@stdlib/random-strided-normal -"1eu",@stdlib/random/strided -"1ev",@stdlib/random-strided -"1ri",@stdlib/random/strided/poisson -"1rj",@stdlib/random-strided-poisson -"1ew",@stdlib/random/strided/randu -"1ex",@stdlib/random-strided-randu -"1rk",@stdlib/random/strided/rayleigh -"1rl",@stdlib/random-strided-rayleigh -"1rm",@stdlib/random/strided/t -"1rn",@stdlib/random-strided-t -"1ro",@stdlib/random/strided/tools/binary-factory -"1rp",@stdlib/random-strided-tools-binary-factory -"1rq",@stdlib/random/strided/tools -"1rr",@stdlib/random-strided-tools -"1rs",@stdlib/random/strided/tools/ternary-factory -"1rt",@stdlib/random-strided-tools-ternary-factory -"1ru",@stdlib/random/strided/tools/unary-factory -"1rv",@stdlib/random-strided-tools-unary-factory -"1ey",@stdlib/random/strided/uniform -"1ez",@stdlib/random-strided-uniform -"1f0",@stdlib/random/strided/weibull -"1f1",@stdlib/random-strided-weibull -"2qS",@stdlib/random/t -"2qT",@stdlib/random-t -"2HE",@stdlib/random/tools/binary-factory -"2HF",@stdlib/random-tools-binary-factory -"2HG",@stdlib/random/tools/binary -"2HH",@stdlib/random-tools-binary -"2GK",@stdlib/random/tools -"2GL",@stdlib/random-tools -"2qU",@stdlib/random/tools/ternary-factory -"2qV",@stdlib/random-tools-ternary-factory -"2qW",@stdlib/random/tools/ternary -"2qX",@stdlib/random-tools-ternary -"2GM",@stdlib/random/tools/unary-factory -"2GN",@stdlib/random-tools-unary-factory -"2GO",@stdlib/random/tools/unary -"2GP",@stdlib/random-tools-unary -"2qY",@stdlib/random/triangular -"2qZ",@stdlib/random-triangular -"2HI",@stdlib/random/uniform -"2HJ",@stdlib/random-uniform -"2qa",@stdlib/random/weibull -"2qb",@stdlib/random-weibull -"0s2",@stdlib/regexp/basename-posix -"0s3",@stdlib/regexp-basename-posix -"0s4",@stdlib/regexp/basename-windows -"0s5",@stdlib/regexp-basename-windows -"0s6",@stdlib/regexp/basename -"0s7",@stdlib/regexp-basename -"0s8",@stdlib/regexp/color-hexadecimal -"0s9",@stdlib/regexp-color-hexadecimal -"0sA",@stdlib/regexp/decimal-number -"0sB",@stdlib/regexp-decimal-number -"0sC",@stdlib/regexp/dirname-posix -"0sD",@stdlib/regexp-dirname-posix -"0sE",@stdlib/regexp/dirname-windows -"0sF",@stdlib/regexp-dirname-windows -"0sG",@stdlib/regexp/dirname -"0sH",@stdlib/regexp-dirname -"1f2",@stdlib/regexp/duration-string -"1f3",@stdlib/regexp-duration-string -"0sI",@stdlib/regexp/eol -"0sJ",@stdlib/regexp-eol -"0sK",@stdlib/regexp/extended-length-path -"0sL",@stdlib/regexp-extended-length-path -"0sM",@stdlib/regexp/extname-posix -"0sN",@stdlib/regexp-extname-posix -"0sO",@stdlib/regexp/extname-windows -"0sP",@stdlib/regexp-extname-windows -"0sQ",@stdlib/regexp/extname -"0sR",@stdlib/regexp-extname -"0sS",@stdlib/regexp/filename-posix -"0sT",@stdlib/regexp-filename-posix -"0sU",@stdlib/regexp/filename-windows -"0sV",@stdlib/regexp-filename-windows -"0sW",@stdlib/regexp/filename -"0sX",@stdlib/regexp-filename -"0sY",@stdlib/regexp/function-name -"0sZ",@stdlib/regexp-function-name -"0sa",@stdlib/regexp/native-function -"0sb",@stdlib/regexp-native-function -"0sd",@stdlib/regexp -"0se",@stdlib/regexp/regexp -"0sf",@stdlib/regexp-regexp -"1f4",@stdlib/regexp/reviver -"1f5",@stdlib/regexp-reviver -"1f6",@stdlib/regexp/semver -"1f7",@stdlib/regexp-semver -"1f8",@stdlib/regexp/to-json -"1f9",@stdlib/regexp-to-json -"0sg",@stdlib/regexp/unc-path -"0sh",@stdlib/regexp-unc-path -"0si",@stdlib/regexp/utf16-surrogate-pair -"0sj",@stdlib/regexp-utf16-surrogate-pair -"0sk",@stdlib/regexp/utf16-unpaired-surrogate -"0sl",@stdlib/regexp-utf16-unpaired-surrogate -"0sm",@stdlib/regexp/whitespace -"0sn",@stdlib/regexp-whitespace -"0so",@stdlib/repl/code-blocks -"0sp",@stdlib/repl-code-blocks -"0sq",@stdlib/repl/help -"0sr",@stdlib/repl-help -"0ss",@stdlib/repl/info -"0st",@stdlib/repl-info -"0sv",@stdlib/repl -"0sw",@stdlib/repl/presentation -"0sx",@stdlib/repl-presentation -"0sy",@stdlib/repl/server -"0sz",@stdlib/repl-server -"0t0",@stdlib/repl/signature -"0t1",@stdlib/repl-signature -"0t2",@stdlib/repl/typed-signature -"0t3",@stdlib/repl-typed-signature -"0t4",@stdlib/simulate/iter/awgn -"0t5",@stdlib/simulate-iter-awgn -"0t6",@stdlib/simulate/iter/awln -"0t7",@stdlib/simulate-iter-awln -"0t8",@stdlib/simulate/iter/awun -"0t9",@stdlib/simulate-iter-awun -"0tA",@stdlib/simulate/iter/bartlett-hann-pulse -"0tB",@stdlib/simulate-iter-bartlett-hann-pulse -"0tC",@stdlib/simulate/iter/bartlett-pulse -"0tD",@stdlib/simulate-iter-bartlett-pulse -"0tE",@stdlib/simulate/iter/cosine-wave -"0tF",@stdlib/simulate-iter-cosine-wave -"0tG",@stdlib/simulate/iter/dirac-comb -"0tH",@stdlib/simulate-iter-dirac-comb -"0tI",@stdlib/simulate/iter/flat-top-pulse -"0tJ",@stdlib/simulate-iter-flat-top-pulse -"0tK",@stdlib/simulate/iter/hann-pulse -"0tL",@stdlib/simulate-iter-hann-pulse -"0tM",@stdlib/simulate/iter/lanczos-pulse -"0tN",@stdlib/simulate-iter-lanczos-pulse -"0tO",@stdlib/simulate/iter -"0tP",@stdlib/simulate-iter -"0tQ",@stdlib/simulate/iter/periodic-sinc -"0tR",@stdlib/simulate-iter-periodic-sinc -"0tS",@stdlib/simulate/iter/pulse -"0tT",@stdlib/simulate-iter-pulse -"0tU",@stdlib/simulate/iter/sawtooth-wave -"0tV",@stdlib/simulate-iter-sawtooth-wave -"0tW",@stdlib/simulate/iter/sine-wave -"0tX",@stdlib/simulate-iter-sine-wave -"0tY",@stdlib/simulate/iter/square-wave -"0tZ",@stdlib/simulate-iter-square-wave -"0ta",@stdlib/simulate/iter/triangle-wave -"0tb",@stdlib/simulate-iter-triangle-wave -"0td",@stdlib/simulate -"1kc",@stdlib/slice/base/args2multislice -"1kd",@stdlib/slice-base-args2multislice -"1rw",@stdlib/slice/base/int2slice -"1rx",@stdlib/slice-base-int2slice -"1j8",@stdlib/slice/base/length -"1j9",@stdlib/slice-base-length -"1jW",@stdlib/slice/base/nonreduced-dimensions -"1jX",@stdlib/slice-base-nonreduced-dimensions -"1jA",@stdlib/slice/base/normalize-multi-slice -"1jB",@stdlib/slice-base-normalize-multi-slice -"1jC",@stdlib/slice/base/normalize-slice -"1jD",@stdlib/slice-base-normalize-slice -"1io",@stdlib/slice/base -"1ip",@stdlib/slice-base -"1jY",@stdlib/slice/base/reduced-dimensions -"1jZ",@stdlib/slice-base-reduced-dimensions -"1ja",@stdlib/slice/base/sargs2multislice -"1jb",@stdlib/slice-base-sargs2multislice -"1jE",@stdlib/slice/base/seq2multislice -"1jF",@stdlib/slice-base-seq2multislice -"1iq",@stdlib/slice/base/seq2slice -"1ir",@stdlib/slice-base-seq2slice -"1jG",@stdlib/slice/base/shape -"1jH",@stdlib/slice-base-shape -"1is",@stdlib/slice/base/slice2seq -"1it",@stdlib/slice-base-slice2seq -"1iu",@stdlib/slice/base/str2multislice -"1iv",@stdlib/slice-base-str2multislice -"1iw",@stdlib/slice/base/str2slice -"1ix",@stdlib/slice-base-str2slice -"1iy",@stdlib/slice/ctor -"1iz",@stdlib/slice-ctor -"1j0",@stdlib/slice/multi -"1j1",@stdlib/slice-multi -"1j3",@stdlib/slice -"1j4",@stdlib/slice/seq2slice -"1j5",@stdlib/slice-seq2slice -"0te",@stdlib/stats/anova1 -"0tf",@stdlib/stats-anova1 -"2JO",@stdlib/stats/array/max-by -"2JP",@stdlib/stats-array-max-by -"2EY",@stdlib/stats/array/max -"2EZ",@stdlib/stats-array-max -"2GQ",@stdlib/stats/array/maxabs -"2GR",@stdlib/stats-array-maxabs -"2GS",@stdlib/stats/array/maxsorted -"2GT",@stdlib/stats-array-maxsorted -"2HK",@stdlib/stats/array/mean -"2HL",@stdlib/stats-array-mean -"2LO",@stdlib/stats/array/meankbn -"2LP",@stdlib/stats-array-meankbn -"2LQ",@stdlib/stats/array/meankbn2 -"2LR",@stdlib/stats-array-meankbn2 -"2LS",@stdlib/stats/array/meanors -"2LT",@stdlib/stats-array-meanors -"2LU",@stdlib/stats/array/meanpn -"2LV",@stdlib/stats-array-meanpn -"2LW",@stdlib/stats/array/meanpw -"2LX",@stdlib/stats-array-meanpw -"2LY",@stdlib/stats/array/meanwd -"2LZ",@stdlib/stats-array-meanwd -"2JQ",@stdlib/stats/array/mediansorted -"2JR",@stdlib/stats-array-mediansorted -"2qc",@stdlib/stats/array/midrange-by -"2qd",@stdlib/stats-array-midrange-by -"2qe",@stdlib/stats/array/midrange -"2qf",@stdlib/stats-array-midrange -"2JS",@stdlib/stats/array/min-by -"2JT",@stdlib/stats-array-min-by -"2Ew",@stdlib/stats/array/min -"2Ex",@stdlib/stats-array-min -"2Gq",@stdlib/stats/array/minabs -"2Gr",@stdlib/stats-array-minabs -"2Gs",@stdlib/stats/array/minsorted -"2Gt",@stdlib/stats-array-minsorted -"2Ea",@stdlib/stats/array/mskmax -"2Eb",@stdlib/stats-array-mskmax -"2qg",@stdlib/stats/array/mskmaxabs -"2qh",@stdlib/stats-array-mskmaxabs -"2qi",@stdlib/stats/array/mskmidrange -"2qj",@stdlib/stats-array-mskmidrange -"2Gu",@stdlib/stats/array/mskmin -"2Gv",@stdlib/stats-array-mskmin -"2qk",@stdlib/stats/array/mskminabs -"2ql",@stdlib/stats-array-mskminabs -"2HM",@stdlib/stats/array/mskrange -"2HN",@stdlib/stats-array-mskrange -"2JU",@stdlib/stats/array/nanmax-by -"2JV",@stdlib/stats-array-nanmax-by -"2Ec",@stdlib/stats/array/nanmax -"2Ed",@stdlib/stats-array-nanmax -"2JW",@stdlib/stats/array/nanmaxabs -"2JX",@stdlib/stats-array-nanmaxabs -"2La",@stdlib/stats/array/nanmean -"2Lb",@stdlib/stats-array-nanmean -"2Oi",@stdlib/stats/array/nanmeanors -"2Oj",@stdlib/stats-array-nanmeanors -"2Ok",@stdlib/stats/array/nanmeanpn -"2Ol",@stdlib/stats-array-nanmeanpn -"2Om",@stdlib/stats/array/nanmeanwd -"2On",@stdlib/stats-array-nanmeanwd -"2qm",@stdlib/stats/array/nanmidrange-by -"2qn",@stdlib/stats-array-nanmidrange-by -"2qo",@stdlib/stats/array/nanmidrange -"2qp",@stdlib/stats-array-nanmidrange -"2JY",@stdlib/stats/array/nanmin-by -"2JZ",@stdlib/stats-array-nanmin-by -"2HO",@stdlib/stats/array/nanmin -"2HP",@stdlib/stats-array-nanmin -"2Ja",@stdlib/stats/array/nanminabs -"2Jb",@stdlib/stats-array-nanminabs -"2Lc",@stdlib/stats/array/nanmskmax -"2Ld",@stdlib/stats-array-nanmskmax -"2qq",@stdlib/stats/array/nanmskmidrange -"2qr",@stdlib/stats-array-nanmskmidrange -"2Oo",@stdlib/stats/array/nanmskmin -"2Op",@stdlib/stats-array-nanmskmin -"2Oq",@stdlib/stats/array/nanmskrange -"2Or",@stdlib/stats-array-nanmskrange -"2Os",@stdlib/stats/array/nanrange-by -"2Ot",@stdlib/stats-array-nanrange-by -"2Jc",@stdlib/stats/array/nanrange -"2Jd",@stdlib/stats-array-nanrange -"2Ou",@stdlib/stats/array/nanstdev -"2Ov",@stdlib/stats-array-nanstdev -"2Ow",@stdlib/stats/array/nanstdevch -"2Ox",@stdlib/stats-array-nanstdevch -"2S0",@stdlib/stats/array/nanstdevpn -"2S1",@stdlib/stats-array-nanstdevpn -"2S2",@stdlib/stats/array/nanstdevtk -"2S3",@stdlib/stats-array-nanstdevtk -"2S4",@stdlib/stats/array/nanstdevwd -"2S5",@stdlib/stats-array-nanstdevwd -"2S6",@stdlib/stats/array/nanstdevyc -"2S7",@stdlib/stats-array-nanstdevyc -"2Oy",@stdlib/stats/array/nanvariance -"2Oz",@stdlib/stats-array-nanvariance -"2P0",@stdlib/stats/array/nanvariancech -"2P1",@stdlib/stats-array-nanvariancech -"2P2",@stdlib/stats/array/nanvariancepn -"2P3",@stdlib/stats-array-nanvariancepn -"2P4",@stdlib/stats/array/nanvariancetk -"2P5",@stdlib/stats-array-nanvariancetk -"2P6",@stdlib/stats/array/nanvariancewd -"2P7",@stdlib/stats-array-nanvariancewd -"2P8",@stdlib/stats/array/nanvarianceyc -"2P9",@stdlib/stats-array-nanvarianceyc -"2Je",@stdlib/stats/array -"2Jf",@stdlib/stats-array -"2PA",@stdlib/stats/array/range-by -"2PB",@stdlib/stats-array-range-by -"2Jg",@stdlib/stats/array/range -"2Jh",@stdlib/stats-array-range -"2qs",@stdlib/stats/array/rangeabs -"2qt",@stdlib/stats-array-rangeabs -"2PC",@stdlib/stats/array/stdev -"2PD",@stdlib/stats-array-stdev -"2PE",@stdlib/stats/array/stdevch -"2PF",@stdlib/stats-array-stdevch -"2PG",@stdlib/stats/array/stdevpn -"2PH",@stdlib/stats-array-stdevpn -"2PI",@stdlib/stats/array/stdevtk -"2PJ",@stdlib/stats-array-stdevtk -"2PK",@stdlib/stats/array/stdevwd -"2PL",@stdlib/stats-array-stdevwd -"2PM",@stdlib/stats/array/stdevyc -"2PN",@stdlib/stats-array-stdevyc -"2PO",@stdlib/stats/array/variance -"2PP",@stdlib/stats-array-variance -"2PQ",@stdlib/stats/array/variancech -"2PR",@stdlib/stats-array-variancech -"2PS",@stdlib/stats/array/variancepn -"2PT",@stdlib/stats-array-variancepn -"2PU",@stdlib/stats/array/variancetk -"2PV",@stdlib/stats-array-variancetk -"2PW",@stdlib/stats/array/variancewd -"2PX",@stdlib/stats-array-variancewd -"2Ee",@stdlib/stats/array/varianceyc -"2Ef",@stdlib/stats-array-varianceyc -"0tg",@stdlib/stats/bartlett-test -"0th",@stdlib/stats-bartlett-test -"0ti",@stdlib/stats/base/cumax -"0tj",@stdlib/stats-base-cumax -"0tk",@stdlib/stats/base/cumaxabs -"0tl",@stdlib/stats-base-cumaxabs -"0tm",@stdlib/stats/base/cumin -"0tn",@stdlib/stats-base-cumin -"0to",@stdlib/stats/base/cuminabs -"0tp",@stdlib/stats-base-cuminabs -"0ty",@stdlib/stats/base/dists/arcsine/cdf -"0tz",@stdlib/stats-base-dists-arcsine-cdf -"0u0",@stdlib/stats/base/dists/arcsine/ctor -"0u1",@stdlib/stats-base-dists-arcsine-ctor -"0u2",@stdlib/stats/base/dists/arcsine/entropy -"0u3",@stdlib/stats-base-dists-arcsine-entropy -"0u4",@stdlib/stats/base/dists/arcsine/kurtosis -"0u5",@stdlib/stats-base-dists-arcsine-kurtosis -"0u6",@stdlib/stats/base/dists/arcsine/logcdf -"0u7",@stdlib/stats-base-dists-arcsine-logcdf -"0u8",@stdlib/stats/base/dists/arcsine/logpdf -"0u9",@stdlib/stats-base-dists-arcsine-logpdf -"0uA",@stdlib/stats/base/dists/arcsine/mean -"0uB",@stdlib/stats-base-dists-arcsine-mean -"0uC",@stdlib/stats/base/dists/arcsine/median -"0uD",@stdlib/stats-base-dists-arcsine-median -"0uE",@stdlib/stats/base/dists/arcsine/mode -"0uF",@stdlib/stats-base-dists-arcsine-mode -"0uG",@stdlib/stats/base/dists/arcsine -"0uH",@stdlib/stats-base-dists-arcsine -"0uI",@stdlib/stats/base/dists/arcsine/pdf -"0uJ",@stdlib/stats-base-dists-arcsine-pdf -"0uK",@stdlib/stats/base/dists/arcsine/quantile -"0uL",@stdlib/stats-base-dists-arcsine-quantile -"0uM",@stdlib/stats/base/dists/arcsine/skewness -"0uN",@stdlib/stats-base-dists-arcsine-skewness -"0uO",@stdlib/stats/base/dists/arcsine/stdev -"0uP",@stdlib/stats-base-dists-arcsine-stdev -"0uQ",@stdlib/stats/base/dists/arcsine/variance -"0uR",@stdlib/stats-base-dists-arcsine-variance -"0uS",@stdlib/stats/base/dists/bernoulli/cdf -"0uT",@stdlib/stats-base-dists-bernoulli-cdf -"0uU",@stdlib/stats/base/dists/bernoulli/ctor -"0uV",@stdlib/stats-base-dists-bernoulli-ctor -"0uW",@stdlib/stats/base/dists/bernoulli/entropy -"0uX",@stdlib/stats-base-dists-bernoulli-entropy -"0uY",@stdlib/stats/base/dists/bernoulli/kurtosis -"0uZ",@stdlib/stats-base-dists-bernoulli-kurtosis -"0ua",@stdlib/stats/base/dists/bernoulli/mean -"0ub",@stdlib/stats-base-dists-bernoulli-mean -"0uc",@stdlib/stats/base/dists/bernoulli/median -"0ud",@stdlib/stats-base-dists-bernoulli-median -"0ue",@stdlib/stats/base/dists/bernoulli/mgf -"0uf",@stdlib/stats-base-dists-bernoulli-mgf -"0ug",@stdlib/stats/base/dists/bernoulli/mode -"0uh",@stdlib/stats-base-dists-bernoulli-mode -"0ui",@stdlib/stats/base/dists/bernoulli -"0uj",@stdlib/stats-base-dists-bernoulli -"0uk",@stdlib/stats/base/dists/bernoulli/pmf -"0ul",@stdlib/stats-base-dists-bernoulli-pmf -"0um",@stdlib/stats/base/dists/bernoulli/quantile -"0un",@stdlib/stats-base-dists-bernoulli-quantile -"0uo",@stdlib/stats/base/dists/bernoulli/skewness -"0up",@stdlib/stats-base-dists-bernoulli-skewness -"0uq",@stdlib/stats/base/dists/bernoulli/stdev -"0ur",@stdlib/stats-base-dists-bernoulli-stdev -"0us",@stdlib/stats/base/dists/bernoulli/variance -"0ut",@stdlib/stats-base-dists-bernoulli-variance -"0uu",@stdlib/stats/base/dists/beta/cdf -"0uv",@stdlib/stats-base-dists-beta-cdf -"0uw",@stdlib/stats/base/dists/beta/ctor -"0ux",@stdlib/stats-base-dists-beta-ctor -"0uy",@stdlib/stats/base/dists/beta/entropy -"0uz",@stdlib/stats-base-dists-beta-entropy -"0v0",@stdlib/stats/base/dists/beta/kurtosis -"0v1",@stdlib/stats-base-dists-beta-kurtosis -"0v2",@stdlib/stats/base/dists/beta/logcdf -"0v3",@stdlib/stats-base-dists-beta-logcdf -"0v4",@stdlib/stats/base/dists/beta/logpdf -"0v5",@stdlib/stats-base-dists-beta-logpdf -"0v6",@stdlib/stats/base/dists/beta/mean -"0v7",@stdlib/stats-base-dists-beta-mean -"0v8",@stdlib/stats/base/dists/beta/median -"0v9",@stdlib/stats-base-dists-beta-median -"0vA",@stdlib/stats/base/dists/beta/mgf -"0vB",@stdlib/stats-base-dists-beta-mgf -"0vC",@stdlib/stats/base/dists/beta/mode -"0vD",@stdlib/stats-base-dists-beta-mode -"0vE",@stdlib/stats/base/dists/beta -"0vF",@stdlib/stats-base-dists-beta -"0vG",@stdlib/stats/base/dists/beta/pdf -"0vH",@stdlib/stats-base-dists-beta-pdf -"0vI",@stdlib/stats/base/dists/beta/quantile -"0vJ",@stdlib/stats-base-dists-beta-quantile -"0vK",@stdlib/stats/base/dists/beta/skewness -"0vL",@stdlib/stats-base-dists-beta-skewness -"0vM",@stdlib/stats/base/dists/beta/stdev -"0vN",@stdlib/stats-base-dists-beta-stdev -"0vO",@stdlib/stats/base/dists/beta/variance -"0vP",@stdlib/stats-base-dists-beta-variance -"0vQ",@stdlib/stats/base/dists/betaprime/cdf -"0vR",@stdlib/stats-base-dists-betaprime-cdf -"0vS",@stdlib/stats/base/dists/betaprime/ctor -"0vT",@stdlib/stats-base-dists-betaprime-ctor -"0vU",@stdlib/stats/base/dists/betaprime/kurtosis -"0vV",@stdlib/stats-base-dists-betaprime-kurtosis -"0vW",@stdlib/stats/base/dists/betaprime/logcdf -"0vX",@stdlib/stats-base-dists-betaprime-logcdf -"0vY",@stdlib/stats/base/dists/betaprime/logpdf -"0vZ",@stdlib/stats-base-dists-betaprime-logpdf -"0va",@stdlib/stats/base/dists/betaprime/mean -"0vb",@stdlib/stats-base-dists-betaprime-mean -"0vc",@stdlib/stats/base/dists/betaprime/mode -"0vd",@stdlib/stats-base-dists-betaprime-mode -"0ve",@stdlib/stats/base/dists/betaprime -"0vf",@stdlib/stats-base-dists-betaprime -"0vg",@stdlib/stats/base/dists/betaprime/pdf -"0vh",@stdlib/stats-base-dists-betaprime-pdf -"0vi",@stdlib/stats/base/dists/betaprime/quantile -"0vj",@stdlib/stats-base-dists-betaprime-quantile -"0vk",@stdlib/stats/base/dists/betaprime/skewness -"0vl",@stdlib/stats-base-dists-betaprime-skewness -"0vm",@stdlib/stats/base/dists/betaprime/stdev -"0vn",@stdlib/stats-base-dists-betaprime-stdev -"0vo",@stdlib/stats/base/dists/betaprime/variance -"0vp",@stdlib/stats-base-dists-betaprime-variance -"0vq",@stdlib/stats/base/dists/binomial/cdf -"0vr",@stdlib/stats-base-dists-binomial-cdf -"0vs",@stdlib/stats/base/dists/binomial/ctor -"0vt",@stdlib/stats-base-dists-binomial-ctor -"0vu",@stdlib/stats/base/dists/binomial/entropy -"0vv",@stdlib/stats-base-dists-binomial-entropy -"0vw",@stdlib/stats/base/dists/binomial/kurtosis -"0vx",@stdlib/stats-base-dists-binomial-kurtosis -"0vy",@stdlib/stats/base/dists/binomial/logpmf -"0vz",@stdlib/stats-base-dists-binomial-logpmf -"0w0",@stdlib/stats/base/dists/binomial/mean -"0w1",@stdlib/stats-base-dists-binomial-mean -"0w2",@stdlib/stats/base/dists/binomial/median -"0w3",@stdlib/stats-base-dists-binomial-median -"0w4",@stdlib/stats/base/dists/binomial/mgf -"0w5",@stdlib/stats-base-dists-binomial-mgf -"0w6",@stdlib/stats/base/dists/binomial/mode -"0w7",@stdlib/stats-base-dists-binomial-mode -"0w8",@stdlib/stats/base/dists/binomial -"0w9",@stdlib/stats-base-dists-binomial -"0wA",@stdlib/stats/base/dists/binomial/pmf -"0wB",@stdlib/stats-base-dists-binomial-pmf -"0wC",@stdlib/stats/base/dists/binomial/quantile -"0wD",@stdlib/stats-base-dists-binomial-quantile -"0wE",@stdlib/stats/base/dists/binomial/skewness -"0wF",@stdlib/stats-base-dists-binomial-skewness -"0wG",@stdlib/stats/base/dists/binomial/stdev -"0wH",@stdlib/stats-base-dists-binomial-stdev -"0wI",@stdlib/stats/base/dists/binomial/variance -"0wJ",@stdlib/stats-base-dists-binomial-variance -"28S",@stdlib/stats/base/dists/bradford/cdf -"28T",@stdlib/stats-base-dists-bradford-cdf -"28U",@stdlib/stats/base/dists/bradford/entropy -"28V",@stdlib/stats-base-dists-bradford-entropy -"28W",@stdlib/stats/base/dists/bradford/mean -"28X",@stdlib/stats-base-dists-bradford-mean -"28Y",@stdlib/stats/base/dists/bradford/median -"28Z",@stdlib/stats-base-dists-bradford-median -"28a",@stdlib/stats/base/dists/bradford/mode -"28b",@stdlib/stats-base-dists-bradford-mode -"2U4",@stdlib/stats/base/dists/bradford -"2U5",@stdlib/stats-base-dists-bradford -"2Ao",@stdlib/stats/base/dists/bradford/pdf -"2Ap",@stdlib/stats-base-dists-bradford-pdf -"2Aq",@stdlib/stats/base/dists/bradford/quantile -"2Ar",@stdlib/stats-base-dists-bradford-quantile -"2PY",@stdlib/stats/base/dists/bradford/skewness -"2PZ",@stdlib/stats-base-dists-bradford-skewness -"28c",@stdlib/stats/base/dists/bradford/stdev -"28d",@stdlib/stats-base-dists-bradford-stdev -"28e",@stdlib/stats/base/dists/bradford/variance -"28f",@stdlib/stats-base-dists-bradford-variance -"0wK",@stdlib/stats/base/dists/cauchy/cdf -"0wL",@stdlib/stats-base-dists-cauchy-cdf -"0wM",@stdlib/stats/base/dists/cauchy/ctor -"0wN",@stdlib/stats-base-dists-cauchy-ctor -"0wO",@stdlib/stats/base/dists/cauchy/entropy -"0wP",@stdlib/stats-base-dists-cauchy-entropy -"0wQ",@stdlib/stats/base/dists/cauchy/logcdf -"0wR",@stdlib/stats-base-dists-cauchy-logcdf -"0wS",@stdlib/stats/base/dists/cauchy/logpdf -"0wT",@stdlib/stats-base-dists-cauchy-logpdf -"0wU",@stdlib/stats/base/dists/cauchy/median -"0wV",@stdlib/stats-base-dists-cauchy-median -"0wW",@stdlib/stats/base/dists/cauchy/mode -"0wX",@stdlib/stats-base-dists-cauchy-mode -"0wY",@stdlib/stats/base/dists/cauchy -"0wZ",@stdlib/stats-base-dists-cauchy -"0wa",@stdlib/stats/base/dists/cauchy/pdf -"0wb",@stdlib/stats-base-dists-cauchy-pdf -"0wc",@stdlib/stats/base/dists/cauchy/quantile -"0wd",@stdlib/stats-base-dists-cauchy-quantile -"0we",@stdlib/stats/base/dists/chi/cdf -"0wf",@stdlib/stats-base-dists-chi-cdf -"0wg",@stdlib/stats/base/dists/chi/ctor -"0wh",@stdlib/stats-base-dists-chi-ctor -"0wi",@stdlib/stats/base/dists/chi/entropy -"0wj",@stdlib/stats-base-dists-chi-entropy -"0wk",@stdlib/stats/base/dists/chi/kurtosis -"0wl",@stdlib/stats-base-dists-chi-kurtosis -"0wm",@stdlib/stats/base/dists/chi/logpdf -"0wn",@stdlib/stats-base-dists-chi-logpdf -"0wo",@stdlib/stats/base/dists/chi/mean -"0wp",@stdlib/stats-base-dists-chi-mean -"0wq",@stdlib/stats/base/dists/chi/mode -"0wr",@stdlib/stats-base-dists-chi-mode -"0ws",@stdlib/stats/base/dists/chi -"0wt",@stdlib/stats-base-dists-chi -"0wu",@stdlib/stats/base/dists/chi/pdf -"0wv",@stdlib/stats-base-dists-chi-pdf -"0ww",@stdlib/stats/base/dists/chi/quantile -"0wx",@stdlib/stats-base-dists-chi-quantile -"0wy",@stdlib/stats/base/dists/chi/skewness -"0wz",@stdlib/stats-base-dists-chi-skewness -"0x0",@stdlib/stats/base/dists/chi/stdev -"0x1",@stdlib/stats-base-dists-chi-stdev -"0x2",@stdlib/stats/base/dists/chi/variance -"0x3",@stdlib/stats-base-dists-chi-variance -"0x4",@stdlib/stats/base/dists/chisquare/cdf -"0x5",@stdlib/stats-base-dists-chisquare-cdf -"0x6",@stdlib/stats/base/dists/chisquare/ctor -"0x7",@stdlib/stats-base-dists-chisquare-ctor -"0x8",@stdlib/stats/base/dists/chisquare/entropy -"0x9",@stdlib/stats-base-dists-chisquare-entropy -"0xA",@stdlib/stats/base/dists/chisquare/kurtosis -"0xB",@stdlib/stats-base-dists-chisquare-kurtosis -"0xC",@stdlib/stats/base/dists/chisquare/logpdf -"0xD",@stdlib/stats-base-dists-chisquare-logpdf -"0xE",@stdlib/stats/base/dists/chisquare/mean -"0xF",@stdlib/stats-base-dists-chisquare-mean -"0xG",@stdlib/stats/base/dists/chisquare/median -"0xH",@stdlib/stats-base-dists-chisquare-median -"0xI",@stdlib/stats/base/dists/chisquare/mgf -"0xJ",@stdlib/stats-base-dists-chisquare-mgf -"0xK",@stdlib/stats/base/dists/chisquare/mode -"0xL",@stdlib/stats-base-dists-chisquare-mode -"0xM",@stdlib/stats/base/dists/chisquare -"0xN",@stdlib/stats-base-dists-chisquare -"0xO",@stdlib/stats/base/dists/chisquare/pdf -"0xP",@stdlib/stats-base-dists-chisquare-pdf -"0xQ",@stdlib/stats/base/dists/chisquare/quantile -"0xR",@stdlib/stats-base-dists-chisquare-quantile -"0xS",@stdlib/stats/base/dists/chisquare/skewness -"0xT",@stdlib/stats-base-dists-chisquare-skewness -"0xU",@stdlib/stats/base/dists/chisquare/stdev -"0xV",@stdlib/stats-base-dists-chisquare-stdev -"0xW",@stdlib/stats/base/dists/chisquare/variance -"0xX",@stdlib/stats-base-dists-chisquare-variance -"0xY",@stdlib/stats/base/dists/cosine/cdf -"0xZ",@stdlib/stats-base-dists-cosine-cdf -"0xa",@stdlib/stats/base/dists/cosine/ctor -"0xb",@stdlib/stats-base-dists-cosine-ctor -"0xc",@stdlib/stats/base/dists/cosine/kurtosis -"0xd",@stdlib/stats-base-dists-cosine-kurtosis -"0xe",@stdlib/stats/base/dists/cosine/logcdf -"0xf",@stdlib/stats-base-dists-cosine-logcdf -"0xg",@stdlib/stats/base/dists/cosine/logpdf -"0xh",@stdlib/stats-base-dists-cosine-logpdf -"0xi",@stdlib/stats/base/dists/cosine/mean -"0xj",@stdlib/stats-base-dists-cosine-mean -"0xk",@stdlib/stats/base/dists/cosine/median -"0xl",@stdlib/stats-base-dists-cosine-median -"0xm",@stdlib/stats/base/dists/cosine/mgf -"0xn",@stdlib/stats-base-dists-cosine-mgf -"0xo",@stdlib/stats/base/dists/cosine/mode -"0xp",@stdlib/stats-base-dists-cosine-mode -"0xq",@stdlib/stats/base/dists/cosine -"0xr",@stdlib/stats-base-dists-cosine -"0xs",@stdlib/stats/base/dists/cosine/pdf -"0xt",@stdlib/stats-base-dists-cosine-pdf -"0xu",@stdlib/stats/base/dists/cosine/quantile -"0xv",@stdlib/stats-base-dists-cosine-quantile -"0xw",@stdlib/stats/base/dists/cosine/skewness -"0xx",@stdlib/stats-base-dists-cosine-skewness -"0xy",@stdlib/stats/base/dists/cosine/stdev -"0xz",@stdlib/stats-base-dists-cosine-stdev -"0y0",@stdlib/stats/base/dists/cosine/variance -"0y1",@stdlib/stats-base-dists-cosine-variance -"0y2",@stdlib/stats/base/dists/degenerate/cdf -"0y3",@stdlib/stats-base-dists-degenerate-cdf -"0y4",@stdlib/stats/base/dists/degenerate/ctor -"0y5",@stdlib/stats-base-dists-degenerate-ctor -"0y6",@stdlib/stats/base/dists/degenerate/entropy -"0y7",@stdlib/stats-base-dists-degenerate-entropy -"0y8",@stdlib/stats/base/dists/degenerate/logcdf -"0y9",@stdlib/stats-base-dists-degenerate-logcdf -"0yA",@stdlib/stats/base/dists/degenerate/logpdf -"0yB",@stdlib/stats-base-dists-degenerate-logpdf -"0yC",@stdlib/stats/base/dists/degenerate/logpmf -"0yD",@stdlib/stats-base-dists-degenerate-logpmf -"0yE",@stdlib/stats/base/dists/degenerate/mean -"0yF",@stdlib/stats-base-dists-degenerate-mean -"0yG",@stdlib/stats/base/dists/degenerate/median -"0yH",@stdlib/stats-base-dists-degenerate-median -"0yI",@stdlib/stats/base/dists/degenerate/mgf -"0yJ",@stdlib/stats-base-dists-degenerate-mgf -"0yK",@stdlib/stats/base/dists/degenerate/mode -"0yL",@stdlib/stats-base-dists-degenerate-mode -"0yM",@stdlib/stats/base/dists/degenerate -"0yN",@stdlib/stats-base-dists-degenerate -"0yO",@stdlib/stats/base/dists/degenerate/pdf -"0yP",@stdlib/stats-base-dists-degenerate-pdf -"0yQ",@stdlib/stats/base/dists/degenerate/pmf -"0yR",@stdlib/stats-base-dists-degenerate-pmf -"0yS",@stdlib/stats/base/dists/degenerate/quantile -"0yT",@stdlib/stats-base-dists-degenerate-quantile -"0yU",@stdlib/stats/base/dists/degenerate/stdev -"0yV",@stdlib/stats-base-dists-degenerate-stdev -"0yW",@stdlib/stats/base/dists/degenerate/variance -"0yX",@stdlib/stats-base-dists-degenerate-variance -"0yY",@stdlib/stats/base/dists/discrete-uniform/cdf -"0yZ",@stdlib/stats-base-dists-discrete-uniform-cdf -"0ya",@stdlib/stats/base/dists/discrete-uniform/ctor -"0yb",@stdlib/stats-base-dists-discrete-uniform-ctor -"0yc",@stdlib/stats/base/dists/discrete-uniform/entropy -"0yd",@stdlib/stats-base-dists-discrete-uniform-entropy -"0ye",@stdlib/stats/base/dists/discrete-uniform/kurtosis -"0yf",@stdlib/stats-base-dists-discrete-uniform-kurtosis -"0yg",@stdlib/stats/base/dists/discrete-uniform/logcdf -"0yh",@stdlib/stats-base-dists-discrete-uniform-logcdf -"0yi",@stdlib/stats/base/dists/discrete-uniform/logpmf -"0yj",@stdlib/stats-base-dists-discrete-uniform-logpmf -"0yk",@stdlib/stats/base/dists/discrete-uniform/mean -"0yl",@stdlib/stats-base-dists-discrete-uniform-mean -"0ym",@stdlib/stats/base/dists/discrete-uniform/median -"0yn",@stdlib/stats-base-dists-discrete-uniform-median -"0yo",@stdlib/stats/base/dists/discrete-uniform/mgf -"0yp",@stdlib/stats-base-dists-discrete-uniform-mgf -"0yq",@stdlib/stats/base/dists/discrete-uniform -"0yr",@stdlib/stats-base-dists-discrete-uniform -"0ys",@stdlib/stats/base/dists/discrete-uniform/pmf -"0yt",@stdlib/stats-base-dists-discrete-uniform-pmf -"0yu",@stdlib/stats/base/dists/discrete-uniform/quantile -"0yv",@stdlib/stats-base-dists-discrete-uniform-quantile -"0yw",@stdlib/stats/base/dists/discrete-uniform/skewness -"0yx",@stdlib/stats-base-dists-discrete-uniform-skewness -"0yy",@stdlib/stats/base/dists/discrete-uniform/stdev -"0yz",@stdlib/stats-base-dists-discrete-uniform-stdev -"0z0",@stdlib/stats/base/dists/discrete-uniform/variance -"0z1",@stdlib/stats-base-dists-discrete-uniform-variance -"0z2",@stdlib/stats/base/dists/erlang/cdf -"0z3",@stdlib/stats-base-dists-erlang-cdf -"0z4",@stdlib/stats/base/dists/erlang/ctor -"0z5",@stdlib/stats-base-dists-erlang-ctor -"0z6",@stdlib/stats/base/dists/erlang/entropy -"0z7",@stdlib/stats-base-dists-erlang-entropy -"0z8",@stdlib/stats/base/dists/erlang/kurtosis -"0z9",@stdlib/stats-base-dists-erlang-kurtosis -"0zA",@stdlib/stats/base/dists/erlang/logpdf -"0zB",@stdlib/stats-base-dists-erlang-logpdf -"0zC",@stdlib/stats/base/dists/erlang/mean -"0zD",@stdlib/stats-base-dists-erlang-mean -"0zE",@stdlib/stats/base/dists/erlang/mgf -"0zF",@stdlib/stats-base-dists-erlang-mgf -"0zG",@stdlib/stats/base/dists/erlang/mode -"0zH",@stdlib/stats-base-dists-erlang-mode -"0zI",@stdlib/stats/base/dists/erlang -"0zJ",@stdlib/stats-base-dists-erlang -"0zK",@stdlib/stats/base/dists/erlang/pdf -"0zL",@stdlib/stats-base-dists-erlang-pdf -"0zM",@stdlib/stats/base/dists/erlang/quantile -"0zN",@stdlib/stats-base-dists-erlang-quantile -"0zO",@stdlib/stats/base/dists/erlang/skewness -"0zP",@stdlib/stats-base-dists-erlang-skewness -"0zQ",@stdlib/stats/base/dists/erlang/stdev -"0zR",@stdlib/stats-base-dists-erlang-stdev -"0zS",@stdlib/stats/base/dists/erlang/variance -"0zT",@stdlib/stats-base-dists-erlang-variance -"0zU",@stdlib/stats/base/dists/exponential/cdf -"0zV",@stdlib/stats-base-dists-exponential-cdf -"0zW",@stdlib/stats/base/dists/exponential/ctor -"0zX",@stdlib/stats-base-dists-exponential-ctor -"0zY",@stdlib/stats/base/dists/exponential/entropy -"0zZ",@stdlib/stats-base-dists-exponential-entropy -"0za",@stdlib/stats/base/dists/exponential/kurtosis -"0zb",@stdlib/stats-base-dists-exponential-kurtosis -"0zc",@stdlib/stats/base/dists/exponential/logcdf -"0zd",@stdlib/stats-base-dists-exponential-logcdf -"0ze",@stdlib/stats/base/dists/exponential/logpdf -"0zf",@stdlib/stats-base-dists-exponential-logpdf -"0zg",@stdlib/stats/base/dists/exponential/mean -"0zh",@stdlib/stats-base-dists-exponential-mean -"0zi",@stdlib/stats/base/dists/exponential/median -"0zj",@stdlib/stats-base-dists-exponential-median -"0zk",@stdlib/stats/base/dists/exponential/mgf -"0zl",@stdlib/stats-base-dists-exponential-mgf -"0zm",@stdlib/stats/base/dists/exponential/mode -"0zn",@stdlib/stats-base-dists-exponential-mode -"0zo",@stdlib/stats/base/dists/exponential -"0zp",@stdlib/stats-base-dists-exponential -"0zq",@stdlib/stats/base/dists/exponential/pdf -"0zr",@stdlib/stats-base-dists-exponential-pdf -"0zs",@stdlib/stats/base/dists/exponential/quantile -"0zt",@stdlib/stats-base-dists-exponential-quantile -"0zu",@stdlib/stats/base/dists/exponential/skewness -"0zv",@stdlib/stats-base-dists-exponential-skewness -"0zw",@stdlib/stats/base/dists/exponential/stdev -"0zx",@stdlib/stats-base-dists-exponential-stdev -"0zy",@stdlib/stats/base/dists/exponential/variance -"0zz",@stdlib/stats-base-dists-exponential-variance -"10A",@stdlib/stats/base/dists/f/mode -"10B",@stdlib/stats-base-dists-f-mode -"10C",@stdlib/stats/base/dists/f -"10D",@stdlib/stats-base-dists-f -"10E",@stdlib/stats/base/dists/f/pdf -"10F",@stdlib/stats-base-dists-f-pdf -"10G",@stdlib/stats/base/dists/f/quantile -"10H",@stdlib/stats-base-dists-f-quantile -"10I",@stdlib/stats/base/dists/f/skewness -"10J",@stdlib/stats-base-dists-f-skewness -"10K",@stdlib/stats/base/dists/f/stdev -"10L",@stdlib/stats-base-dists-f-stdev -"10M",@stdlib/stats/base/dists/f/variance -"10N",@stdlib/stats-base-dists-f-variance -"10O",@stdlib/stats/base/dists/frechet/cdf -"10P",@stdlib/stats-base-dists-frechet-cdf -"10Q",@stdlib/stats/base/dists/frechet/ctor -"10R",@stdlib/stats-base-dists-frechet-ctor -"10S",@stdlib/stats/base/dists/frechet/entropy -"10T",@stdlib/stats-base-dists-frechet-entropy -"10U",@stdlib/stats/base/dists/frechet/kurtosis -"10V",@stdlib/stats-base-dists-frechet-kurtosis -"10W",@stdlib/stats/base/dists/frechet/logcdf -"10X",@stdlib/stats-base-dists-frechet-logcdf -"10Y",@stdlib/stats/base/dists/frechet/logpdf -"10Z",@stdlib/stats-base-dists-frechet-logpdf -"10a",@stdlib/stats/base/dists/frechet/mean -"10b",@stdlib/stats-base-dists-frechet-mean -"10c",@stdlib/stats/base/dists/frechet/median -"10d",@stdlib/stats-base-dists-frechet-median -"10e",@stdlib/stats/base/dists/frechet/mode -"10f",@stdlib/stats-base-dists-frechet-mode -"10g",@stdlib/stats/base/dists/frechet -"10h",@stdlib/stats-base-dists-frechet -"10i",@stdlib/stats/base/dists/frechet/pdf -"10j",@stdlib/stats-base-dists-frechet-pdf -"10k",@stdlib/stats/base/dists/frechet/quantile -"10l",@stdlib/stats-base-dists-frechet-quantile -"10m",@stdlib/stats/base/dists/frechet/skewness -"10n",@stdlib/stats-base-dists-frechet-skewness -"10o",@stdlib/stats/base/dists/frechet/stdev -"10p",@stdlib/stats-base-dists-frechet-stdev -"10q",@stdlib/stats/base/dists/frechet/variance -"10r",@stdlib/stats-base-dists-frechet-variance -"10s",@stdlib/stats/base/dists/gamma/cdf -"10t",@stdlib/stats-base-dists-gamma-cdf -"10u",@stdlib/stats/base/dists/gamma/ctor -"10v",@stdlib/stats-base-dists-gamma-ctor -"10w",@stdlib/stats/base/dists/gamma/entropy -"10x",@stdlib/stats-base-dists-gamma-entropy -"10y",@stdlib/stats/base/dists/gamma/kurtosis -"10z",@stdlib/stats-base-dists-gamma-kurtosis -"11A",@stdlib/stats/base/dists/gamma -"11B",@stdlib/stats-base-dists-gamma -"11C",@stdlib/stats/base/dists/gamma/pdf -"11D",@stdlib/stats-base-dists-gamma-pdf -"11E",@stdlib/stats/base/dists/gamma/quantile -"11F",@stdlib/stats-base-dists-gamma-quantile -"11G",@stdlib/stats/base/dists/gamma/skewness -"11H",@stdlib/stats-base-dists-gamma-skewness -"11I",@stdlib/stats/base/dists/gamma/stdev -"11J",@stdlib/stats-base-dists-gamma-stdev -"11K",@stdlib/stats/base/dists/gamma/variance -"11L",@stdlib/stats-base-dists-gamma-variance -"11M",@stdlib/stats/base/dists/geometric/cdf -"11N",@stdlib/stats-base-dists-geometric-cdf -"11O",@stdlib/stats/base/dists/geometric/ctor -"11P",@stdlib/stats-base-dists-geometric-ctor -"11Q",@stdlib/stats/base/dists/geometric/entropy -"11R",@stdlib/stats-base-dists-geometric-entropy -"11S",@stdlib/stats/base/dists/geometric/kurtosis -"11T",@stdlib/stats-base-dists-geometric-kurtosis -"11U",@stdlib/stats/base/dists/geometric/logcdf -"11V",@stdlib/stats-base-dists-geometric-logcdf -"11W",@stdlib/stats/base/dists/geometric/logpmf -"11X",@stdlib/stats-base-dists-geometric-logpmf -"11Y",@stdlib/stats/base/dists/geometric/mean -"11Z",@stdlib/stats-base-dists-geometric-mean -"11a",@stdlib/stats/base/dists/geometric/median -"11b",@stdlib/stats-base-dists-geometric-median -"11c",@stdlib/stats/base/dists/geometric/mgf -"11d",@stdlib/stats-base-dists-geometric-mgf -"11e",@stdlib/stats/base/dists/geometric/mode -"11f",@stdlib/stats-base-dists-geometric-mode -"11g",@stdlib/stats/base/dists/geometric -"11h",@stdlib/stats-base-dists-geometric -"11i",@stdlib/stats/base/dists/geometric/pmf -"11j",@stdlib/stats-base-dists-geometric-pmf -"11k",@stdlib/stats/base/dists/geometric/quantile -"11l",@stdlib/stats-base-dists-geometric-quantile -"11m",@stdlib/stats/base/dists/geometric/skewness -"11n",@stdlib/stats-base-dists-geometric-skewness -"11o",@stdlib/stats/base/dists/geometric/stdev -"11p",@stdlib/stats-base-dists-geometric-stdev -"11q",@stdlib/stats/base/dists/geometric/variance -"11r",@stdlib/stats-base-dists-geometric-variance -"11s",@stdlib/stats/base/dists/gumbel/cdf -"11t",@stdlib/stats-base-dists-gumbel-cdf -"11u",@stdlib/stats/base/dists/gumbel/ctor -"11v",@stdlib/stats-base-dists-gumbel-ctor -"11w",@stdlib/stats/base/dists/gumbel/entropy -"11x",@stdlib/stats-base-dists-gumbel-entropy -"11y",@stdlib/stats/base/dists/gumbel/kurtosis -"11z",@stdlib/stats-base-dists-gumbel-kurtosis -"12A",@stdlib/stats/base/dists/gumbel/mode -"12B",@stdlib/stats-base-dists-gumbel-mode -"12C",@stdlib/stats/base/dists/gumbel -"12D",@stdlib/stats-base-dists-gumbel -"12E",@stdlib/stats/base/dists/gumbel/pdf -"12F",@stdlib/stats-base-dists-gumbel-pdf -"12G",@stdlib/stats/base/dists/gumbel/quantile -"12H",@stdlib/stats-base-dists-gumbel-quantile -"12I",@stdlib/stats/base/dists/gumbel/skewness -"12J",@stdlib/stats-base-dists-gumbel-skewness -"12K",@stdlib/stats/base/dists/gumbel/stdev -"12L",@stdlib/stats-base-dists-gumbel-stdev -"12M",@stdlib/stats/base/dists/gumbel/variance -"12N",@stdlib/stats-base-dists-gumbel-variance -"2qu",@stdlib/stats/base/dists/halfnormal/entropy -"2qv",@stdlib/stats-base-dists-halfnormal-entropy -"2qw",@stdlib/stats/base/dists/halfnormal/kurtosis -"2qx",@stdlib/stats-base-dists-halfnormal-kurtosis -"2qy",@stdlib/stats/base/dists/halfnormal/logpdf -"2qz",@stdlib/stats-base-dists-halfnormal-logpdf -"2r0",@stdlib/stats/base/dists/halfnormal/mean -"2r1",@stdlib/stats-base-dists-halfnormal-mean -"2r2",@stdlib/stats/base/dists/halfnormal/mode -"2r3",@stdlib/stats-base-dists-halfnormal-mode -"2r4",@stdlib/stats/base/dists/halfnormal/stdev -"2r5",@stdlib/stats-base-dists-halfnormal-stdev -"12O",@stdlib/stats/base/dists/hypergeometric/cdf -"12P",@stdlib/stats-base-dists-hypergeometric-cdf -"12Q",@stdlib/stats/base/dists/hypergeometric/ctor -"12R",@stdlib/stats-base-dists-hypergeometric-ctor -"12S",@stdlib/stats/base/dists/hypergeometric/kurtosis -"12T",@stdlib/stats-base-dists-hypergeometric-kurtosis -"12U",@stdlib/stats/base/dists/hypergeometric/logpmf -"12V",@stdlib/stats-base-dists-hypergeometric-logpmf -"12W",@stdlib/stats/base/dists/hypergeometric/mean -"12X",@stdlib/stats-base-dists-hypergeometric-mean -"12Y",@stdlib/stats/base/dists/hypergeometric/mode -"12Z",@stdlib/stats-base-dists-hypergeometric-mode -"12a",@stdlib/stats/base/dists/hypergeometric -"12b",@stdlib/stats-base-dists-hypergeometric -"12c",@stdlib/stats/base/dists/hypergeometric/pmf -"12d",@stdlib/stats-base-dists-hypergeometric-pmf -"12e",@stdlib/stats/base/dists/hypergeometric/quantile -"12f",@stdlib/stats-base-dists-hypergeometric-quantile -"12g",@stdlib/stats/base/dists/hypergeometric/skewness -"12h",@stdlib/stats-base-dists-hypergeometric-skewness -"12i",@stdlib/stats/base/dists/hypergeometric/stdev -"12j",@stdlib/stats-base-dists-hypergeometric-stdev -"12k",@stdlib/stats/base/dists/hypergeometric/variance -"12l",@stdlib/stats-base-dists-hypergeometric-variance -"12m",@stdlib/stats/base/dists/invgamma/cdf -"12n",@stdlib/stats-base-dists-invgamma-cdf -"12o",@stdlib/stats/base/dists/invgamma/ctor -"12p",@stdlib/stats-base-dists-invgamma-ctor -"12q",@stdlib/stats/base/dists/invgamma/entropy -"12r",@stdlib/stats-base-dists-invgamma-entropy -"12s",@stdlib/stats/base/dists/invgamma/kurtosis -"12t",@stdlib/stats-base-dists-invgamma-kurtosis -"12u",@stdlib/stats/base/dists/invgamma/logpdf -"12v",@stdlib/stats-base-dists-invgamma-logpdf -"12w",@stdlib/stats/base/dists/invgamma/mean -"12x",@stdlib/stats-base-dists-invgamma-mean -"12y",@stdlib/stats/base/dists/invgamma/mode -"12z",@stdlib/stats-base-dists-invgamma-mode -"13A",@stdlib/stats/base/dists/invgamma/variance -"13B",@stdlib/stats-base-dists-invgamma-variance -"13C",@stdlib/stats/base/dists/kumaraswamy/cdf -"13D",@stdlib/stats-base-dists-kumaraswamy-cdf -"13E",@stdlib/stats/base/dists/kumaraswamy/ctor -"13F",@stdlib/stats-base-dists-kumaraswamy-ctor -"13G",@stdlib/stats/base/dists/kumaraswamy/kurtosis -"13H",@stdlib/stats-base-dists-kumaraswamy-kurtosis -"13I",@stdlib/stats/base/dists/kumaraswamy/logcdf -"13J",@stdlib/stats-base-dists-kumaraswamy-logcdf -"13K",@stdlib/stats/base/dists/kumaraswamy/logpdf -"13L",@stdlib/stats-base-dists-kumaraswamy-logpdf -"13M",@stdlib/stats/base/dists/kumaraswamy/mean -"13N",@stdlib/stats-base-dists-kumaraswamy-mean -"13O",@stdlib/stats/base/dists/kumaraswamy/median -"13P",@stdlib/stats-base-dists-kumaraswamy-median -"13Q",@stdlib/stats/base/dists/kumaraswamy/mode -"13R",@stdlib/stats-base-dists-kumaraswamy-mode -"13S",@stdlib/stats/base/dists/kumaraswamy -"13T",@stdlib/stats-base-dists-kumaraswamy -"13U",@stdlib/stats/base/dists/kumaraswamy/pdf -"13V",@stdlib/stats-base-dists-kumaraswamy-pdf -"13W",@stdlib/stats/base/dists/kumaraswamy/quantile -"13X",@stdlib/stats-base-dists-kumaraswamy-quantile -"13Y",@stdlib/stats/base/dists/kumaraswamy/skewness -"13Z",@stdlib/stats-base-dists-kumaraswamy-skewness -"13a",@stdlib/stats/base/dists/kumaraswamy/stdev -"13b",@stdlib/stats-base-dists-kumaraswamy-stdev -"13c",@stdlib/stats/base/dists/kumaraswamy/variance -"13d",@stdlib/stats-base-dists-kumaraswamy-variance -"13e",@stdlib/stats/base/dists/laplace/cdf -"13f",@stdlib/stats-base-dists-laplace-cdf -"13g",@stdlib/stats/base/dists/laplace/ctor -"13h",@stdlib/stats-base-dists-laplace-ctor -"13i",@stdlib/stats/base/dists/laplace/entropy -"13j",@stdlib/stats-base-dists-laplace-entropy -"13k",@stdlib/stats/base/dists/laplace/kurtosis -"13l",@stdlib/stats-base-dists-laplace-kurtosis -"13m",@stdlib/stats/base/dists/laplace/logcdf -"13n",@stdlib/stats-base-dists-laplace-logcdf -"13o",@stdlib/stats/base/dists/laplace/logpdf -"13p",@stdlib/stats-base-dists-laplace-logpdf -"13q",@stdlib/stats/base/dists/laplace/mean -"13r",@stdlib/stats-base-dists-laplace-mean -"13s",@stdlib/stats/base/dists/laplace/median -"13t",@stdlib/stats-base-dists-laplace-median -"13u",@stdlib/stats/base/dists/laplace/mgf -"13v",@stdlib/stats-base-dists-laplace-mgf -"13w",@stdlib/stats/base/dists/laplace/mode -"13x",@stdlib/stats-base-dists-laplace-mode -"13y",@stdlib/stats/base/dists/laplace -"13z",@stdlib/stats-base-dists-laplace -"14A",@stdlib/stats/base/dists/levy/cdf -"14B",@stdlib/stats-base-dists-levy-cdf -"14C",@stdlib/stats/base/dists/levy/ctor -"14D",@stdlib/stats-base-dists-levy-ctor -"14E",@stdlib/stats/base/dists/levy/entropy -"14F",@stdlib/stats-base-dists-levy-entropy -"14G",@stdlib/stats/base/dists/levy/logcdf -"14H",@stdlib/stats-base-dists-levy-logcdf -"14I",@stdlib/stats/base/dists/levy/logpdf -"14J",@stdlib/stats-base-dists-levy-logpdf -"14K",@stdlib/stats/base/dists/levy/mean -"14L",@stdlib/stats-base-dists-levy-mean -"14M",@stdlib/stats/base/dists/levy/median -"14N",@stdlib/stats-base-dists-levy-median -"14O",@stdlib/stats/base/dists/levy/mode -"14P",@stdlib/stats-base-dists-levy-mode -"14Q",@stdlib/stats/base/dists/levy -"14R",@stdlib/stats-base-dists-levy -"14S",@stdlib/stats/base/dists/levy/pdf -"14T",@stdlib/stats-base-dists-levy-pdf -"14U",@stdlib/stats/base/dists/levy/quantile -"14V",@stdlib/stats-base-dists-levy-quantile -"14W",@stdlib/stats/base/dists/levy/stdev -"14X",@stdlib/stats-base-dists-levy-stdev -"14Y",@stdlib/stats/base/dists/levy/variance -"14Z",@stdlib/stats-base-dists-levy-variance -"14a",@stdlib/stats/base/dists/logistic/cdf -"14b",@stdlib/stats-base-dists-logistic-cdf -"14c",@stdlib/stats/base/dists/logistic/ctor -"14d",@stdlib/stats-base-dists-logistic-ctor -"14e",@stdlib/stats/base/dists/logistic/entropy -"14f",@stdlib/stats-base-dists-logistic-entropy -"14g",@stdlib/stats/base/dists/logistic/kurtosis -"14h",@stdlib/stats-base-dists-logistic-kurtosis -"14i",@stdlib/stats/base/dists/logistic/logcdf -"14j",@stdlib/stats-base-dists-logistic-logcdf -"14k",@stdlib/stats/base/dists/logistic/logpdf -"14l",@stdlib/stats-base-dists-logistic-logpdf -"14m",@stdlib/stats/base/dists/logistic/mean -"14n",@stdlib/stats-base-dists-logistic-mean -"14o",@stdlib/stats/base/dists/logistic/median -"14p",@stdlib/stats-base-dists-logistic-median -"14q",@stdlib/stats/base/dists/logistic/mgf -"14r",@stdlib/stats-base-dists-logistic-mgf -"14s",@stdlib/stats/base/dists/logistic/mode -"14t",@stdlib/stats-base-dists-logistic-mode -"14u",@stdlib/stats/base/dists/logistic -"14v",@stdlib/stats-base-dists-logistic -"14w",@stdlib/stats/base/dists/logistic/pdf -"14x",@stdlib/stats-base-dists-logistic-pdf -"14y",@stdlib/stats/base/dists/logistic/quantile -"14z",@stdlib/stats-base-dists-logistic-quantile -"15A",@stdlib/stats/base/dists/lognormal/entropy -"15B",@stdlib/stats-base-dists-lognormal-entropy -"15C",@stdlib/stats/base/dists/lognormal/kurtosis -"15D",@stdlib/stats-base-dists-lognormal-kurtosis -"1fA",@stdlib/stats/base/dists/lognormal/logcdf -"1fB",@stdlib/stats-base-dists-lognormal-logcdf -"15E",@stdlib/stats/base/dists/lognormal/logpdf -"15F",@stdlib/stats-base-dists-lognormal-logpdf -"15G",@stdlib/stats/base/dists/lognormal/mean -"15H",@stdlib/stats-base-dists-lognormal-mean -"15I",@stdlib/stats/base/dists/lognormal/median -"15J",@stdlib/stats-base-dists-lognormal-median -"15K",@stdlib/stats/base/dists/lognormal/mode -"15L",@stdlib/stats-base-dists-lognormal-mode -"15M",@stdlib/stats/base/dists/lognormal -"15N",@stdlib/stats-base-dists-lognormal -"15O",@stdlib/stats/base/dists/lognormal/pdf -"15P",@stdlib/stats-base-dists-lognormal-pdf -"15Q",@stdlib/stats/base/dists/lognormal/quantile -"15R",@stdlib/stats-base-dists-lognormal-quantile -"15S",@stdlib/stats/base/dists/lognormal/skewness -"15T",@stdlib/stats-base-dists-lognormal-skewness -"15U",@stdlib/stats/base/dists/lognormal/stdev -"15V",@stdlib/stats-base-dists-lognormal-stdev -"15W",@stdlib/stats/base/dists/lognormal/variance -"15X",@stdlib/stats-base-dists-lognormal-variance -"15Y",@stdlib/stats/base/dists/negative-binomial/cdf -"15Z",@stdlib/stats-base-dists-negative-binomial-cdf -"15a",@stdlib/stats/base/dists/negative-binomial/ctor -"15b",@stdlib/stats-base-dists-negative-binomial-ctor -"15c",@stdlib/stats/base/dists/negative-binomial/kurtosis -"15d",@stdlib/stats-base-dists-negative-binomial-kurtosis -"15e",@stdlib/stats/base/dists/negative-binomial/logpmf -"15f",@stdlib/stats-base-dists-negative-binomial-logpmf -"15g",@stdlib/stats/base/dists/negative-binomial/mean -"15h",@stdlib/stats-base-dists-negative-binomial-mean -"15i",@stdlib/stats/base/dists/negative-binomial/mgf -"15j",@stdlib/stats-base-dists-negative-binomial-mgf -"15k",@stdlib/stats/base/dists/negative-binomial/mode -"15l",@stdlib/stats-base-dists-negative-binomial-mode -"15m",@stdlib/stats/base/dists/negative-binomial -"15n",@stdlib/stats-base-dists-negative-binomial -"15o",@stdlib/stats/base/dists/negative-binomial/pmf -"15p",@stdlib/stats-base-dists-negative-binomial-pmf -"15q",@stdlib/stats/base/dists/negative-binomial/quantile -"15r",@stdlib/stats-base-dists-negative-binomial-quantile -"15s",@stdlib/stats/base/dists/negative-binomial/skewness -"15t",@stdlib/stats-base-dists-negative-binomial-skewness -"15u",@stdlib/stats/base/dists/negative-binomial/stdev -"15v",@stdlib/stats-base-dists-negative-binomial-stdev -"15w",@stdlib/stats/base/dists/negative-binomial/variance -"15x",@stdlib/stats-base-dists-negative-binomial-variance -"15y",@stdlib/stats/base/dists/normal/cdf -"15z",@stdlib/stats-base-dists-normal-cdf -"1fC",@stdlib/stats/base/dists/normal/logcdf -"1fD",@stdlib/stats-base-dists-normal-logcdf -"16A",@stdlib/stats/base/dists/normal/median -"16B",@stdlib/stats-base-dists-normal-median -"16C",@stdlib/stats/base/dists/normal/mgf -"16D",@stdlib/stats-base-dists-normal-mgf -"16E",@stdlib/stats/base/dists/normal/mode -"16F",@stdlib/stats-base-dists-normal-mode -"16G",@stdlib/stats/base/dists/normal -"16H",@stdlib/stats-base-dists-normal -"16I",@stdlib/stats/base/dists/normal/pdf -"16J",@stdlib/stats-base-dists-normal-pdf -"16K",@stdlib/stats/base/dists/normal/quantile -"16L",@stdlib/stats-base-dists-normal-quantile -"16M",@stdlib/stats/base/dists/normal/skewness -"16N",@stdlib/stats-base-dists-normal-skewness -"16O",@stdlib/stats/base/dists/normal/stdev -"16P",@stdlib/stats-base-dists-normal-stdev -"16Q",@stdlib/stats/base/dists/normal/variance -"16R",@stdlib/stats-base-dists-normal-variance -"16S",@stdlib/stats/base/dists -"16T",@stdlib/stats-base-dists -"16U",@stdlib/stats/base/dists/pareto-type1/cdf -"16V",@stdlib/stats-base-dists-pareto-type1-cdf -"16W",@stdlib/stats/base/dists/pareto-type1/ctor -"16X",@stdlib/stats-base-dists-pareto-type1-ctor -"16Y",@stdlib/stats/base/dists/pareto-type1/entropy -"16Z",@stdlib/stats-base-dists-pareto-type1-entropy -"16a",@stdlib/stats/base/dists/pareto-type1/kurtosis -"16b",@stdlib/stats-base-dists-pareto-type1-kurtosis -"16c",@stdlib/stats/base/dists/pareto-type1/logcdf -"16d",@stdlib/stats-base-dists-pareto-type1-logcdf -"16e",@stdlib/stats/base/dists/pareto-type1/logpdf -"16f",@stdlib/stats-base-dists-pareto-type1-logpdf -"16g",@stdlib/stats/base/dists/pareto-type1/mean -"16h",@stdlib/stats-base-dists-pareto-type1-mean -"16i",@stdlib/stats/base/dists/pareto-type1/median -"16j",@stdlib/stats-base-dists-pareto-type1-median -"16k",@stdlib/stats/base/dists/pareto-type1/mode -"16l",@stdlib/stats-base-dists-pareto-type1-mode -"16m",@stdlib/stats/base/dists/pareto-type1 -"16n",@stdlib/stats-base-dists-pareto-type1 -"16o",@stdlib/stats/base/dists/pareto-type1/pdf -"16p",@stdlib/stats-base-dists-pareto-type1-pdf -"16q",@stdlib/stats/base/dists/pareto-type1/quantile -"16r",@stdlib/stats-base-dists-pareto-type1-quantile -"16s",@stdlib/stats/base/dists/pareto-type1/skewness -"16t",@stdlib/stats-base-dists-pareto-type1-skewness -"16u",@stdlib/stats/base/dists/pareto-type1/stdev -"16v",@stdlib/stats-base-dists-pareto-type1-stdev -"16w",@stdlib/stats/base/dists/pareto-type1/variance -"16x",@stdlib/stats-base-dists-pareto-type1-variance -"25A",@stdlib/stats/base/dists/planck/cdf -"25B",@stdlib/stats-base-dists-planck-cdf -"25C",@stdlib/stats/base/dists/planck/entropy -"25D",@stdlib/stats-base-dists-planck-entropy -"25E",@stdlib/stats/base/dists/planck/kurtosis -"25F",@stdlib/stats-base-dists-planck-kurtosis -"25G",@stdlib/stats/base/dists/planck/logcdf -"25H",@stdlib/stats-base-dists-planck-logcdf -"25I",@stdlib/stats/base/dists/planck/logpmf -"25J",@stdlib/stats-base-dists-planck-logpmf -"25K",@stdlib/stats/base/dists/planck/mean -"25L",@stdlib/stats-base-dists-planck-mean -"25M",@stdlib/stats/base/dists/planck/median -"25N",@stdlib/stats-base-dists-planck-median -"28g",@stdlib/stats/base/dists/planck/mgf -"28h",@stdlib/stats-base-dists-planck-mgf -"25O",@stdlib/stats/base/dists/planck/mode -"25P",@stdlib/stats-base-dists-planck-mode -"2U6",@stdlib/stats/base/dists/planck -"2U7",@stdlib/stats-base-dists-planck -"25Q",@stdlib/stats/base/dists/planck/pmf -"25R",@stdlib/stats-base-dists-planck-pmf -"25S",@stdlib/stats/base/dists/planck/quantile -"25T",@stdlib/stats-base-dists-planck-quantile -"25U",@stdlib/stats/base/dists/planck/skewness -"25V",@stdlib/stats-base-dists-planck-skewness -"25W",@stdlib/stats/base/dists/planck/stdev -"25X",@stdlib/stats-base-dists-planck-stdev -"25Y",@stdlib/stats/base/dists/planck/variance -"25Z",@stdlib/stats-base-dists-planck-variance -"16y",@stdlib/stats/base/dists/poisson/cdf -"16z",@stdlib/stats-base-dists-poisson-cdf -"17A",@stdlib/stats/base/dists/poisson/median -"17B",@stdlib/stats-base-dists-poisson-median -"17C",@stdlib/stats/base/dists/poisson/mgf -"17D",@stdlib/stats-base-dists-poisson-mgf -"17E",@stdlib/stats/base/dists/poisson/mode -"17F",@stdlib/stats-base-dists-poisson-mode -"17G",@stdlib/stats/base/dists/poisson -"17H",@stdlib/stats-base-dists-poisson -"17I",@stdlib/stats/base/dists/poisson/pmf -"17J",@stdlib/stats-base-dists-poisson-pmf -"17K",@stdlib/stats/base/dists/poisson/quantile -"17L",@stdlib/stats-base-dists-poisson-quantile -"17M",@stdlib/stats/base/dists/poisson/skewness -"17N",@stdlib/stats-base-dists-poisson-skewness -"17O",@stdlib/stats/base/dists/poisson/stdev -"17P",@stdlib/stats-base-dists-poisson-stdev -"17Q",@stdlib/stats/base/dists/poisson/variance -"17R",@stdlib/stats-base-dists-poisson-variance -"17S",@stdlib/stats/base/dists/rayleigh/cdf -"17T",@stdlib/stats-base-dists-rayleigh-cdf -"17U",@stdlib/stats/base/dists/rayleigh/ctor -"17V",@stdlib/stats-base-dists-rayleigh-ctor -"17W",@stdlib/stats/base/dists/rayleigh/entropy -"17X",@stdlib/stats-base-dists-rayleigh-entropy -"17Y",@stdlib/stats/base/dists/rayleigh/kurtosis -"17Z",@stdlib/stats-base-dists-rayleigh-kurtosis -"17a",@stdlib/stats/base/dists/rayleigh/logcdf -"17b",@stdlib/stats-base-dists-rayleigh-logcdf -"17c",@stdlib/stats/base/dists/rayleigh/logpdf -"17d",@stdlib/stats-base-dists-rayleigh-logpdf -"17e",@stdlib/stats/base/dists/rayleigh/mean -"17f",@stdlib/stats-base-dists-rayleigh-mean -"17g",@stdlib/stats/base/dists/rayleigh/median -"17h",@stdlib/stats-base-dists-rayleigh-median -"17i",@stdlib/stats/base/dists/rayleigh/mgf -"17j",@stdlib/stats-base-dists-rayleigh-mgf -"17k",@stdlib/stats/base/dists/rayleigh/mode -"17l",@stdlib/stats-base-dists-rayleigh-mode -"17m",@stdlib/stats/base/dists/rayleigh -"17n",@stdlib/stats-base-dists-rayleigh -"17o",@stdlib/stats/base/dists/rayleigh/pdf -"17p",@stdlib/stats-base-dists-rayleigh-pdf -"17q",@stdlib/stats/base/dists/rayleigh/quantile -"17r",@stdlib/stats-base-dists-rayleigh-quantile -"17s",@stdlib/stats/base/dists/rayleigh/skewness -"17t",@stdlib/stats-base-dists-rayleigh-skewness -"17u",@stdlib/stats/base/dists/rayleigh/stdev -"17v",@stdlib/stats-base-dists-rayleigh-stdev -"17w",@stdlib/stats/base/dists/rayleigh/variance -"17x",@stdlib/stats-base-dists-rayleigh-variance -"17y",@stdlib/stats/base/dists/signrank/cdf -"17z",@stdlib/stats-base-dists-signrank-cdf -"1fE",@stdlib/stats/base/dists/studentized-range/cdf -"1fF",@stdlib/stats-base-dists-studentized-range-cdf -"1fG",@stdlib/stats/base/dists/studentized-range -"1fH",@stdlib/stats-base-dists-studentized-range -"1fI",@stdlib/stats/base/dists/studentized-range/quantile -"1fJ",@stdlib/stats-base-dists-studentized-range-quantile -"18A",@stdlib/stats/base/dists/t/entropy -"18B",@stdlib/stats-base-dists-t-entropy -"18C",@stdlib/stats/base/dists/t/kurtosis -"18D",@stdlib/stats-base-dists-t-kurtosis -"18E",@stdlib/stats/base/dists/t/logcdf -"18F",@stdlib/stats-base-dists-t-logcdf -"18G",@stdlib/stats/base/dists/t/logpdf -"18H",@stdlib/stats-base-dists-t-logpdf -"18I",@stdlib/stats/base/dists/t/mean -"18J",@stdlib/stats-base-dists-t-mean -"18K",@stdlib/stats/base/dists/t/median -"18L",@stdlib/stats-base-dists-t-median -"18M",@stdlib/stats/base/dists/t/mode -"18N",@stdlib/stats-base-dists-t-mode -"18O",@stdlib/stats/base/dists/t -"18P",@stdlib/stats-base-dists-t -"18Q",@stdlib/stats/base/dists/t/pdf -"18R",@stdlib/stats-base-dists-t-pdf -"18S",@stdlib/stats/base/dists/t/quantile -"18T",@stdlib/stats-base-dists-t-quantile -"18U",@stdlib/stats/base/dists/t/skewness -"18V",@stdlib/stats-base-dists-t-skewness -"18W",@stdlib/stats/base/dists/t/stdev -"18X",@stdlib/stats-base-dists-t-stdev -"18Y",@stdlib/stats/base/dists/t/variance -"18Z",@stdlib/stats-base-dists-t-variance -"18a",@stdlib/stats/base/dists/triangular/cdf -"18b",@stdlib/stats-base-dists-triangular-cdf -"18c",@stdlib/stats/base/dists/triangular/ctor -"18d",@stdlib/stats-base-dists-triangular-ctor -"18e",@stdlib/stats/base/dists/triangular/entropy -"18f",@stdlib/stats-base-dists-triangular-entropy -"18g",@stdlib/stats/base/dists/triangular/kurtosis -"18h",@stdlib/stats-base-dists-triangular-kurtosis -"18i",@stdlib/stats/base/dists/triangular/logcdf -"18j",@stdlib/stats-base-dists-triangular-logcdf -"18k",@stdlib/stats/base/dists/triangular/logpdf -"18l",@stdlib/stats-base-dists-triangular-logpdf -"18m",@stdlib/stats/base/dists/triangular/mean -"18n",@stdlib/stats-base-dists-triangular-mean -"18o",@stdlib/stats/base/dists/triangular/median -"18p",@stdlib/stats-base-dists-triangular-median -"18q",@stdlib/stats/base/dists/triangular/mgf -"18r",@stdlib/stats-base-dists-triangular-mgf -"18s",@stdlib/stats/base/dists/triangular/mode -"18t",@stdlib/stats-base-dists-triangular-mode -"18u",@stdlib/stats/base/dists/triangular -"18v",@stdlib/stats-base-dists-triangular -"18w",@stdlib/stats/base/dists/triangular/pdf -"18x",@stdlib/stats-base-dists-triangular-pdf -"18y",@stdlib/stats/base/dists/triangular/quantile -"18z",@stdlib/stats-base-dists-triangular-quantile -"19A",@stdlib/stats/base/dists/uniform/cdf -"19B",@stdlib/stats-base-dists-uniform-cdf -"19C",@stdlib/stats/base/dists/uniform/ctor -"19D",@stdlib/stats-base-dists-uniform-ctor -"19E",@stdlib/stats/base/dists/uniform/entropy -"19F",@stdlib/stats-base-dists-uniform-entropy -"19G",@stdlib/stats/base/dists/uniform/kurtosis -"19H",@stdlib/stats-base-dists-uniform-kurtosis -"19I",@stdlib/stats/base/dists/uniform/logcdf -"19J",@stdlib/stats-base-dists-uniform-logcdf -"19K",@stdlib/stats/base/dists/uniform/logpdf -"19L",@stdlib/stats-base-dists-uniform-logpdf -"19M",@stdlib/stats/base/dists/uniform/mean -"19N",@stdlib/stats-base-dists-uniform-mean -"19O",@stdlib/stats/base/dists/uniform/median -"19P",@stdlib/stats-base-dists-uniform-median -"19Q",@stdlib/stats/base/dists/uniform/mgf -"19R",@stdlib/stats-base-dists-uniform-mgf -"19S",@stdlib/stats/base/dists/uniform -"19T",@stdlib/stats-base-dists-uniform -"19U",@stdlib/stats/base/dists/uniform/pdf -"19V",@stdlib/stats-base-dists-uniform-pdf -"19W",@stdlib/stats/base/dists/uniform/quantile -"19X",@stdlib/stats-base-dists-uniform-quantile -"19Y",@stdlib/stats/base/dists/uniform/skewness -"19Z",@stdlib/stats-base-dists-uniform-skewness -"19a",@stdlib/stats/base/dists/uniform/stdev -"19b",@stdlib/stats-base-dists-uniform-stdev -"19c",@stdlib/stats/base/dists/uniform/variance -"19d",@stdlib/stats-base-dists-uniform-variance -"2r6",@stdlib/stats/base/dists/wald/kurtosis -"2r7",@stdlib/stats-base-dists-wald-kurtosis -"2r8",@stdlib/stats/base/dists/wald/mean -"2r9",@stdlib/stats-base-dists-wald-mean -"2rA",@stdlib/stats/base/dists/wald/mode -"2rB",@stdlib/stats-base-dists-wald-mode -"2rC",@stdlib/stats/base/dists/wald/pdf -"2rD",@stdlib/stats-base-dists-wald-pdf -"2rE",@stdlib/stats/base/dists/wald/skewness -"2rF",@stdlib/stats-base-dists-wald-skewness -"2rG",@stdlib/stats/base/dists/wald/variance -"2rH",@stdlib/stats-base-dists-wald-variance -"19e",@stdlib/stats/base/dists/weibull/cdf -"19f",@stdlib/stats-base-dists-weibull-cdf -"19g",@stdlib/stats/base/dists/weibull/ctor -"19h",@stdlib/stats-base-dists-weibull-ctor -"19i",@stdlib/stats/base/dists/weibull/entropy -"19j",@stdlib/stats-base-dists-weibull-entropy -"19k",@stdlib/stats/base/dists/weibull/kurtosis -"19l",@stdlib/stats-base-dists-weibull-kurtosis -"19m",@stdlib/stats/base/dists/weibull/logcdf -"19n",@stdlib/stats-base-dists-weibull-logcdf -"19o",@stdlib/stats/base/dists/weibull/logpdf -"19p",@stdlib/stats-base-dists-weibull-logpdf -"19q",@stdlib/stats/base/dists/weibull/mean -"19r",@stdlib/stats-base-dists-weibull-mean -"19s",@stdlib/stats/base/dists/weibull/median -"19t",@stdlib/stats-base-dists-weibull-median -"19u",@stdlib/stats/base/dists/weibull/mgf -"19v",@stdlib/stats-base-dists-weibull-mgf -"19w",@stdlib/stats/base/dists/weibull/mode -"19x",@stdlib/stats-base-dists-weibull-mode -"19y",@stdlib/stats/base/dists/weibull -"19z",@stdlib/stats-base-dists-weibull -"1A0",@stdlib/stats/base/dists/weibull/pdf -"1A1",@stdlib/stats-base-dists-weibull-pdf -"1A2",@stdlib/stats/base/dists/weibull/quantile -"1A3",@stdlib/stats-base-dists-weibull-quantile -"1A4",@stdlib/stats/base/dists/weibull/skewness -"1A5",@stdlib/stats-base-dists-weibull-skewness -"1A6",@stdlib/stats/base/dists/weibull/stdev -"1A7",@stdlib/stats-base-dists-weibull-stdev -"1A8",@stdlib/stats/base/dists/weibull/variance -"1A9",@stdlib/stats-base-dists-weibull-variance -"2U8",@stdlib/stats/base/ndarray/covarmtk -"2U9",@stdlib/stats-base-ndarray-covarmtk -"2G2",@stdlib/stats/base/ndarray/cumax -"2G3",@stdlib/stats-base-ndarray-cumax -"2Pa",@stdlib/stats/base/ndarray/cumin -"2Pb",@stdlib/stats-base-ndarray-cumin -"2UA",@stdlib/stats/base/ndarray/dcovarmtk -"2UB",@stdlib/stats-base-ndarray-dcovarmtk -"2G4",@stdlib/stats/base/ndarray/dcumax -"2G5",@stdlib/stats-base-ndarray-dcumax -"2aa",@stdlib/stats/base/ndarray/dcumaxabs -"2ab",@stdlib/stats-base-ndarray-dcumaxabs -"2Pc",@stdlib/stats/base/ndarray/dcumin -"2Pd",@stdlib/stats-base-ndarray-dcumin -"2ac",@stdlib/stats/base/ndarray/dcuminabs -"2ad",@stdlib/stats-base-ndarray-dcuminabs -"2Ey",@stdlib/stats/base/ndarray/dmax -"2Ez",@stdlib/stats-base-ndarray-dmax -"2UC",@stdlib/stats/base/ndarray/dmaxabs -"2UD",@stdlib/stats-base-ndarray-dmaxabs -"2ae",@stdlib/stats/base/ndarray/dmaxabssorted -"2af",@stdlib/stats-base-ndarray-dmaxabssorted -"2Vm",@stdlib/stats/base/ndarray/dmaxsorted -"2Vn",@stdlib/stats-base-ndarray-dmaxsorted -"2UE",@stdlib/stats/base/ndarray/dmean -"2UF",@stdlib/stats-base-ndarray-dmean -"2Y0",@stdlib/stats/base/ndarray/dmeankbn -"2Y1",@stdlib/stats-base-ndarray-dmeankbn -"2Y2",@stdlib/stats/base/ndarray/dmeankbn2 -"2Y3",@stdlib/stats-base-ndarray-dmeankbn2 -"2Y4",@stdlib/stats/base/ndarray/dmeanli -"2Y5",@stdlib/stats-base-ndarray-dmeanli -"2Y6",@stdlib/stats/base/ndarray/dmeanlipw -"2Y7",@stdlib/stats-base-ndarray-dmeanlipw -"2ag",@stdlib/stats/base/ndarray/dmeanors -"2ah",@stdlib/stats-base-ndarray-dmeanors -"2ai",@stdlib/stats/base/ndarray/dmeanpn -"2aj",@stdlib/stats-base-ndarray-dmeanpn -"2ak",@stdlib/stats/base/ndarray/dmeanpw -"2al",@stdlib/stats-base-ndarray-dmeanpw -"2rI",@stdlib/stats/base/ndarray/dmeanstdev -"2rJ",@stdlib/stats-base-ndarray-dmeanstdev -"2am",@stdlib/stats/base/ndarray/dmeanwd -"2an",@stdlib/stats-base-ndarray-dmeanwd -"2ao",@stdlib/stats/base/ndarray/dmediansorted -"2ap",@stdlib/stats-base-ndarray-dmediansorted -"2aq",@stdlib/stats/base/ndarray/dmidrange -"2ar",@stdlib/stats-base-ndarray-dmidrange -"2Pe",@stdlib/stats/base/ndarray/dmin -"2Pf",@stdlib/stats-base-ndarray-dmin -"2UG",@stdlib/stats/base/ndarray/dminabs -"2UH",@stdlib/stats-base-ndarray-dminabs -"2Y8",@stdlib/stats/base/ndarray/dminsorted -"2Y9",@stdlib/stats-base-ndarray-dminsorted -"2as",@stdlib/stats/base/ndarray/dmskmax -"2at",@stdlib/stats-base-ndarray-dmskmax -"2rK",@stdlib/stats/base/ndarray/dmskmaxabs -"2rL",@stdlib/stats-base-ndarray-dmskmaxabs -"2au",@stdlib/stats/base/ndarray/dmskmin -"2av",@stdlib/stats-base-ndarray-dmskmin -"2aw",@stdlib/stats/base/ndarray/dmskrange -"2ax",@stdlib/stats-base-ndarray-dmskrange -"2UI",@stdlib/stats/base/ndarray/dnanmax -"2UJ",@stdlib/stats-base-ndarray-dnanmax -"2Yc",@stdlib/stats/base/ndarray/dnanmaxabs -"2Yd",@stdlib/stats-base-ndarray-dnanmaxabs -"2VA",@stdlib/stats/base/ndarray/dnanmean -"2VB",@stdlib/stats-base-ndarray-dnanmean -"2ay",@stdlib/stats/base/ndarray/dnanmeanors -"2az",@stdlib/stats-base-ndarray-dnanmeanors -"2b0",@stdlib/stats/base/ndarray/dnanmeanpn -"2b1",@stdlib/stats-base-ndarray-dnanmeanpn -"2b2",@stdlib/stats/base/ndarray/dnanmeanpw -"2b3",@stdlib/stats-base-ndarray-dnanmeanpw -"2b4",@stdlib/stats/base/ndarray/dnanmeanwd -"2b5",@stdlib/stats-base-ndarray-dnanmeanwd -"2rM",@stdlib/stats/base/ndarray/dnanmidrange -"2rN",@stdlib/stats-base-ndarray-dnanmidrange -"2UK",@stdlib/stats/base/ndarray/dnanmin -"2UL",@stdlib/stats-base-ndarray-dnanmin -"2Ye",@stdlib/stats/base/ndarray/dnanminabs -"2Yf",@stdlib/stats-base-ndarray-dnanminabs -"2b6",@stdlib/stats/base/ndarray/dnanmskmax -"2b7",@stdlib/stats-base-ndarray-dnanmskmax -"2rO",@stdlib/stats/base/ndarray/dnanmskmaxabs -"2rP",@stdlib/stats-base-ndarray-dnanmskmaxabs -"2b8",@stdlib/stats/base/ndarray/dnanmskmin -"2b9",@stdlib/stats-base-ndarray-dnanmskmin -"2rQ",@stdlib/stats/base/ndarray/dnanmskminabs -"2rR",@stdlib/stats-base-ndarray-dnanmskminabs -"2bA",@stdlib/stats/base/ndarray/dnanmskrange -"2bB",@stdlib/stats-base-ndarray-dnanmskrange -"2rS",@stdlib/stats/base/ndarray/dnanrange -"2rT",@stdlib/stats-base-ndarray-dnanrange -"2rU",@stdlib/stats/base/ndarray/dnanrangeabs -"2rV",@stdlib/stats-base-ndarray-dnanrangeabs -"2rW",@stdlib/stats/base/ndarray/dnanstdev -"2rX",@stdlib/stats-base-ndarray-dnanstdev -"2rY",@stdlib/stats/base/ndarray/dnanstdevch -"2rZ",@stdlib/stats-base-ndarray-dnanstdevch -"2ra",@stdlib/stats/base/ndarray/dnanstdevpn -"2rb",@stdlib/stats-base-ndarray-dnanstdevpn -"2Pg",@stdlib/stats/base/ndarray/drange -"2Ph",@stdlib/stats-base-ndarray-drange -"2rc",@stdlib/stats/base/ndarray/drangeabs -"2rd",@stdlib/stats-base-ndarray-drangeabs -"2re",@stdlib/stats/base/ndarray/dstdev -"2rf",@stdlib/stats-base-ndarray-dstdev -"2rg",@stdlib/stats/base/ndarray/dstdevch -"2rh",@stdlib/stats-base-ndarray-dstdevch -"2ri",@stdlib/stats/base/ndarray/dstdevpn -"2rj",@stdlib/stats-base-ndarray-dstdevpn -"2rk",@stdlib/stats/base/ndarray/dstdevtk -"2rl",@stdlib/stats-base-ndarray-dstdevtk -"2rm",@stdlib/stats/base/ndarray/dstdevwd -"2rn",@stdlib/stats-base-ndarray-dstdevwd -"2ro",@stdlib/stats/base/ndarray/dstdevyc -"2rp",@stdlib/stats-base-ndarray-dstdevyc -"2rq",@stdlib/stats/base/ndarray/dvariance -"2rr",@stdlib/stats-base-ndarray-dvariance -"2Pi",@stdlib/stats/base/ndarray/dztest -"2Pj",@stdlib/stats-base-ndarray-dztest -"2S8",@stdlib/stats/base/ndarray/dztest2 -"2S9",@stdlib/stats-base-ndarray-dztest2 -"2Ji",@stdlib/stats/base/ndarray/max-by -"2Jj",@stdlib/stats-base-ndarray-max-by -"2F0",@stdlib/stats/base/ndarray/max -"2F1",@stdlib/stats-base-ndarray-max -"2UM",@stdlib/stats/base/ndarray/maxabs -"2UN",@stdlib/stats-base-ndarray-maxabs -"2Vo",@stdlib/stats/base/ndarray/maxsorted -"2Vp",@stdlib/stats-base-ndarray-maxsorted -"2UO",@stdlib/stats/base/ndarray/mean -"2UP",@stdlib/stats-base-ndarray-mean -"2XE",@stdlib/stats/base/ndarray/meankbn -"2XF",@stdlib/stats-base-ndarray-meankbn -"2XG",@stdlib/stats/base/ndarray/meankbn2 -"2XH",@stdlib/stats-base-ndarray-meankbn2 -"2XI",@stdlib/stats/base/ndarray/meanors -"2XJ",@stdlib/stats-base-ndarray-meanors -"2XK",@stdlib/stats/base/ndarray/meanpn -"2XL",@stdlib/stats-base-ndarray-meanpn -"2XM",@stdlib/stats/base/ndarray/meanpw -"2XN",@stdlib/stats-base-ndarray-meanpw -"2XO",@stdlib/stats/base/ndarray/meanwd -"2XP",@stdlib/stats-base-ndarray-meanwd -"2XQ",@stdlib/stats/base/ndarray/mediansorted -"2XR",@stdlib/stats-base-ndarray-mediansorted -"2rs",@stdlib/stats/base/ndarray/midrange-by -"2rt",@stdlib/stats-base-ndarray-midrange-by -"2ru",@stdlib/stats/base/ndarray/midrange -"2rv",@stdlib/stats-base-ndarray-midrange -"2rw",@stdlib/stats/base/ndarray/midrangeabs -"2rx",@stdlib/stats-base-ndarray-midrangeabs -"2Pk",@stdlib/stats/base/ndarray/min-by -"2Pl",@stdlib/stats-base-ndarray-min-by -"2Pm",@stdlib/stats/base/ndarray/min -"2Pn",@stdlib/stats-base-ndarray-min -"2UQ",@stdlib/stats/base/ndarray/minabs -"2UR",@stdlib/stats-base-ndarray-minabs -"2XS",@stdlib/stats/base/ndarray/minsorted -"2XT",@stdlib/stats-base-ndarray-minsorted -"2XU",@stdlib/stats/base/ndarray/mskmax -"2XV",@stdlib/stats-base-ndarray-mskmax -"2ry",@stdlib/stats/base/ndarray/mskmaxabs -"2rz",@stdlib/stats-base-ndarray-mskmaxabs -"2s0",@stdlib/stats/base/ndarray/mskmidrange -"2s1",@stdlib/stats-base-ndarray-mskmidrange -"2YA",@stdlib/stats/base/ndarray/mskmin -"2YB",@stdlib/stats-base-ndarray-mskmin -"2bC",@stdlib/stats/base/ndarray/mskrange -"2bD",@stdlib/stats-base-ndarray-mskrange -"2bE",@stdlib/stats/base/ndarray/nanmax-by -"2bF",@stdlib/stats-base-ndarray-nanmax-by -"2US",@stdlib/stats/base/ndarray/nanmax -"2UT",@stdlib/stats-base-ndarray-nanmax -"2Yg",@stdlib/stats/base/ndarray/nanmaxabs -"2Yh",@stdlib/stats-base-ndarray-nanmaxabs -"2VC",@stdlib/stats/base/ndarray/nanmean -"2VD",@stdlib/stats-base-ndarray-nanmean -"2bG",@stdlib/stats/base/ndarray/nanmeanors -"2bH",@stdlib/stats-base-ndarray-nanmeanors -"2bI",@stdlib/stats/base/ndarray/nanmeanpn -"2bJ",@stdlib/stats-base-ndarray-nanmeanpn -"2bK",@stdlib/stats/base/ndarray/nanmeanwd -"2bL",@stdlib/stats-base-ndarray-nanmeanwd -"2s2",@stdlib/stats/base/ndarray/nanmidrange-by -"2s3",@stdlib/stats-base-ndarray-nanmidrange-by -"2s4",@stdlib/stats/base/ndarray/nanmidrange -"2s5",@stdlib/stats-base-ndarray-nanmidrange -"2bM",@stdlib/stats/base/ndarray/nanmin-by -"2bN",@stdlib/stats-base-ndarray-nanmin-by -"2UU",@stdlib/stats/base/ndarray/nanmin -"2UV",@stdlib/stats-base-ndarray-nanmin -"2Yi",@stdlib/stats/base/ndarray/nanminabs -"2Yj",@stdlib/stats-base-ndarray-nanminabs -"2bO",@stdlib/stats/base/ndarray/nanmskmax -"2bP",@stdlib/stats-base-ndarray-nanmskmax -"2s6",@stdlib/stats/base/ndarray/nanmskmidrange -"2s7",@stdlib/stats-base-ndarray-nanmskmidrange -"2bQ",@stdlib/stats/base/ndarray/nanmskmin -"2bR",@stdlib/stats-base-ndarray-nanmskmin -"2bS",@stdlib/stats/base/ndarray/nanmskrange -"2bT",@stdlib/stats-base-ndarray-nanmskrange -"2bU",@stdlib/stats/base/ndarray/nanrange-by -"2bV",@stdlib/stats-base-ndarray-nanrange-by -"2bW",@stdlib/stats/base/ndarray/nanrange -"2bX",@stdlib/stats-base-ndarray-nanrange -"2F2",@stdlib/stats/base/ndarray -"2F3",@stdlib/stats-base-ndarray -"2YC",@stdlib/stats/base/ndarray/range-by -"2YD",@stdlib/stats-base-ndarray-range-by -"2Po",@stdlib/stats/base/ndarray/range -"2Pp",@stdlib/stats-base-ndarray-range -"2s8",@stdlib/stats/base/ndarray/rangeabs -"2s9",@stdlib/stats-base-ndarray-rangeabs -"2UW",@stdlib/stats/base/ndarray/scovarmtk -"2UX",@stdlib/stats-base-ndarray-scovarmtk -"2G6",@stdlib/stats/base/ndarray/scumax -"2G7",@stdlib/stats-base-ndarray-scumax -"2Yk",@stdlib/stats/base/ndarray/scumaxabs -"2Yl",@stdlib/stats-base-ndarray-scumaxabs -"2Pq",@stdlib/stats/base/ndarray/scumin -"2Pr",@stdlib/stats-base-ndarray-scumin -"2Ym",@stdlib/stats/base/ndarray/scuminabs -"2Yn",@stdlib/stats-base-ndarray-scuminabs -"2bY",@stdlib/stats/base/ndarray/sdsmean -"2bZ",@stdlib/stats-base-ndarray-sdsmean -"2ba",@stdlib/stats/base/ndarray/sdsmeanors -"2bb",@stdlib/stats-base-ndarray-sdsmeanors -"2bc",@stdlib/stats/base/ndarray/sdsnanmeanors -"2bd",@stdlib/stats-base-ndarray-sdsnanmeanors -"2F4",@stdlib/stats/base/ndarray/smax -"2F5",@stdlib/stats-base-ndarray-smax -"2UY",@stdlib/stats/base/ndarray/smaxabs -"2UZ",@stdlib/stats-base-ndarray-smaxabs -"2YE",@stdlib/stats/base/ndarray/smaxabssorted -"2YF",@stdlib/stats-base-ndarray-smaxabssorted -"2Vq",@stdlib/stats/base/ndarray/smaxsorted -"2Vr",@stdlib/stats-base-ndarray-smaxsorted -"2Ua",@stdlib/stats/base/ndarray/smean -"2Ub",@stdlib/stats-base-ndarray-smean -"2be",@stdlib/stats/base/ndarray/smeankbn -"2bf",@stdlib/stats-base-ndarray-smeankbn -"2bg",@stdlib/stats/base/ndarray/smeankbn2 -"2bh",@stdlib/stats-base-ndarray-smeankbn2 -"2bi",@stdlib/stats/base/ndarray/smeanli -"2bj",@stdlib/stats-base-ndarray-smeanli -"2bk",@stdlib/stats/base/ndarray/smeanlipw -"2bl",@stdlib/stats-base-ndarray-smeanlipw -"2bm",@stdlib/stats/base/ndarray/smeanors -"2bn",@stdlib/stats-base-ndarray-smeanors -"2bo",@stdlib/stats/base/ndarray/smeanpn -"2bp",@stdlib/stats-base-ndarray-smeanpn -"2bq",@stdlib/stats/base/ndarray/smeanpw -"2br",@stdlib/stats-base-ndarray-smeanpw -"2bs",@stdlib/stats/base/ndarray/smeanwd -"2bt",@stdlib/stats-base-ndarray-smeanwd -"2bu",@stdlib/stats/base/ndarray/smediansorted -"2bv",@stdlib/stats-base-ndarray-smediansorted -"2bw",@stdlib/stats/base/ndarray/smidrange -"2bx",@stdlib/stats-base-ndarray-smidrange -"2Ps",@stdlib/stats/base/ndarray/smin -"2Pt",@stdlib/stats-base-ndarray-smin -"2Uc",@stdlib/stats/base/ndarray/sminabs -"2Ud",@stdlib/stats-base-ndarray-sminabs -"2YG",@stdlib/stats/base/ndarray/sminsorted -"2YH",@stdlib/stats-base-ndarray-sminsorted -"2by",@stdlib/stats/base/ndarray/smskmax -"2bz",@stdlib/stats-base-ndarray-smskmax -"2sA",@stdlib/stats/base/ndarray/smskmaxabs -"2sB",@stdlib/stats-base-ndarray-smskmaxabs -"2sC",@stdlib/stats/base/ndarray/smskmidrange -"2sD",@stdlib/stats-base-ndarray-smskmidrange -"2c0",@stdlib/stats/base/ndarray/smskmin -"2c1",@stdlib/stats-base-ndarray-smskmin -"2c2",@stdlib/stats/base/ndarray/smskrange -"2c3",@stdlib/stats-base-ndarray-smskrange -"2Ue",@stdlib/stats/base/ndarray/snanmax -"2Uf",@stdlib/stats-base-ndarray-snanmax -"2YI",@stdlib/stats/base/ndarray/snanmaxabs -"2YJ",@stdlib/stats-base-ndarray-snanmaxabs -"2VE",@stdlib/stats/base/ndarray/snanmean -"2VF",@stdlib/stats-base-ndarray-snanmean -"2c4",@stdlib/stats/base/ndarray/snanmeanors -"2c5",@stdlib/stats-base-ndarray-snanmeanors -"2c6",@stdlib/stats/base/ndarray/snanmeanpn -"2c7",@stdlib/stats-base-ndarray-snanmeanpn -"2c8",@stdlib/stats/base/ndarray/snanmeanwd -"2c9",@stdlib/stats-base-ndarray-snanmeanwd -"2sE",@stdlib/stats/base/ndarray/snanmidrange -"2sF",@stdlib/stats-base-ndarray-snanmidrange -"2Ug",@stdlib/stats/base/ndarray/snanmin -"2Uh",@stdlib/stats-base-ndarray-snanmin -"2YK",@stdlib/stats/base/ndarray/snanminabs -"2YL",@stdlib/stats-base-ndarray-snanminabs -"2cA",@stdlib/stats/base/ndarray/snanmskmax -"2cB",@stdlib/stats-base-ndarray-snanmskmax -"2sG",@stdlib/stats/base/ndarray/snanmskmaxabs -"2sH",@stdlib/stats-base-ndarray-snanmskmaxabs -"2sI",@stdlib/stats/base/ndarray/snanmskmidrange -"2sJ",@stdlib/stats-base-ndarray-snanmskmidrange -"2cC",@stdlib/stats/base/ndarray/snanmskmin -"2cD",@stdlib/stats-base-ndarray-snanmskmin -"2sK",@stdlib/stats/base/ndarray/snanmskminabs -"2sL",@stdlib/stats-base-ndarray-snanmskminabs -"2cE",@stdlib/stats/base/ndarray/snanmskrange -"2cF",@stdlib/stats-base-ndarray-snanmskrange -"2sM",@stdlib/stats/base/ndarray/snanrange -"2sN",@stdlib/stats-base-ndarray-snanrange -"2Pu",@stdlib/stats/base/ndarray/srange -"2Pv",@stdlib/stats-base-ndarray-srange -"2sO",@stdlib/stats/base/ndarray/srangeabs -"2sP",@stdlib/stats-base-ndarray-srangeabs -"2sQ",@stdlib/stats/base/ndarray/sstdev -"2sR",@stdlib/stats-base-ndarray-sstdev -"2sS",@stdlib/stats/base/ndarray/sstdevch -"2sT",@stdlib/stats-base-ndarray-sstdevch -"2sU",@stdlib/stats/base/ndarray/sstdevpn -"2sV",@stdlib/stats-base-ndarray-sstdevpn -"2sW",@stdlib/stats/base/ndarray/sstdevtk -"2sX",@stdlib/stats-base-ndarray-sstdevtk -"2sY",@stdlib/stats/base/ndarray/sstdevwd -"2sZ",@stdlib/stats-base-ndarray-sstdevwd -"2sa",@stdlib/stats/base/ndarray/sstdevyc -"2sb",@stdlib/stats-base-ndarray-sstdevyc -"2sc",@stdlib/stats/base/ndarray/stdev -"2sd",@stdlib/stats-base-ndarray-stdev -"2se",@stdlib/stats/base/ndarray/stdevch -"2sf",@stdlib/stats-base-ndarray-stdevch -"2sg",@stdlib/stats/base/ndarray/stdevpn -"2sh",@stdlib/stats-base-ndarray-stdevpn -"2si",@stdlib/stats/base/ndarray/stdevtk -"2sj",@stdlib/stats-base-ndarray-stdevtk -"2sk",@stdlib/stats/base/ndarray/stdevwd -"2sl",@stdlib/stats-base-ndarray-stdevwd -"2sm",@stdlib/stats/base/ndarray/stdevyc -"2sn",@stdlib/stats-base-ndarray-stdevyc -"2so",@stdlib/stats/base/ndarray/svariance -"2sp",@stdlib/stats-base-ndarray-svariance -"2sq",@stdlib/stats/base/ndarray/svariancech -"2sr",@stdlib/stats-base-ndarray-svariancech -"2ss",@stdlib/stats/base/ndarray/svariancepn -"2st",@stdlib/stats-base-ndarray-svariancepn -"2su",@stdlib/stats/base/ndarray/svariancetk -"2sv",@stdlib/stats-base-ndarray-svariancetk -"2sw",@stdlib/stats/base/ndarray/svariancewd -"2sx",@stdlib/stats-base-ndarray-svariancewd -"2sy",@stdlib/stats/base/ndarray/svarianceyc -"2sz",@stdlib/stats-base-ndarray-svarianceyc -"2Pw",@stdlib/stats/base/ndarray/sztest -"2Px",@stdlib/stats-base-ndarray-sztest -"2SA",@stdlib/stats/base/ndarray/sztest2 -"2SB",@stdlib/stats-base-ndarray-sztest2 -"2t0",@stdlib/stats/base/ndarray/variance -"2t1",@stdlib/stats-base-ndarray-variance -"2t2",@stdlib/stats/base/ndarray/variancech -"2t3",@stdlib/stats-base-ndarray-variancech -"2t4",@stdlib/stats/base/ndarray/variancepn -"2t5",@stdlib/stats-base-ndarray-variancepn -"2t6",@stdlib/stats/base/ndarray/variancetk -"2t7",@stdlib/stats-base-ndarray-variancetk -"2t8",@stdlib/stats/base/ndarray/variancewd -"2t9",@stdlib/stats-base-ndarray-variancewd -"2tA",@stdlib/stats/base/ndarray/varianceyc -"2tB",@stdlib/stats-base-ndarray-varianceyc -"2Py",@stdlib/stats/base/ndarray/ztest -"2Pz",@stdlib/stats-base-ndarray-ztest -"2SC",@stdlib/stats/base/ndarray/ztest2 -"2SD",@stdlib/stats-base-ndarray-ztest2 -"1EK",@stdlib/stats/base -"1EL",@stdlib/stats-base -"1Ec",@stdlib/stats/base/sdsnanmean -"1Ed",@stdlib/stats-base-sdsnanmean -"1Fk",@stdlib/stats/base/snanstdev -"1Fl",@stdlib/stats-base-snanstdev -"1Fm",@stdlib/stats/base/snanstdevch -"1Fn",@stdlib/stats-base-snanstdevch -"1Fo",@stdlib/stats/base/snanstdevpn -"1Fp",@stdlib/stats-base-snanstdevpn -"1Fq",@stdlib/stats/base/snanstdevtk -"1Fr",@stdlib/stats-base-snanstdevtk -"1Fs",@stdlib/stats/base/snanstdevwd -"1Ft",@stdlib/stats-base-snanstdevwd -"1Fu",@stdlib/stats/base/snanstdevyc -"1Fv",@stdlib/stats-base-snanstdevyc -"1Fw",@stdlib/stats/base/snanvariance -"1Fx",@stdlib/stats-base-snanvariance -"1Fy",@stdlib/stats/base/snanvariancech -"1Fz",@stdlib/stats-base-snanvariancech -"1G0",@stdlib/stats/base/snanvariancepn -"1G1",@stdlib/stats-base-snanvariancepn -"1G2",@stdlib/stats/base/snanvariancetk -"1G3",@stdlib/stats-base-snanvariancetk -"1G4",@stdlib/stats/base/snanvariancewd -"1G5",@stdlib/stats-base-snanvariancewd -"1G6",@stdlib/stats/base/snanvarianceyc -"1G7",@stdlib/stats-base-snanvarianceyc -"2Le",@stdlib/stats/base/ztest/alternative-enum2str -"2Lf",@stdlib/stats-base-ztest-alternative-enum2str -"2Lg",@stdlib/stats/base/ztest/alternative-resolve-enum -"2Lh",@stdlib/stats-base-ztest-alternative-resolve-enum -"2Li",@stdlib/stats/base/ztest/alternative-resolve-str -"2Lj",@stdlib/stats-base-ztest-alternative-resolve-str -"2Lk",@stdlib/stats/base/ztest/alternative-str2enum -"2Ll",@stdlib/stats-base-ztest-alternative-str2enum -"2Lm",@stdlib/stats/base/ztest/alternatives -"2Ln",@stdlib/stats-base-ztest-alternatives -"2Lo",@stdlib/stats/base/ztest/one-sample/results/factory -"2Lp",@stdlib/stats-base-ztest-one-sample-results-factory -"2Lq",@stdlib/stats/base/ztest/one-sample/results/float32 -"2Lr",@stdlib/stats-base-ztest-one-sample-results-float32 -"2Ls",@stdlib/stats/base/ztest/one-sample/results/float64 -"2Lt",@stdlib/stats-base-ztest-one-sample-results-float64 -"2Lu",@stdlib/stats/base/ztest/one-sample/results/struct-factory -"2Lv",@stdlib/stats-base-ztest-one-sample-results-struct-factory -"2Lw",@stdlib/stats/base/ztest/one-sample/results/to-json -"2Lx",@stdlib/stats-base-ztest-one-sample-results-to-json -"2Ly",@stdlib/stats/base/ztest/one-sample/results/to-string -"2Lz",@stdlib/stats-base-ztest-one-sample-results-to-string -"2Q0",@stdlib/stats/base/ztest/two-sample/results/factory -"2Q1",@stdlib/stats-base-ztest-two-sample-results-factory -"2Q2",@stdlib/stats/base/ztest/two-sample/results/float32 -"2Q3",@stdlib/stats-base-ztest-two-sample-results-float32 -"2Q4",@stdlib/stats/base/ztest/two-sample/results/float64 -"2Q5",@stdlib/stats-base-ztest-two-sample-results-float64 -"2Q6",@stdlib/stats/base/ztest/two-sample/results/struct-factory -"2Q7",@stdlib/stats-base-ztest-two-sample-results-struct-factory -"2Q8",@stdlib/stats/base/ztest/two-sample/results/to-json -"2Q9",@stdlib/stats-base-ztest-two-sample-results-to-json -"2QA",@stdlib/stats/base/ztest/two-sample/results/to-string -"2QB",@stdlib/stats-base-ztest-two-sample-results-to-string -"1Gw",@stdlib/stats/binomial-test -"1Gx",@stdlib/stats-binomial-test -"1Gy",@stdlib/stats/chi2gof -"1Gz",@stdlib/stats-chi2gof -"1H0",@stdlib/stats/chi2test -"1H1",@stdlib/stats-chi2test -"2G8",@stdlib/stats/cumax -"2G9",@stdlib/stats-cumax -"2Ui",@stdlib/stats/cumin -"2Uj",@stdlib/stats-cumin -"1H2",@stdlib/stats/fligner-test -"1H3",@stdlib/stats-fligner-test -"1H4",@stdlib/stats/incr/apcorr -"1H5",@stdlib/stats-incr-apcorr -"1H6",@stdlib/stats/incr/count -"1H7",@stdlib/stats-incr-count -"1H8",@stdlib/stats/incr/covariance -"1H9",@stdlib/stats-incr-covariance -"1HA",@stdlib/stats/incr/covmat -"1HB",@stdlib/stats-incr-covmat -"1HC",@stdlib/stats/incr/cv -"1HD",@stdlib/stats-incr-cv -"1HE",@stdlib/stats/incr/ewmean -"1HF",@stdlib/stats-incr-ewmean -"1HG",@stdlib/stats/incr/ewstdev -"1HH",@stdlib/stats-incr-ewstdev -"1HI",@stdlib/stats/incr/ewvariance -"1HJ",@stdlib/stats-incr-ewvariance -"1HK",@stdlib/stats/incr/gmean -"1HL",@stdlib/stats-incr-gmean -"1HM",@stdlib/stats/incr/grubbs -"1HN",@stdlib/stats-incr-grubbs -"1HO",@stdlib/stats/incr/hmean -"1HP",@stdlib/stats-incr-hmean -"1HQ",@stdlib/stats/incr/kurtosis -"1HR",@stdlib/stats-incr-kurtosis -"1HS",@stdlib/stats/incr/maape -"1HT",@stdlib/stats-incr-maape -"1HU",@stdlib/stats/incr/mae -"1HV",@stdlib/stats-incr-mae -"1HW",@stdlib/stats/incr/mapcorr -"1HX",@stdlib/stats-incr-mapcorr -"1HY",@stdlib/stats/incr/mape -"1HZ",@stdlib/stats-incr-mape -"1Ha",@stdlib/stats/incr/max -"1Hb",@stdlib/stats-incr-max -"1Hc",@stdlib/stats/incr/maxabs -"1Hd",@stdlib/stats-incr-maxabs -"1He",@stdlib/stats/incr/mcovariance -"1Hf",@stdlib/stats-incr-mcovariance -"1Hg",@stdlib/stats/incr/mcv -"1Hh",@stdlib/stats-incr-mcv -"1Hi",@stdlib/stats/incr/mda -"1Hj",@stdlib/stats-incr-mda -"1Hk",@stdlib/stats/incr/me -"1Hl",@stdlib/stats-incr-me -"1Hm",@stdlib/stats/incr/mean -"1Hn",@stdlib/stats-incr-mean -"1Ho",@stdlib/stats/incr/meanabs -"1Hp",@stdlib/stats-incr-meanabs -"1Hq",@stdlib/stats/incr/meanabs2 -"1Hr",@stdlib/stats-incr-meanabs2 -"1Hs",@stdlib/stats/incr/meanstdev -"1Ht",@stdlib/stats-incr-meanstdev -"1Hu",@stdlib/stats/incr/meanvar -"1Hv",@stdlib/stats-incr-meanvar -"1Hw",@stdlib/stats/incr/mgmean -"1Hx",@stdlib/stats-incr-mgmean -"1Hy",@stdlib/stats/incr/mgrubbs -"1Hz",@stdlib/stats-incr-mgrubbs -"1I0",@stdlib/stats/incr/mhmean -"1I1",@stdlib/stats-incr-mhmean -"1I2",@stdlib/stats/incr/midrange -"1I3",@stdlib/stats-incr-midrange -"1I4",@stdlib/stats/incr/min -"1I5",@stdlib/stats-incr-min -"1I6",@stdlib/stats/incr/minabs -"1I7",@stdlib/stats-incr-minabs -"1I8",@stdlib/stats/incr/minmax -"1I9",@stdlib/stats-incr-minmax -"1IA",@stdlib/stats/incr/minmaxabs -"1IB",@stdlib/stats-incr-minmaxabs -"1IC",@stdlib/stats/incr/mmaape -"1ID",@stdlib/stats-incr-mmaape -"1IE",@stdlib/stats/incr/mmae -"1IF",@stdlib/stats-incr-mmae -"1IG",@stdlib/stats/incr/mmape -"1IH",@stdlib/stats-incr-mmape -"1II",@stdlib/stats/incr/mmax -"1IJ",@stdlib/stats-incr-mmax -"1IK",@stdlib/stats/incr/mmaxabs -"1IL",@stdlib/stats-incr-mmaxabs -"1IM",@stdlib/stats/incr/mmda -"1IN",@stdlib/stats-incr-mmda -"1IO",@stdlib/stats/incr/mme -"1IP",@stdlib/stats-incr-mme -"1IQ",@stdlib/stats/incr/mmean -"1IR",@stdlib/stats-incr-mmean -"1IS",@stdlib/stats/incr/mmeanabs -"1IT",@stdlib/stats-incr-mmeanabs -"1IU",@stdlib/stats/incr/mmeanabs2 -"1IV",@stdlib/stats-incr-mmeanabs2 -"1IW",@stdlib/stats/incr/mmeanstdev -"1IX",@stdlib/stats-incr-mmeanstdev -"1IY",@stdlib/stats/incr/mmeanvar -"1IZ",@stdlib/stats-incr-mmeanvar -"1Ia",@stdlib/stats/incr/mmidrange -"1Ib",@stdlib/stats-incr-mmidrange -"1Ic",@stdlib/stats/incr/mmin -"1Id",@stdlib/stats-incr-mmin -"1Ie",@stdlib/stats/incr/mminabs -"1If",@stdlib/stats-incr-mminabs -"1Ig",@stdlib/stats/incr/mminmax -"1Ih",@stdlib/stats-incr-mminmax -"1Ii",@stdlib/stats/incr/mminmaxabs -"1Ij",@stdlib/stats-incr-mminmaxabs -"1Ik",@stdlib/stats/incr/mmpe -"1Il",@stdlib/stats-incr-mmpe -"1Im",@stdlib/stats/incr/mmse -"1In",@stdlib/stats-incr-mmse -"1Io",@stdlib/stats/incr/mpcorr -"1Ip",@stdlib/stats-incr-mpcorr -"1Iq",@stdlib/stats/incr/mpcorr2 -"1Ir",@stdlib/stats-incr-mpcorr2 -"1Is",@stdlib/stats/incr/mpcorrdist -"1It",@stdlib/stats-incr-mpcorrdist -"1Iu",@stdlib/stats/incr/mpe -"1Iv",@stdlib/stats-incr-mpe -"1Iw",@stdlib/stats/incr/mprod -"1Ix",@stdlib/stats-incr-mprod -"1Iy",@stdlib/stats/incr/mrange -"1Iz",@stdlib/stats-incr-mrange -"1J0",@stdlib/stats/incr/mrmse -"1J1",@stdlib/stats-incr-mrmse -"1J2",@stdlib/stats/incr/mrss -"1J3",@stdlib/stats-incr-mrss -"1J4",@stdlib/stats/incr/mse -"1J5",@stdlib/stats-incr-mse -"1J6",@stdlib/stats/incr/mstdev -"1J7",@stdlib/stats-incr-mstdev -"1J8",@stdlib/stats/incr/msum -"1J9",@stdlib/stats-incr-msum -"1JA",@stdlib/stats/incr/msumabs -"1JB",@stdlib/stats-incr-msumabs -"1JC",@stdlib/stats/incr/msumabs2 -"1JD",@stdlib/stats-incr-msumabs2 -"1JE",@stdlib/stats/incr/msummary -"1JF",@stdlib/stats-incr-msummary -"1JG",@stdlib/stats/incr/msumprod -"1JH",@stdlib/stats-incr-msumprod -"1JI",@stdlib/stats/incr/mvariance -"1JJ",@stdlib/stats-incr-mvariance -"1JK",@stdlib/stats/incr/mvmr -"1JL",@stdlib/stats-incr-mvmr -"1JM",@stdlib/stats/incr/nancount -"1JN",@stdlib/stats-incr-nancount -"2We",@stdlib/stats/incr/nangmean -"2Wf",@stdlib/stats-incr-nangmean -"2Wg",@stdlib/stats/incr/nanhmean -"2Wh",@stdlib/stats-incr-nanhmean -"2GU",@stdlib/stats/incr/nanmaxabs -"2GV",@stdlib/stats-incr-nanmaxabs -"2Yo",@stdlib/stats/incr/nanmcv -"2Yp",@stdlib/stats-incr-nanmcv -"2As",@stdlib/stats/incr/nanmean -"2At",@stdlib/stats-incr-nanmean -"2Au",@stdlib/stats/incr/nanmeanabs -"2Av",@stdlib/stats-incr-nanmeanabs -"2Wi",@stdlib/stats/incr/nanmin -"2Wj",@stdlib/stats-incr-nanmin -"2tC",@stdlib/stats/incr/nanmmape -"2tD",@stdlib/stats-incr-nanmmape -"2tE",@stdlib/stats/incr/nanmmse -"2tF",@stdlib/stats-incr-nanmmse -"2GW",@stdlib/stats/incr/nanmstdev -"2GX",@stdlib/stats-incr-nanmstdev -"2QC",@stdlib/stats/incr/nanmsum -"2QD",@stdlib/stats-incr-nanmsum -"2Aw",@stdlib/stats/incr/nanskewness -"2Ax",@stdlib/stats-incr-nanskewness -"2E4",@stdlib/stats/incr/nanstdev -"2E5",@stdlib/stats-incr-nanstdev -"1JO",@stdlib/stats/incr/nansum -"1JP",@stdlib/stats-incr-nansum -"1JQ",@stdlib/stats/incr/nansumabs -"1JR",@stdlib/stats-incr-nansumabs -"1JS",@stdlib/stats/incr/nansumabs2 -"1JT",@stdlib/stats-incr-nansumabs2 -"2tG",@stdlib/stats/incr/nanvariance -"2tH",@stdlib/stats-incr-nanvariance -"1JU",@stdlib/stats/incr -"1JV",@stdlib/stats-incr -"1JW",@stdlib/stats/incr/pcorr -"1JX",@stdlib/stats-incr-pcorr -"1JY",@stdlib/stats/incr/pcorr2 -"1JZ",@stdlib/stats-incr-pcorr2 -"1Ja",@stdlib/stats/incr/pcorrdist -"1Jb",@stdlib/stats-incr-pcorrdist -"1Jc",@stdlib/stats/incr/pcorrdistmat -"1Jd",@stdlib/stats-incr-pcorrdistmat -"1Je",@stdlib/stats/incr/pcorrmat -"1Jf",@stdlib/stats-incr-pcorrmat -"1Jg",@stdlib/stats/incr/prod -"1Jh",@stdlib/stats-incr-prod -"1Ji",@stdlib/stats/incr/range -"1Jj",@stdlib/stats-incr-range -"1Jk",@stdlib/stats/incr/rmse -"1Jl",@stdlib/stats-incr-rmse -"1Jm",@stdlib/stats/incr/rss -"1Jn",@stdlib/stats-incr-rss -"1Jo",@stdlib/stats/incr/skewness -"1Jp",@stdlib/stats-incr-skewness -"1Jq",@stdlib/stats/incr/stdev -"1Jr",@stdlib/stats-incr-stdev -"1Js",@stdlib/stats/incr/sum -"1Jt",@stdlib/stats-incr-sum -"1Ju",@stdlib/stats/incr/sumabs -"1Jv",@stdlib/stats-incr-sumabs -"1Jw",@stdlib/stats/incr/sumabs2 -"1Jx",@stdlib/stats-incr-sumabs2 -"1Jy",@stdlib/stats/incr/summary -"1Jz",@stdlib/stats-incr-summary -"1K0",@stdlib/stats/incr/sumprod -"1K1",@stdlib/stats-incr-sumprod -"1K2",@stdlib/stats/incr/variance -"1K3",@stdlib/stats-incr-variance -"1K4",@stdlib/stats/incr/vmr -"1K5",@stdlib/stats-incr-vmr -"1K6",@stdlib/stats/incr/wmean -"1K7",@stdlib/stats-incr-wmean -"1K8",@stdlib/stats/iter/cugmean -"1K9",@stdlib/stats-iter-cugmean -"1KA",@stdlib/stats/iter/cuhmean -"1KB",@stdlib/stats-iter-cuhmean -"1KC",@stdlib/stats/iter/cumax -"1KD",@stdlib/stats-iter-cumax -"1KE",@stdlib/stats/iter/cumaxabs -"1KF",@stdlib/stats-iter-cumaxabs -"1KG",@stdlib/stats/iter/cumean -"1KH",@stdlib/stats-iter-cumean -"1KI",@stdlib/stats/iter/cumeanabs -"1KJ",@stdlib/stats-iter-cumeanabs -"1KK",@stdlib/stats/iter/cumeanabs2 -"1KL",@stdlib/stats-iter-cumeanabs2 -"1KM",@stdlib/stats/iter/cumidrange -"1KN",@stdlib/stats-iter-cumidrange -"1KO",@stdlib/stats/iter/cumin -"1KP",@stdlib/stats-iter-cumin -"1KQ",@stdlib/stats/iter/cuminabs -"1KR",@stdlib/stats-iter-cuminabs -"1KS",@stdlib/stats/iter/cuprod -"1KT",@stdlib/stats-iter-cuprod -"1KU",@stdlib/stats/iter/curange -"1KV",@stdlib/stats-iter-curange -"1KW",@stdlib/stats/iter/cusum -"1KX",@stdlib/stats-iter-cusum -"1KY",@stdlib/stats/iter/cusumabs -"1KZ",@stdlib/stats-iter-cusumabs -"1Ka",@stdlib/stats/iter/cusumabs2 -"1Kb",@stdlib/stats-iter-cusumabs2 -"1Kc",@stdlib/stats/iter/max -"1Kd",@stdlib/stats-iter-max -"1Ke",@stdlib/stats/iter/maxabs -"1Kf",@stdlib/stats-iter-maxabs -"1Kg",@stdlib/stats/iter/mean -"1Kh",@stdlib/stats-iter-mean -"1Ki",@stdlib/stats/iter/meanabs -"1Kj",@stdlib/stats-iter-meanabs -"1Kk",@stdlib/stats/iter/meanabs2 -"1Kl",@stdlib/stats-iter-meanabs2 -"1Km",@stdlib/stats/iter/midrange -"1Kn",@stdlib/stats-iter-midrange -"1Ko",@stdlib/stats/iter/min -"1Kp",@stdlib/stats-iter-min -"1Kq",@stdlib/stats/iter/minabs -"1Kr",@stdlib/stats-iter-minabs -"1Ks",@stdlib/stats/iter/mmax -"1Kt",@stdlib/stats-iter-mmax -"1Ku",@stdlib/stats/iter/mmaxabs -"1Kv",@stdlib/stats-iter-mmaxabs -"1Kw",@stdlib/stats/iter/mmean -"1Kx",@stdlib/stats-iter-mmean -"1Ky",@stdlib/stats/iter/mmeanabs -"1Kz",@stdlib/stats-iter-mmeanabs -"1L0",@stdlib/stats/iter/mmeanabs2 -"1L1",@stdlib/stats-iter-mmeanabs2 -"1L2",@stdlib/stats/iter/mmidrange -"1L3",@stdlib/stats-iter-mmidrange -"1L4",@stdlib/stats/iter/mmin -"1L5",@stdlib/stats-iter-mmin -"1L6",@stdlib/stats/iter/mminabs -"1L7",@stdlib/stats-iter-mminabs -"1L8",@stdlib/stats/iter/mprod -"1L9",@stdlib/stats-iter-mprod -"1LA",@stdlib/stats/iter/mrange -"1LB",@stdlib/stats-iter-mrange -"1LC",@stdlib/stats/iter/msum -"1LD",@stdlib/stats-iter-msum -"1LE",@stdlib/stats/iter/msumabs -"1LF",@stdlib/stats-iter-msumabs -"1LG",@stdlib/stats/iter/msumabs2 -"1LH",@stdlib/stats-iter-msumabs2 -"1LI",@stdlib/stats/iter -"1LJ",@stdlib/stats-iter -"1LK",@stdlib/stats/iter/prod -"1LL",@stdlib/stats-iter-prod -"1LM",@stdlib/stats/iter/range -"1LN",@stdlib/stats-iter-range -"1LO",@stdlib/stats/iter/stdev -"1LP",@stdlib/stats-iter-stdev -"1LQ",@stdlib/stats/iter/sum -"1LR",@stdlib/stats-iter-sum -"1LS",@stdlib/stats/iter/sumabs -"1LT",@stdlib/stats-iter-sumabs -"1LU",@stdlib/stats/iter/sumabs2 -"1LV",@stdlib/stats-iter-sumabs2 -"1LW",@stdlib/stats/iter/variance -"1LX",@stdlib/stats-iter-variance -"1LY",@stdlib/stats/kde2d -"1LZ",@stdlib/stats-kde2d -"1La",@stdlib/stats/kruskal-test -"1Lb",@stdlib/stats-kruskal-test -"1Lc",@stdlib/stats/kstest -"1Ld",@stdlib/stats-kstest -"1Le",@stdlib/stats/levene-test -"1Lf",@stdlib/stats-levene-test -"1Lg",@stdlib/stats/lowess -"1Lh",@stdlib/stats-lowess -"2Jk",@stdlib/stats/max-by -"2Jl",@stdlib/stats-max-by -"2F6",@stdlib/stats/max -"2F7",@stdlib/stats-max -"2Uk",@stdlib/stats/maxabs -"2Ul",@stdlib/stats-maxabs -"2cG",@stdlib/stats/maxsorted -"2cH",@stdlib/stats-maxsorted -"2Um",@stdlib/stats/mean -"2Un",@stdlib/stats-mean -"2cI",@stdlib/stats/meankbn -"2cJ",@stdlib/stats-meankbn -"2cK",@stdlib/stats/meankbn2 -"2cL",@stdlib/stats-meankbn2 -"2cM",@stdlib/stats/meanors -"2cN",@stdlib/stats-meanors -"2cO",@stdlib/stats/meanpn -"2cP",@stdlib/stats-meanpn -"2cQ",@stdlib/stats/meanpw -"2cR",@stdlib/stats-meanpw -"2cS",@stdlib/stats/meanwd -"2cT",@stdlib/stats-meanwd -"2cU",@stdlib/stats/mediansorted -"2cV",@stdlib/stats-mediansorted -"2tI",@stdlib/stats/midrange-by -"2tJ",@stdlib/stats-midrange-by -"2tK",@stdlib/stats/midrange -"2tL",@stdlib/stats-midrange -"2Uo",@stdlib/stats/min-by -"2Up",@stdlib/stats-min-by -"2Uq",@stdlib/stats/min -"2Ur",@stdlib/stats-min -"2Us",@stdlib/stats/minabs -"2Ut",@stdlib/stats-minabs -"2cW",@stdlib/stats/minsorted -"2cX",@stdlib/stats-minsorted -"2cY",@stdlib/stats/nanmax-by -"2cZ",@stdlib/stats-nanmax-by -"2Uu",@stdlib/stats/nanmax -"2Uv",@stdlib/stats-nanmax -"2ca",@stdlib/stats/nanmaxabs -"2cb",@stdlib/stats-nanmaxabs -"2VG",@stdlib/stats/nanmean -"2VH",@stdlib/stats-nanmean -"2cc",@stdlib/stats/nanmeanors -"2cd",@stdlib/stats-nanmeanors -"2ce",@stdlib/stats/nanmeanpn -"2cf",@stdlib/stats-nanmeanpn -"2cg",@stdlib/stats/nanmeanwd -"2ch",@stdlib/stats-nanmeanwd -"2tM",@stdlib/stats/nanmidrange-by -"2tN",@stdlib/stats-nanmidrange-by -"2tO",@stdlib/stats/nanmidrange -"2tP",@stdlib/stats-nanmidrange -"2ci",@stdlib/stats/nanmin-by -"2cj",@stdlib/stats-nanmin-by -"2Uw",@stdlib/stats/nanmin -"2Ux",@stdlib/stats-nanmin -"2ck",@stdlib/stats/nanminabs -"2cl",@stdlib/stats-nanminabs -"2tQ",@stdlib/stats/nanrange-by -"2tR",@stdlib/stats-nanrange-by -"2tS",@stdlib/stats/nanrange -"2tT",@stdlib/stats-nanrange -"1Lj",@stdlib/stats -"1Lk",@stdlib/stats/padjust -"1Ll",@stdlib/stats-padjust -"1Lm",@stdlib/stats/pcorrtest -"1Ln",@stdlib/stats-pcorrtest -"2cm",@stdlib/stats/range-by -"2cn",@stdlib/stats-range-by -"2Uy",@stdlib/stats/range -"2Uz",@stdlib/stats-range -"2tU",@stdlib/stats/rangeabs -"2tV",@stdlib/stats-rangeabs -"1Lo",@stdlib/stats/ranks -"1Lp",@stdlib/stats-ranks -"2QE",@stdlib/stats/strided/covarmtk -"2QF",@stdlib/stats-strided-covarmtk -"2QG",@stdlib/stats/strided/dcovarmtk -"2QH",@stdlib/stats-strided-dcovarmtk -"2QI",@stdlib/stats/strided/dcovmatmtk -"2QJ",@stdlib/stats-strided-dcovmatmtk -"28i",@stdlib/stats/strided/dcumax -"28j",@stdlib/stats-strided-dcumax -"28k",@stdlib/stats/strided/dcumaxabs -"28l",@stdlib/stats-strided-dcumaxabs -"2E6",@stdlib/stats/strided/dcumin -"2E7",@stdlib/stats-strided-dcumin -"28m",@stdlib/stats/strided/dcuminabs -"28n",@stdlib/stats-strided-dcuminabs -"2tW",@stdlib/stats/strided/distances/dchebyshev -"2tX",@stdlib/stats-strided-distances-dchebyshev -"2tY",@stdlib/stats/strided/distances/dcityblock -"2tZ",@stdlib/stats-strided-distances-dcityblock -"2ta",@stdlib/stats/strided/distances/dcorrelation -"2tb",@stdlib/stats-strided-distances-dcorrelation -"2tc",@stdlib/stats/strided/distances/dcosine-distance -"2td",@stdlib/stats-strided-distances-dcosine-distance -"2te",@stdlib/stats/strided/distances/dcosine-similarity -"2tf",@stdlib/stats-strided-distances-dcosine-similarity -"2tg",@stdlib/stats/strided/distances/deuclidean -"2th",@stdlib/stats-strided-distances-deuclidean -"2ti",@stdlib/stats/strided/distances/dminkowski -"2tj",@stdlib/stats-strided-distances-dminkowski -"2tk",@stdlib/stats/strided/distances/dsquared-euclidean -"2tl",@stdlib/stats-strided-distances-dsquared-euclidean -"2tm",@stdlib/stats/strided/distances -"2tn",@stdlib/stats-strided-distances -"26I",@stdlib/stats/strided/dmax -"26J",@stdlib/stats-strided-dmax -"28o",@stdlib/stats/strided/dmaxabs -"28p",@stdlib/stats-strided-dmaxabs -"28q",@stdlib/stats/strided/dmaxabssorted -"28r",@stdlib/stats-strided-dmaxabssorted -"28s",@stdlib/stats/strided/dmaxsorted -"28t",@stdlib/stats-strided-dmaxsorted -"2Jm",@stdlib/stats/strided/dmean -"2Jn",@stdlib/stats-strided-dmean -"28u",@stdlib/stats/strided/dmeankbn -"28v",@stdlib/stats-strided-dmeankbn -"28w",@stdlib/stats/strided/dmeankbn2 -"28x",@stdlib/stats-strided-dmeankbn2 -"28y",@stdlib/stats/strided/dmeanli -"28z",@stdlib/stats-strided-dmeanli -"2Jo",@stdlib/stats/strided/dmeanpn -"2Jp",@stdlib/stats-strided-dmeanpn -"2QK",@stdlib/stats/strided/dmeanstdev -"2QL",@stdlib/stats-strided-dmeanstdev -"2QM",@stdlib/stats/strided/dmeanstdevpn -"2QN",@stdlib/stats-strided-dmeanstdevpn -"2QO",@stdlib/stats/strided/dmeanvar -"2QP",@stdlib/stats-strided-dmeanvar -"2QQ",@stdlib/stats/strided/dmeanvarpn -"2QR",@stdlib/stats-strided-dmeanvarpn -"29A",@stdlib/stats/strided/dmidrange -"29B",@stdlib/stats-strided-dmidrange -"2to",@stdlib/stats/strided/dmidrangeabs -"2tp",@stdlib/stats-strided-dmidrangeabs -"29C",@stdlib/stats/strided/dmin -"29D",@stdlib/stats-strided-dmin -"29E",@stdlib/stats/strided/dminabs -"29F",@stdlib/stats-strided-dminabs -"29G",@stdlib/stats/strided/dminsorted -"29H",@stdlib/stats-strided-dminsorted -"2E8",@stdlib/stats/strided/dmskmax -"2E9",@stdlib/stats-strided-dmskmax -"2tq",@stdlib/stats/strided/dmskmaxabs -"2tr",@stdlib/stats-strided-dmskmaxabs -"2ts",@stdlib/stats/strided/dmskmidrange -"2tt",@stdlib/stats-strided-dmskmidrange -"2EA",@stdlib/stats/strided/dmskmin -"2EB",@stdlib/stats-strided-dmskmin -"2EC",@stdlib/stats/strided/dmskrange -"2ED",@stdlib/stats-strided-dmskrange -"29I",@stdlib/stats/strided/dnanmax -"29J",@stdlib/stats-strided-dnanmax -"29K",@stdlib/stats/strided/dnanmaxabs -"29L",@stdlib/stats-strided-dnanmaxabs -"29M",@stdlib/stats/strided/dnanmean -"29N",@stdlib/stats-strided-dnanmean -"2Ay",@stdlib/stats/strided/dnanmeanors -"2Az",@stdlib/stats-strided-dnanmeanors -"2B0",@stdlib/stats/strided/dnanmeanpn -"2B1",@stdlib/stats-strided-dnanmeanpn -"2B2",@stdlib/stats/strided/dnanmeanpw -"2B3",@stdlib/stats-strided-dnanmeanpw -"2B4",@stdlib/stats/strided/dnanmeanwd -"2B5",@stdlib/stats-strided-dnanmeanwd -"2tu",@stdlib/stats/strided/dnanmidrange -"2tv",@stdlib/stats-strided-dnanmidrange -"2B6",@stdlib/stats/strided/dnanmin -"2B7",@stdlib/stats-strided-dnanmin -"2B8",@stdlib/stats/strided/dnanminabs -"2B9",@stdlib/stats-strided-dnanminabs -"2Jq",@stdlib/stats/strided/dnanmskmax -"2Jr",@stdlib/stats-strided-dnanmskmax -"2tw",@stdlib/stats/strided/dnanmskmaxabs -"2tx",@stdlib/stats-strided-dnanmskmaxabs -"2ty",@stdlib/stats/strided/dnanmskmidrange -"2tz",@stdlib/stats-strided-dnanmskmidrange -"2Js",@stdlib/stats/strided/dnanmskmin -"2Jt",@stdlib/stats-strided-dnanmskmin -"2u0",@stdlib/stats/strided/dnanmskminabs -"2u1",@stdlib/stats-strided-dnanmskminabs -"2Ju",@stdlib/stats/strided/dnanmskrange -"2Jv",@stdlib/stats-strided-dnanmskrange -"2BA",@stdlib/stats/strided/dnanrange -"2BB",@stdlib/stats-strided-dnanrange -"2u2",@stdlib/stats/strided/dnanrangeabs -"2u3",@stdlib/stats-strided-dnanrangeabs -"2Jw",@stdlib/stats/strided/dnanstdev -"2Jx",@stdlib/stats-strided-dnanstdev -"2BC",@stdlib/stats/strided/dnanstdevch -"2BD",@stdlib/stats-strided-dnanstdevch -"2BE",@stdlib/stats/strided/dnanstdevpn -"2BF",@stdlib/stats-strided-dnanstdevpn -"2BG",@stdlib/stats/strided/dnanstdevtk -"2BH",@stdlib/stats-strided-dnanstdevtk -"2BI",@stdlib/stats/strided/dnanstdevwd -"2BJ",@stdlib/stats-strided-dnanstdevwd -"2BK",@stdlib/stats/strided/dnanstdevyc -"2BL",@stdlib/stats-strided-dnanstdevyc -"2BM",@stdlib/stats/strided/dnanvariance -"2BN",@stdlib/stats-strided-dnanvariance -"2BO",@stdlib/stats/strided/dnanvariancech -"2BP",@stdlib/stats-strided-dnanvariancech -"2BQ",@stdlib/stats/strided/dnanvariancepn -"2BR",@stdlib/stats-strided-dnanvariancepn -"2BS",@stdlib/stats/strided/dnanvariancetk -"2BT",@stdlib/stats-strided-dnanvariancetk -"2BU",@stdlib/stats/strided/dnanvariancewd -"2BV",@stdlib/stats-strided-dnanvariancewd -"2BW",@stdlib/stats/strided/dnanvarianceyc -"2BX",@stdlib/stats-strided-dnanvarianceyc -"2u4",@stdlib/stats/strided/dpcorr -"2u5",@stdlib/stats-strided-dpcorr -"2u6",@stdlib/stats/strided/dpcorrwd -"2u7",@stdlib/stats-strided-dpcorrwd -"2BY",@stdlib/stats/strided/drange -"2BZ",@stdlib/stats-strided-drange -"2u8",@stdlib/stats/strided/drangeabs -"2u9",@stdlib/stats-strided-drangeabs -"2Jy",@stdlib/stats/strided/dsem -"2Jz",@stdlib/stats-strided-dsem -"2Ba",@stdlib/stats/strided/dsemch -"2Bb",@stdlib/stats-strided-dsemch -"2K0",@stdlib/stats/strided/dsempn -"2K1",@stdlib/stats-strided-dsempn -"2Bc",@stdlib/stats/strided/dsemtk -"2Bd",@stdlib/stats-strided-dsemtk -"2Be",@stdlib/stats/strided/dsemwd -"2Bf",@stdlib/stats-strided-dsemwd -"2Bg",@stdlib/stats/strided/dsemyc -"2Bh",@stdlib/stats-strided-dsemyc -"2Bi",@stdlib/stats/strided/dsmean -"2Bj",@stdlib/stats-strided-dsmean -"2EE",@stdlib/stats/strided/dsmeanors -"2EF",@stdlib/stats-strided-dsmeanors -"2Bk",@stdlib/stats/strided/dsmeanpn -"2Bl",@stdlib/stats-strided-dsmeanpn -"2Bm",@stdlib/stats/strided/dsmeanpw -"2Bn",@stdlib/stats-strided-dsmeanpw -"2Bo",@stdlib/stats/strided/dsmeanwd -"2Bp",@stdlib/stats-strided-dsmeanwd -"2Bq",@stdlib/stats/strided/dsnanmean -"2Br",@stdlib/stats-strided-dsnanmean -"2Bs",@stdlib/stats/strided/dsnanmeanors -"2Bt",@stdlib/stats-strided-dsnanmeanors -"2Bu",@stdlib/stats/strided/dsnanmeanpn -"2Bv",@stdlib/stats-strided-dsnanmeanpn -"2Bw",@stdlib/stats/strided/dsnanmeanwd -"2Bx",@stdlib/stats-strided-dsnanmeanwd -"2K2",@stdlib/stats/strided/dstdev -"2K3",@stdlib/stats-strided-dstdev -"2By",@stdlib/stats/strided/dstdevch -"2Bz",@stdlib/stats-strided-dstdevch -"2C0",@stdlib/stats/strided/dstdevpn -"2C1",@stdlib/stats-strided-dstdevpn -"2C2",@stdlib/stats/strided/dstdevtk -"2C3",@stdlib/stats-strided-dstdevtk -"2C4",@stdlib/stats/strided/dstdevwd -"2C5",@stdlib/stats-strided-dstdevwd -"2C6",@stdlib/stats/strided/dstdevyc -"2C7",@stdlib/stats-strided-dstdevyc -"2C8",@stdlib/stats/strided/dsvariance -"2C9",@stdlib/stats-strided-dsvariance -"2CA",@stdlib/stats/strided/dsvariancepn -"2CB",@stdlib/stats-strided-dsvariancepn -"2CC",@stdlib/stats/strided/dvariance -"2CD",@stdlib/stats-strided-dvariance -"2CE",@stdlib/stats/strided/dvariancech -"2CF",@stdlib/stats-strided-dvariancech -"2CG",@stdlib/stats/strided/dvariancepn -"2CH",@stdlib/stats-strided-dvariancepn -"2CI",@stdlib/stats/strided/dvariancetk -"2CJ",@stdlib/stats-strided-dvariancetk -"2CK",@stdlib/stats/strided/dvariancewd -"2CL",@stdlib/stats-strided-dvariancewd -"2CM",@stdlib/stats/strided/dvarianceyc -"2CN",@stdlib/stats-strided-dvarianceyc -"2M0",@stdlib/stats/strided/dvarm -"2M1",@stdlib/stats-strided-dvarm -"2M2",@stdlib/stats/strided/dvarmpn -"2M3",@stdlib/stats-strided-dvarmpn -"2CO",@stdlib/stats/strided/dvarmtk -"2CP",@stdlib/stats-strided-dvarmtk -"2M4",@stdlib/stats/strided/dztest -"2M5",@stdlib/stats-strided-dztest -"2SE",@stdlib/stats/strided/dztest2 -"2SF",@stdlib/stats-strided-dztest2 -"2M6",@stdlib/stats/strided/max-by -"2M7",@stdlib/stats-strided-max-by -"2M8",@stdlib/stats/strided/max -"2M9",@stdlib/stats-strided-max -"2MA",@stdlib/stats/strided/maxabs -"2MB",@stdlib/stats-strided-maxabs -"2MC",@stdlib/stats/strided/maxsorted -"2MD",@stdlib/stats-strided-maxsorted -"2ME",@stdlib/stats/strided/mean -"2MF",@stdlib/stats-strided-mean -"2MG",@stdlib/stats/strided/meankbn -"2MH",@stdlib/stats-strided-meankbn -"2MI",@stdlib/stats/strided/meankbn2 -"2MJ",@stdlib/stats-strided-meankbn2 -"2MK",@stdlib/stats/strided/meanors -"2ML",@stdlib/stats-strided-meanors -"2MM",@stdlib/stats/strided/meanpn -"2MN",@stdlib/stats-strided-meanpn -"2MO",@stdlib/stats/strided/meanpw -"2MP",@stdlib/stats-strided-meanpw -"2MQ",@stdlib/stats/strided/meanwd -"2MR",@stdlib/stats-strided-meanwd -"2MS",@stdlib/stats/strided/mediansorted -"2MT",@stdlib/stats-strided-mediansorted -"2uA",@stdlib/stats/strided/midrange-by -"2uB",@stdlib/stats-strided-midrange-by -"2uC",@stdlib/stats/strided/midrange -"2uD",@stdlib/stats-strided-midrange -"2uE",@stdlib/stats/strided/midrangeabs -"2uF",@stdlib/stats-strided-midrangeabs -"2MU",@stdlib/stats/strided/min-by -"2MV",@stdlib/stats-strided-min-by -"2MW",@stdlib/stats/strided/min -"2MX",@stdlib/stats-strided-min -"2MY",@stdlib/stats/strided/minabs -"2MZ",@stdlib/stats-strided-minabs -"2Ma",@stdlib/stats/strided/minsorted -"2Mb",@stdlib/stats-strided-minsorted -"2Mc",@stdlib/stats/strided/mskmax -"2Md",@stdlib/stats-strided-mskmax -"2uG",@stdlib/stats/strided/mskmaxabs -"2uH",@stdlib/stats-strided-mskmaxabs -"2uI",@stdlib/stats/strided/mskmidrange -"2uJ",@stdlib/stats-strided-mskmidrange -"2Me",@stdlib/stats/strided/mskmin -"2Mf",@stdlib/stats-strided-mskmin -"2uK",@stdlib/stats/strided/mskminabs -"2uL",@stdlib/stats-strided-mskminabs -"2Mg",@stdlib/stats/strided/mskrange -"2Mh",@stdlib/stats-strided-mskrange -"2Mi",@stdlib/stats/strided/nanmax-by -"2Mj",@stdlib/stats-strided-nanmax-by -"2Mk",@stdlib/stats/strided/nanmax -"2Ml",@stdlib/stats-strided-nanmax -"2Mm",@stdlib/stats/strided/nanmaxabs -"2Mn",@stdlib/stats-strided-nanmaxabs -"2QS",@stdlib/stats/strided/nanmean -"2QT",@stdlib/stats-strided-nanmean -"2QU",@stdlib/stats/strided/nanmeanors -"2QV",@stdlib/stats-strided-nanmeanors -"2QW",@stdlib/stats/strided/nanmeanpn -"2QX",@stdlib/stats-strided-nanmeanpn -"2QY",@stdlib/stats/strided/nanmeanwd -"2QZ",@stdlib/stats-strided-nanmeanwd -"2uM",@stdlib/stats/strided/nanmidrange-by -"2uN",@stdlib/stats-strided-nanmidrange-by -"2uO",@stdlib/stats/strided/nanmidrange -"2uP",@stdlib/stats-strided-nanmidrange -"2Mo",@stdlib/stats/strided/nanmin-by -"2Mp",@stdlib/stats-strided-nanmin-by -"2Mq",@stdlib/stats/strided/nanmin -"2Mr",@stdlib/stats-strided-nanmin -"2Ms",@stdlib/stats/strided/nanminabs -"2Mt",@stdlib/stats-strided-nanminabs -"2Qa",@stdlib/stats/strided/nanmskmax -"2Qb",@stdlib/stats-strided-nanmskmax -"2uQ",@stdlib/stats/strided/nanmskmidrange -"2uR",@stdlib/stats-strided-nanmskmidrange -"2Qc",@stdlib/stats/strided/nanmskmin -"2Qd",@stdlib/stats-strided-nanmskmin -"2Qe",@stdlib/stats/strided/nanmskrange -"2Qf",@stdlib/stats-strided-nanmskrange -"2Qg",@stdlib/stats/strided/nanrange-by -"2Qh",@stdlib/stats-strided-nanrange-by -"2Qi",@stdlib/stats/strided/nanrange -"2Qj",@stdlib/stats-strided-nanrange -"2uS",@stdlib/stats/strided/nanrangeabs -"2uT",@stdlib/stats-strided-nanrangeabs -"2SG",@stdlib/stats/strided/nanstdev -"2SH",@stdlib/stats-strided-nanstdev -"2SI",@stdlib/stats/strided/nanstdevch -"2SJ",@stdlib/stats-strided-nanstdevch -"2SK",@stdlib/stats/strided/nanstdevpn -"2SL",@stdlib/stats-strided-nanstdevpn -"2SM",@stdlib/stats/strided/nanstdevtk -"2SN",@stdlib/stats-strided-nanstdevtk -"2SO",@stdlib/stats/strided/nanstdevwd -"2SP",@stdlib/stats-strided-nanstdevwd -"2SQ",@stdlib/stats/strided/nanstdevyc -"2SR",@stdlib/stats-strided-nanstdevyc -"2Qk",@stdlib/stats/strided/nanvariance -"2Ql",@stdlib/stats-strided-nanvariance -"2Qm",@stdlib/stats/strided/nanvariancech -"2Qn",@stdlib/stats-strided-nanvariancech -"2Qo",@stdlib/stats/strided/nanvariancepn -"2Qp",@stdlib/stats-strided-nanvariancepn -"2Qq",@stdlib/stats/strided/nanvariancetk -"2Qr",@stdlib/stats-strided-nanvariancetk -"2Qs",@stdlib/stats/strided/nanvariancewd -"2Qt",@stdlib/stats-strided-nanvariancewd -"2Qu",@stdlib/stats/strided/nanvarianceyc -"2Qv",@stdlib/stats-strided-nanvarianceyc -"2K4",@stdlib/stats/strided -"2K5",@stdlib/stats-strided -"2Qw",@stdlib/stats/strided/range-by -"2Qx",@stdlib/stats-strided-range-by -"2Qy",@stdlib/stats/strided/range -"2Qz",@stdlib/stats-strided-range -"2uU",@stdlib/stats/strided/rangeabs -"2uV",@stdlib/stats-strided-rangeabs -"2R0",@stdlib/stats/strided/scovarmtk -"2R1",@stdlib/stats-strided-scovarmtk -"2CQ",@stdlib/stats/strided/scumax -"2CR",@stdlib/stats-strided-scumax -"2CS",@stdlib/stats/strided/scumaxabs -"2CT",@stdlib/stats-strided-scumaxabs -"2CU",@stdlib/stats/strided/scumin -"2CV",@stdlib/stats-strided-scumin -"2CW",@stdlib/stats/strided/scuminabs -"2CX",@stdlib/stats-strided-scuminabs -"2CY",@stdlib/stats/strided/sdsmean -"2CZ",@stdlib/stats-strided-sdsmean -"2Ca",@stdlib/stats/strided/sdsmeanors -"2Cb",@stdlib/stats-strided-sdsmeanors -"2Vs",@stdlib/stats/strided/sdsnanmeanors -"2Vt",@stdlib/stats-strided-sdsnanmeanors -"2Cc",@stdlib/stats/strided/smax -"2Cd",@stdlib/stats-strided-smax -"2Ce",@stdlib/stats/strided/smaxabs -"2Cf",@stdlib/stats-strided-smaxabs -"2Cg",@stdlib/stats/strided/smaxabssorted -"2Ch",@stdlib/stats-strided-smaxabssorted -"2Ci",@stdlib/stats/strided/smaxsorted -"2Cj",@stdlib/stats-strided-smaxsorted -"2Mu",@stdlib/stats/strided/smean -"2Mv",@stdlib/stats-strided-smean -"2R2",@stdlib/stats/strided/smeankbn -"2R3",@stdlib/stats-strided-smeankbn -"2R4",@stdlib/stats/strided/smeankbn2 -"2R5",@stdlib/stats-strided-smeankbn2 -"2Ck",@stdlib/stats/strided/smeanli -"2Cl",@stdlib/stats-strided-smeanli -"2R6",@stdlib/stats/strided/smeanlipw -"2R7",@stdlib/stats-strided-smeanlipw -"2R8",@stdlib/stats/strided/smeanors -"2R9",@stdlib/stats-strided-smeanors -"2Mw",@stdlib/stats/strided/smeanpn -"2Mx",@stdlib/stats-strided-smeanpn -"2Cm",@stdlib/stats/strided/smeanpw -"2Cn",@stdlib/stats-strided-smeanpw -"2Co",@stdlib/stats/strided/smeanwd -"2Cp",@stdlib/stats-strided-smeanwd -"2Cq",@stdlib/stats/strided/smediansorted -"2Cr",@stdlib/stats-strided-smediansorted -"2EG",@stdlib/stats/strided/smidrange -"2EH",@stdlib/stats-strided-smidrange -"2Cs",@stdlib/stats/strided/smin -"2Ct",@stdlib/stats-strided-smin -"2Cu",@stdlib/stats/strided/sminabs -"2Cv",@stdlib/stats-strided-sminabs -"2Cw",@stdlib/stats/strided/sminsorted -"2Cx",@stdlib/stats-strided-sminsorted -"2Cy",@stdlib/stats/strided/smskmax -"2Cz",@stdlib/stats-strided-smskmax -"2uW",@stdlib/stats/strided/smskmaxabs -"2uX",@stdlib/stats-strided-smskmaxabs -"2uY",@stdlib/stats/strided/smskmidrange -"2uZ",@stdlib/stats-strided-smskmidrange -"2D0",@stdlib/stats/strided/smskmin -"2D1",@stdlib/stats-strided-smskmin -"2D2",@stdlib/stats/strided/smskrange -"2D3",@stdlib/stats-strided-smskrange -"2D4",@stdlib/stats/strided/snanmax -"2D5",@stdlib/stats-strided-snanmax -"2D6",@stdlib/stats/strided/snanmaxabs -"2D7",@stdlib/stats-strided-snanmaxabs -"2Vu",@stdlib/stats/strided/snanmean -"2Vv",@stdlib/stats-strided-snanmean -"2D8",@stdlib/stats/strided/snanmeanors -"2D9",@stdlib/stats-strided-snanmeanors -"2DA",@stdlib/stats/strided/snanmeanpn -"2DB",@stdlib/stats-strided-snanmeanpn -"2DC",@stdlib/stats/strided/snanmeanwd -"2DD",@stdlib/stats-strided-snanmeanwd -"2ua",@stdlib/stats/strided/snanmidrange -"2ub",@stdlib/stats-strided-snanmidrange -"2DE",@stdlib/stats/strided/snanmin -"2DF",@stdlib/stats-strided-snanmin -"2DG",@stdlib/stats/strided/snanminabs -"2DH",@stdlib/stats-strided-snanminabs -"2K6",@stdlib/stats/strided/snanmskmax -"2K7",@stdlib/stats-strided-snanmskmax -"2uc",@stdlib/stats/strided/snanmskmaxabs -"2ud",@stdlib/stats-strided-snanmskmaxabs -"2ue",@stdlib/stats/strided/snanmskmidrange -"2uf",@stdlib/stats-strided-snanmskmidrange -"2K8",@stdlib/stats/strided/snanmskmin -"2K9",@stdlib/stats-strided-snanmskmin -"2ug",@stdlib/stats/strided/snanmskminabs -"2uh",@stdlib/stats-strided-snanmskminabs -"2KA",@stdlib/stats/strided/snanmskrange -"2KB",@stdlib/stats-strided-snanmskrange -"2DI",@stdlib/stats/strided/snanrange -"2DJ",@stdlib/stats-strided-snanrange -"2DK",@stdlib/stats/strided/srange -"2DL",@stdlib/stats-strided-srange -"2ui",@stdlib/stats/strided/srangeabs -"2uj",@stdlib/stats-strided-srangeabs -"2My",@stdlib/stats/strided/sstdev -"2Mz",@stdlib/stats-strided-sstdev -"2DM",@stdlib/stats/strided/sstdevch -"2DN",@stdlib/stats-strided-sstdevch -"2DO",@stdlib/stats/strided/sstdevpn -"2DP",@stdlib/stats-strided-sstdevpn -"2DQ",@stdlib/stats/strided/sstdevtk -"2DR",@stdlib/stats-strided-sstdevtk -"2Vw",@stdlib/stats/strided/sstdevwd -"2Vx",@stdlib/stats-strided-sstdevwd -"2EI",@stdlib/stats/strided/sstdevyc -"2EJ",@stdlib/stats-strided-sstdevyc -"2RA",@stdlib/stats/strided/stdev -"2RB",@stdlib/stats-strided-stdev -"2RC",@stdlib/stats/strided/stdevch -"2RD",@stdlib/stats-strided-stdevch -"2RE",@stdlib/stats/strided/stdevpn -"2RF",@stdlib/stats-strided-stdevpn -"2RG",@stdlib/stats/strided/stdevtk -"2RH",@stdlib/stats-strided-stdevtk -"2RI",@stdlib/stats/strided/stdevwd -"2RJ",@stdlib/stats-strided-stdevwd -"2RK",@stdlib/stats/strided/stdevyc -"2RL",@stdlib/stats-strided-stdevyc -"2N0",@stdlib/stats/strided/svariance -"2N1",@stdlib/stats-strided-svariance -"2EK",@stdlib/stats/strided/svariancech -"2EL",@stdlib/stats-strided-svariancech -"2EM",@stdlib/stats/strided/svariancepn -"2EN",@stdlib/stats-strided-svariancepn -"2EO",@stdlib/stats/strided/svariancetk -"2EP",@stdlib/stats-strided-svariancetk -"2N2",@stdlib/stats/strided/svariancewd -"2N3",@stdlib/stats-strided-svariancewd -"2EQ",@stdlib/stats/strided/svarianceyc -"2ER",@stdlib/stats-strided-svarianceyc -"2N4",@stdlib/stats/strided/sztest -"2N5",@stdlib/stats-strided-sztest -"2RM",@stdlib/stats/strided/sztest2 -"2RN",@stdlib/stats-strided-sztest2 -"2RO",@stdlib/stats/strided/variance -"2RP",@stdlib/stats-strided-variance -"2RQ",@stdlib/stats/strided/variancech -"2RR",@stdlib/stats-strided-variancech -"2RS",@stdlib/stats/strided/variancepn -"2RT",@stdlib/stats-strided-variancepn -"2RU",@stdlib/stats/strided/variancetk -"2RV",@stdlib/stats-strided-variancetk -"2RW",@stdlib/stats/strided/variancewd -"2RX",@stdlib/stats-strided-variancewd -"2RY",@stdlib/stats/strided/varianceyc -"2RZ",@stdlib/stats-strided-varianceyc -"2GY",@stdlib/stats/strided/wasm/dmeanors -"2GZ",@stdlib/stats-strided-wasm-dmeanors -"2Yq",@stdlib/stats/strided/wasm/dmeanpw -"2Yr",@stdlib/stats-strided-wasm-dmeanpw -"2KC",@stdlib/stats/strided/wasm/dmeanwd -"2KD",@stdlib/stats-strided-wasm-dmeanwd -"2WK",@stdlib/stats/strided/wasm/dnanvariancewd -"2WL",@stdlib/stats-strided-wasm-dnanvariancewd -"2N6",@stdlib/stats/strided/ztest -"2N7",@stdlib/stats-strided-ztest -"2Ra",@stdlib/stats/strided/ztest2 -"2Rb",@stdlib/stats-strided-ztest2 -"1Lq",@stdlib/stats/ttest -"1Lr",@stdlib/stats-ttest -"1Ls",@stdlib/stats/ttest2 -"1Lt",@stdlib/stats-ttest2 -"1Lu",@stdlib/stats/vartest -"1Lv",@stdlib/stats-vartest -"1Lw",@stdlib/stats/wilcoxon -"1Lx",@stdlib/stats-wilcoxon -"1Ly",@stdlib/stats/ztest -"1Lz",@stdlib/stats-ztest -"1M0",@stdlib/stats/ztest2 -"1M1",@stdlib/stats-ztest2 -"1M2",@stdlib/streams/node/debug-sink -"1M3",@stdlib/streams-node-debug-sink -"1M4",@stdlib/streams/node/debug -"1M5",@stdlib/streams-node-debug -"1M6",@stdlib/streams/node/empty -"1M7",@stdlib/streams-node-empty -"1M8",@stdlib/streams/node/from-array -"1M9",@stdlib/streams-node-from-array -"1MA",@stdlib/streams/node/from-circular-array -"1MB",@stdlib/streams-node-from-circular-array -"1MC",@stdlib/streams/node/from-constant -"1MD",@stdlib/streams-node-from-constant -"1ME",@stdlib/streams/node/from-iterator -"1MF",@stdlib/streams-node-from-iterator -"1MG",@stdlib/streams/node/from-strided-array -"1MH",@stdlib/streams-node-from-strided-array -"1MI",@stdlib/streams/node/inspect-sink -"1MJ",@stdlib/streams-node-inspect-sink -"1MK",@stdlib/streams/node/inspect -"1ML",@stdlib/streams-node-inspect -"1MM",@stdlib/streams/node/join -"1MN",@stdlib/streams-node-join -"1MO",@stdlib/streams/node -"1MP",@stdlib/streams-node -"1MQ",@stdlib/streams/node/split -"1MR",@stdlib/streams-node-split -"1MS",@stdlib/streams/node/stderr -"1MT",@stdlib/streams-node-stderr -"1MU",@stdlib/streams/node/stdin -"1MV",@stdlib/streams-node-stdin -"1MW",@stdlib/streams/node/stdout -"1MX",@stdlib/streams-node-stdout -"1MY",@stdlib/streams/node/transform -"1MZ",@stdlib/streams-node-transform -"1Mb",@stdlib/streams -"1Mc",@stdlib/strided/base/binary-addon-dispatch -"1Md",@stdlib/strided-base-binary-addon-dispatch -"1Me",@stdlib/strided/base/binary-dtype-signatures -"1Mf",@stdlib/strided-base-binary-dtype-signatures -"1Mg",@stdlib/strided/base/binary-signature-callbacks -"1Mh",@stdlib/strided-base-binary-signature-callbacks -"1Mi",@stdlib/strided/base/binary -"1Mj",@stdlib/strided-base-binary -"1Mk",@stdlib/strided/base/cmap -"1Ml",@stdlib/strided-base-cmap -"1Mm",@stdlib/strided/base/dmap -"1Mn",@stdlib/strided-base-dmap -"1Mo",@stdlib/strided/base/dmap2 -"1Mp",@stdlib/strided-base-dmap2 -"1Mq",@stdlib/strided/base/dmskmap -"1Mr",@stdlib/strided-base-dmskmap -"1Ms",@stdlib/strided/base/dmskmap2 -"1Mt",@stdlib/strided-base-dmskmap2 -"1Mu",@stdlib/strided/base/dtype-enum2str -"1Mv",@stdlib/strided-base-dtype-enum2str -"1Mw",@stdlib/strided/base/dtype-resolve-enum -"1Mx",@stdlib/strided-base-dtype-resolve-enum -"1My",@stdlib/strided/base/dtype-resolve-str -"1Mz",@stdlib/strided-base-dtype-resolve-str -"1N0",@stdlib/strided/base/dtype-str2enum -"1N1",@stdlib/strided-base-dtype-str2enum -"1N2",@stdlib/strided/base/function-object -"1N3",@stdlib/strided-base-function-object -"1N4",@stdlib/strided/base/map-by -"1N5",@stdlib/strided-base-map-by -"1N6",@stdlib/strided/base/map-by2 -"1N7",@stdlib/strided-base-map-by2 -"1N8",@stdlib/strided/base/max-view-buffer-index -"1N9",@stdlib/strided-base-max-view-buffer-index -"1NA",@stdlib/strided/base/meta-data-props -"1NB",@stdlib/strided-base-meta-data-props -"1NC",@stdlib/strided/base/min-view-buffer-index -"1ND",@stdlib/strided-base-min-view-buffer-index -"1fK",@stdlib/strided/base/mskunary-addon-dispatch -"1fL",@stdlib/strided-base-mskunary-addon-dispatch -"1fM",@stdlib/strided/base/mskunary-dtype-signatures -"1fN",@stdlib/strided-base-mskunary-dtype-signatures -"1fO",@stdlib/strided/base/mskunary-signature-callbacks -"1fP",@stdlib/strided-base-mskunary-signature-callbacks -"1NE",@stdlib/strided/base/mskunary -"1NF",@stdlib/strided-base-mskunary -"1fQ",@stdlib/strided/base/nullary-addon-dispatch -"1fR",@stdlib/strided-base-nullary-addon-dispatch -"1NG",@stdlib/strided/base/nullary -"1NH",@stdlib/strided-base-nullary -"1NI",@stdlib/strided/base/offset-view -"1NJ",@stdlib/strided-base-offset-view -"1NK",@stdlib/strided/base -"1NL",@stdlib/strided-base -"1NM",@stdlib/strided/base/quaternary -"1NN",@stdlib/strided-base-quaternary -"1NO",@stdlib/strided/base/quinary -"1NP",@stdlib/strided-base-quinary -"1w4",@stdlib/strided/base/reinterpret-boolean -"1w5",@stdlib/strided-base-reinterpret-boolean -"1s2",@stdlib/strided/base/reinterpret-complex -"1s3",@stdlib/strided-base-reinterpret-complex -"1NQ",@stdlib/strided/base/reinterpret-complex128 -"1NR",@stdlib/strided-base-reinterpret-complex128 -"1NS",@stdlib/strided/base/reinterpret-complex64 -"1NT",@stdlib/strided-base-reinterpret-complex64 -"2uk",@stdlib/strided/base/reinterpret-float16 -"2ul",@stdlib/strided-base-reinterpret-float16 -"1NU",@stdlib/strided/base/smap -"1NV",@stdlib/strided-base-smap -"1NW",@stdlib/strided/base/smap2 -"1NX",@stdlib/strided-base-smap2 -"1NY",@stdlib/strided/base/smskmap -"1NZ",@stdlib/strided-base-smskmap -"1Na",@stdlib/strided/base/smskmap2 -"1Nb",@stdlib/strided-base-smskmap2 -"1xU",@stdlib/strided/base/stride2offset -"1xV",@stdlib/strided-base-stride2offset -"1Nc",@stdlib/strided/base/ternary -"1Nd",@stdlib/strided-base-ternary -"1Ne",@stdlib/strided/base/unary-addon-dispatch -"1Nf",@stdlib/strided-base-unary-addon-dispatch -"1fS",@stdlib/strided/base/unary-by -"1fT",@stdlib/strided-base-unary-by -"1fU",@stdlib/strided/base/unary-dtype-signatures -"1fV",@stdlib/strided-base-unary-dtype-signatures -"1fW",@stdlib/strided/base/unary-signature-callbacks -"1fX",@stdlib/strided-base-unary-signature-callbacks -"1Ng",@stdlib/strided/base/unary -"1Nh",@stdlib/strided-base-unary -"21A",@stdlib/strided/base/write-dataview -"21B",@stdlib/strided-base-write-dataview -"1Ni",@stdlib/strided/base/zmap -"1Nj",@stdlib/strided-base-zmap -"1Nk",@stdlib/strided/common -"1Nl",@stdlib/strided-common -"1fY",@stdlib/strided/dispatch-by -"1fZ",@stdlib/strided-dispatch-by -"1Nm",@stdlib/strided/dispatch -"1Nn",@stdlib/strided-dispatch -"1No",@stdlib/strided/dtypes -"1Np",@stdlib/strided-dtypes -"1Nq",@stdlib/strided/napi/addon-arguments -"1Nr",@stdlib/strided-napi-addon-arguments -"1Ns",@stdlib/strided/napi/binary -"1Nt",@stdlib/strided-napi-binary -"1Nu",@stdlib/strided/napi/cmap -"1Nv",@stdlib/strided-napi-cmap -"1Nw",@stdlib/strided/napi/dmap -"1Nx",@stdlib/strided-napi-dmap -"1Ny",@stdlib/strided/napi/dmap2 -"1Nz",@stdlib/strided-napi-dmap2 -"1O0",@stdlib/strided/napi/dmskmap -"1O1",@stdlib/strided-napi-dmskmap -"1O2",@stdlib/strided/napi/dmskmap2 -"1O3",@stdlib/strided-napi-dmskmap2 -"1O4",@stdlib/strided/napi/mskunary -"1O5",@stdlib/strided-napi-mskunary -"1fa",@stdlib/strided/napi/nullary -"1fb",@stdlib/strided-napi-nullary -"1O6",@stdlib/strided/napi -"1O7",@stdlib/strided-napi -"1O8",@stdlib/strided/napi/smap -"1O9",@stdlib/strided-napi-smap -"1OA",@stdlib/strided/napi/smap2 -"1OB",@stdlib/strided-napi-smap2 -"1OC",@stdlib/strided/napi/smskmap -"1OD",@stdlib/strided-napi-smskmap -"1OE",@stdlib/strided/napi/smskmap2 -"1OF",@stdlib/strided-napi-smskmap2 -"1OG",@stdlib/strided/napi/unary -"1OH",@stdlib/strided-napi-unary -"1OI",@stdlib/strided/napi/zmap -"1OJ",@stdlib/strided-napi-zmap -"1OL",@stdlib/strided -"1OM",@stdlib/string/acronym -"1ON",@stdlib/string-acronym -"1my",@stdlib/string/base/altcase -"1mz",@stdlib/string-base-altcase -"21C",@stdlib/string/base/atob -"21D",@stdlib/string-base-atob -"21m",@stdlib/string/base/base64-to-uint8array -"21n",@stdlib/string-base-base64-to-uint8array -"1fc",@stdlib/string/base/camelcase -"1fd",@stdlib/string-base-camelcase -"1fe",@stdlib/string/base/capitalize -"1ff",@stdlib/string-base-capitalize -"1fg",@stdlib/string/base/code-point-at -"1fh",@stdlib/string-base-code-point-at -"2Ys",@stdlib/string/base/concat -"2Yt",@stdlib/string-base-concat -"1fi",@stdlib/string/base/constantcase -"1fj",@stdlib/string-base-constantcase -"1n0",@stdlib/string/base/distances/hamming -"1n1",@stdlib/string-base-distances-hamming -"1fk",@stdlib/string/base/distances/levenshtein -"1fl",@stdlib/string-base-distances-levenshtein -"1fm",@stdlib/string/base/distances -"1fn",@stdlib/string-base-distances -"1fo",@stdlib/string/base/dotcase -"1fp",@stdlib/string-base-dotcase -"1fq",@stdlib/string/base/ends-with -"1fr",@stdlib/string-base-ends-with -"1fs",@stdlib/string/base/first-code-point -"1ft",@stdlib/string-base-first-code-point -"1fu",@stdlib/string/base/first-grapheme-cluster -"1fv",@stdlib/string-base-first-grapheme-cluster -"1fw",@stdlib/string/base/first -"1fx",@stdlib/string-base-first -"1vS",@stdlib/string/base/for-each-code-point-right -"1vT",@stdlib/string-base-for-each-code-point-right -"1fy",@stdlib/string/base/for-each-code-point -"1fz",@stdlib/string-base-for-each-code-point -"1g0",@stdlib/string/base/for-each-grapheme-cluster -"1g1",@stdlib/string-base-for-each-grapheme-cluster -"1sm",@stdlib/string/base/for-each-right -"1sn",@stdlib/string-base-for-each-right -"1g2",@stdlib/string/base/for-each -"1g3",@stdlib/string-base-for-each -"1OO",@stdlib/string/base/format-interpolate -"1OP",@stdlib/string-base-format-interpolate -"1OQ",@stdlib/string/base/format-tokenize -"1OR",@stdlib/string-base-format-tokenize -"1g4",@stdlib/string/base/headercase -"1g5",@stdlib/string-base-headercase -"1g6",@stdlib/string/base/invcase -"1g7",@stdlib/string-base-invcase -"1g8",@stdlib/string/base/kebabcase -"1g9",@stdlib/string-base-kebabcase -"1u0",@stdlib/string/base/last-code-point -"1u1",@stdlib/string-base-last-code-point -"1u2",@stdlib/string/base/last-grapheme-cluster -"1u3",@stdlib/string-base-last-grapheme-cluster -"1u4",@stdlib/string/base/last -"1u5",@stdlib/string-base-last -"1gA",@stdlib/string/base/left-pad -"1gB",@stdlib/string-base-left-pad -"1gC",@stdlib/string/base/left-trim -"1gD",@stdlib/string-base-left-trim -"1gE",@stdlib/string/base/lowercase -"1gF",@stdlib/string-base-lowercase -"1OS",@stdlib/string/base -"1OT",@stdlib/string-base -"1gG",@stdlib/string/base/pascalcase -"1gH",@stdlib/string-base-pascalcase -"1gI",@stdlib/string/base/percent-encode -"1gJ",@stdlib/string-base-percent-encode -"1gK",@stdlib/string/base/remove-first-code-point -"1gL",@stdlib/string-base-remove-first-code-point -"1gM",@stdlib/string/base/remove-first-grapheme-cluster -"1gN",@stdlib/string-base-remove-first-grapheme-cluster -"1gO",@stdlib/string/base/remove-first -"1gP",@stdlib/string-base-remove-first -"1jI",@stdlib/string/base/remove-last-code-point -"1jJ",@stdlib/string-base-remove-last-code-point -"1jK",@stdlib/string/base/remove-last-grapheme-cluster -"1jL",@stdlib/string-base-remove-last-grapheme-cluster -"1jM",@stdlib/string/base/remove-last -"1jN",@stdlib/string-base-remove-last -"1gQ",@stdlib/string/base/repeat -"1gR",@stdlib/string-base-repeat -"1so",@stdlib/string/base/replace-after-last -"1sp",@stdlib/string-base-replace-after-last -"1sq",@stdlib/string/base/replace-after -"1sr",@stdlib/string-base-replace-after -"1ss",@stdlib/string/base/replace-before-last -"1st",@stdlib/string-base-replace-before-last -"1gS",@stdlib/string/base/replace-before -"1gT",@stdlib/string-base-replace-before -"1gU",@stdlib/string/base/replace -"1gV",@stdlib/string-base-replace -"1lW",@stdlib/string/base/reverse-code-points -"1lX",@stdlib/string-base-reverse-code-points -"1lY",@stdlib/string/base/reverse-grapheme-clusters -"1lZ",@stdlib/string-base-reverse-grapheme-clusters -"1la",@stdlib/string/base/reverse -"1lb",@stdlib/string-base-reverse -"1gW",@stdlib/string/base/right-pad -"1gX",@stdlib/string-base-right-pad -"1gY",@stdlib/string/base/right-trim -"1gZ",@stdlib/string-base-right-trim -"2ES",@stdlib/string/base/slice-code-points -"2ET",@stdlib/string-base-slice-code-points -"2DS",@stdlib/string/base/slice-grapheme-clusters -"2DT",@stdlib/string-base-slice-grapheme-clusters -"2DU",@stdlib/string/base/slice -"2DV",@stdlib/string-base-slice -"1ga",@stdlib/string/base/snakecase -"1gb",@stdlib/string-base-snakecase -"1gc",@stdlib/string/base/startcase -"1gd",@stdlib/string-base-startcase -"1ge",@stdlib/string/base/starts-with -"1gf",@stdlib/string-base-starts-with -"1u6",@stdlib/string/base/stickycase -"1u7",@stdlib/string-base-stickycase -"1gg",@stdlib/string/base/trim -"1gh",@stdlib/string-base-trim -"1lc",@stdlib/string/base/truncate-middle -"1ld",@stdlib/string-base-truncate-middle -"1gi",@stdlib/string/base/uncapitalize -"1gj",@stdlib/string-base-uncapitalize -"1gk",@stdlib/string/base/uppercase -"1gl",@stdlib/string-base-uppercase -"1OU",@stdlib/string/camelcase -"1OV",@stdlib/string-camelcase -"1OW",@stdlib/string/capitalize -"1OX",@stdlib/string-capitalize -"1OY",@stdlib/string/code-point-at -"1OZ",@stdlib/string-code-point-at -"1Oa",@stdlib/string/constantcase -"1Ob",@stdlib/string-constantcase -"1gm",@stdlib/string/dotcase -"1gn",@stdlib/string-dotcase -"1Oc",@stdlib/string/ends-with -"1Od",@stdlib/string-ends-with -"1go",@stdlib/string/first -"1gp",@stdlib/string-first -"1gq",@stdlib/string/for-each -"1gr",@stdlib/string-for-each -"1Oe",@stdlib/string/format -"1Of",@stdlib/string-format -"1Og",@stdlib/string/from-code-point -"1Oh",@stdlib/string-from-code-point -"1gs",@stdlib/string/headercase -"1gt",@stdlib/string-headercase -"1Oi",@stdlib/string/kebabcase -"1Oj",@stdlib/string-kebabcase -"1vU",@stdlib/string/last -"1vV",@stdlib/string-last -"1Ok",@stdlib/string/left-pad -"1Ol",@stdlib/string-left-pad -"1Om",@stdlib/string/left-trim-n -"1On",@stdlib/string-left-trim-n -"1Oo",@stdlib/string/left-trim -"1Op",@stdlib/string-left-trim -"1Oq",@stdlib/string/lowercase -"1Or",@stdlib/string-lowercase -"1le",@stdlib/string/next-code-point-index -"1lf",@stdlib/string-next-code-point-index -"1Os",@stdlib/string/next-grapheme-cluster-break -"1Ot",@stdlib/string-next-grapheme-cluster-break -"2DW",@stdlib/string/num-code-points -"2DX",@stdlib/string-num-code-points -"1Ou",@stdlib/string/num-grapheme-clusters -"1Ov",@stdlib/string-num-grapheme-clusters -"1gu",@stdlib/string/num2words -"1gv",@stdlib/string-num2words -"1Ox",@stdlib/string -"1Oy",@stdlib/string/pad -"1Oz",@stdlib/string-pad -"1P0",@stdlib/string/pascalcase -"1P1",@stdlib/string-pascalcase -"1P2",@stdlib/string/percent-encode -"1P3",@stdlib/string-percent-encode -"1P4",@stdlib/string/prev-grapheme-cluster-break -"1P5",@stdlib/string-prev-grapheme-cluster-break -"1P6",@stdlib/string/remove-first -"1P7",@stdlib/string-remove-first -"1P8",@stdlib/string/remove-last -"1P9",@stdlib/string-remove-last -"1PA",@stdlib/string/remove-punctuation -"1PB",@stdlib/string-remove-punctuation -"1PC",@stdlib/string/remove-utf8-bom -"1PD",@stdlib/string-remove-utf8-bom -"1PE",@stdlib/string/remove-words -"1PF",@stdlib/string-remove-words -"1PG",@stdlib/string/repeat -"1PH",@stdlib/string-repeat -"1gw",@stdlib/string/replace-before -"1gx",@stdlib/string-replace-before -"1PI",@stdlib/string/replace -"1PJ",@stdlib/string-replace -"1PK",@stdlib/string/reverse -"1PL",@stdlib/string-reverse -"1PM",@stdlib/string/right-pad -"1PN",@stdlib/string-right-pad -"1PO",@stdlib/string/right-trim-n -"1PP",@stdlib/string-right-trim-n -"1PQ",@stdlib/string/right-trim -"1PR",@stdlib/string-right-trim -"1PS",@stdlib/string/snakecase -"1PT",@stdlib/string-snakecase -"1PU",@stdlib/string/split-grapheme-clusters -"1PV",@stdlib/string-split-grapheme-clusters -"1PW",@stdlib/string/startcase -"1PX",@stdlib/string-startcase -"1PY",@stdlib/string/starts-with -"1PZ",@stdlib/string-starts-with -"1Pa",@stdlib/string/substring-after-last -"1Pb",@stdlib/string-substring-after-last -"1Pc",@stdlib/string/substring-after -"1Pd",@stdlib/string-substring-after -"1Pe",@stdlib/string/substring-before-last -"1Pf",@stdlib/string-substring-before-last -"1Pg",@stdlib/string/substring-before -"1Ph",@stdlib/string-substring-before -"1gy",@stdlib/string/to-grapheme-cluster-iterator-right -"1gz",@stdlib/string-to-grapheme-cluster-iterator-right -"1h0",@stdlib/string/to-grapheme-cluster-iterator -"1h1",@stdlib/string-to-grapheme-cluster-iterator -"1u8",@stdlib/string/to-well-formed -"1u9",@stdlib/string-to-well-formed -"1Pi",@stdlib/string/tools/grapheme-cluster-break -"1Pj",@stdlib/string-tools-grapheme-cluster-break -"1Pk",@stdlib/string/tools -"1Pl",@stdlib/string-tools -"1Pm",@stdlib/string/trim -"1Pn",@stdlib/string-trim -"1Po",@stdlib/string/truncate-middle -"1Pp",@stdlib/string-truncate-middle -"1Pq",@stdlib/string/truncate -"1Pr",@stdlib/string-truncate -"1Ps",@stdlib/string/uncapitalize -"1Pt",@stdlib/string-uncapitalize -"1Pu",@stdlib/string/uppercase -"1Pv",@stdlib/string-uppercase -"1Pw",@stdlib/string/utf16-to-utf8-array -"1Px",@stdlib/string-utf16-to-utf8-array -"1Py",@stdlib/symbol/async-iterator -"1Pz",@stdlib/symbol-async-iterator -"1Q0",@stdlib/symbol/ctor -"1Q1",@stdlib/symbol-ctor -"2YM",@stdlib/symbol/has-instance -"2YN",@stdlib/symbol-has-instance -"2XW",@stdlib/symbol/is-concat-spreadable -"2XX",@stdlib/symbol-is-concat-spreadable -"1Q2",@stdlib/symbol/iterator -"1Q3",@stdlib/symbol-iterator -"1Q5",@stdlib/symbol -"2Yu",@stdlib/symbol/replace -"2Yv",@stdlib/symbol-replace -"2YO",@stdlib/symbol/to-primitive -"2YP",@stdlib/symbol-to-primitive -"1h2",@stdlib/time/base -"1h3",@stdlib/time-base -"1h4",@stdlib/time/base/parse-duration -"1h5",@stdlib/time-base-parse-duration -"1h6",@stdlib/time/current-year -"1h7",@stdlib/time-current-year -"1Q6",@stdlib/time/day-of-quarter -"1Q7",@stdlib/time-day-of-quarter -"1Q8",@stdlib/time/day-of-year -"1Q9",@stdlib/time-day-of-year -"1QA",@stdlib/time/days-in-month -"1QB",@stdlib/time-days-in-month -"1QC",@stdlib/time/days-in-year -"1QD",@stdlib/time-days-in-year -"1h8",@stdlib/time/duration2ms -"1h9",@stdlib/time-duration2ms -"1QE",@stdlib/time/hours-in-month -"1QF",@stdlib/time-hours-in-month -"1QG",@stdlib/time/hours-in-year -"1QH",@stdlib/time-hours-in-year -"1QI",@stdlib/time/iso-weeks-in-year -"1QJ",@stdlib/time-iso-weeks-in-year -"1QK",@stdlib/time/minutes-in-month -"1QL",@stdlib/time-minutes-in-month -"1QM",@stdlib/time/minutes-in-year -"1QN",@stdlib/time-minutes-in-year -"1hA",@stdlib/time/ms2duration -"1hB",@stdlib/time-ms2duration -"1QO",@stdlib/time/now -"1QP",@stdlib/time-now -"1QR",@stdlib/time -"1QS",@stdlib/time/quarter-of-year -"1QT",@stdlib/time-quarter-of-year -"1QU",@stdlib/time/seconds-in-month -"1QV",@stdlib/time-seconds-in-month -"1QW",@stdlib/time/seconds-in-year -"1QX",@stdlib/time-seconds-in-year -"1QY",@stdlib/time/tic -"1QZ",@stdlib/time-tic -"1Qa",@stdlib/time/toc -"1Qb",@stdlib/time-toc -"1Qd",@stdlib/types -"1Qe",@stdlib/utils/any-by-right -"1Qf",@stdlib/utils-any-by-right -"1Qg",@stdlib/utils/any-by -"1Qh",@stdlib/utils-any-by -"1Qi",@stdlib/utils/any -"1Qj",@stdlib/utils-any -"1Qk",@stdlib/utils/append -"1Ql",@stdlib/utils-append -"1Qm",@stdlib/utils/argument-function -"1Qn",@stdlib/utils-argument-function -"1Qo",@stdlib/utils/async/any-by-right -"1Qp",@stdlib/utils-async-any-by-right -"1Qq",@stdlib/utils/async/any-by -"1Qr",@stdlib/utils-async-any-by -"1Qs",@stdlib/utils/async/bifurcate-by -"1Qt",@stdlib/utils-async-bifurcate-by -"1Qu",@stdlib/utils/async/compose -"1Qv",@stdlib/utils-async-compose -"1Qw",@stdlib/utils/async/count-by -"1Qx",@stdlib/utils-async-count-by -"1Qy",@stdlib/utils/async/do-until -"1Qz",@stdlib/utils-async-do-until -"1R0",@stdlib/utils/async/do-while -"1R1",@stdlib/utils-async-do-while -"1R2",@stdlib/utils/async/every-by-right -"1R3",@stdlib/utils-async-every-by-right -"1R4",@stdlib/utils/async/every-by -"1R5",@stdlib/utils-async-every-by -"1R6",@stdlib/utils/async/for-each-right -"1R7",@stdlib/utils-async-for-each-right -"1R8",@stdlib/utils/async/for-each -"1R9",@stdlib/utils-async-for-each -"1RA",@stdlib/utils/async/function-sequence -"1RB",@stdlib/utils-async-function-sequence -"1RC",@stdlib/utils/async/group-by -"1RD",@stdlib/utils-async-group-by -"1RE",@stdlib/utils/async/if-else -"1RF",@stdlib/utils-async-if-else -"1RG",@stdlib/utils/async/if-then -"1RH",@stdlib/utils-async-if-then -"1RI",@stdlib/utils/async/inmap-right -"1RJ",@stdlib/utils-async-inmap-right -"1RK",@stdlib/utils/async/inmap -"1RL",@stdlib/utils-async-inmap -"1RM",@stdlib/utils/async/map-function -"1RN",@stdlib/utils-async-map-function -"1RO",@stdlib/utils/async/map-keys -"1RP",@stdlib/utils-async-map-keys -"1RQ",@stdlib/utils/async/map-values -"1RR",@stdlib/utils-async-map-values -"1RS",@stdlib/utils/async/none-by-right -"1RT",@stdlib/utils-async-none-by-right -"1RU",@stdlib/utils/async/none-by -"1RV",@stdlib/utils-async-none-by -"1RW",@stdlib/utils/async -"1RX",@stdlib/utils-async -"1xW",@stdlib/utils/async/parallel -"1xX",@stdlib/utils-async-parallel -"1RY",@stdlib/utils/async/reduce-right -"1RZ",@stdlib/utils-async-reduce-right -"1Ra",@stdlib/utils/async/reduce -"1Rb",@stdlib/utils-async-reduce -"1Rc",@stdlib/utils/async/series-waterfall -"1Rd",@stdlib/utils-async-series-waterfall -"1Re",@stdlib/utils/async/some-by-right -"1Rf",@stdlib/utils-async-some-by-right -"1Rg",@stdlib/utils/async/some-by -"1Rh",@stdlib/utils-async-some-by -"1Ri",@stdlib/utils/async/tabulate-by -"1Rj",@stdlib/utils-async-tabulate-by -"1Rk",@stdlib/utils/async/try-catch -"1Rl",@stdlib/utils-async-try-catch -"1Rm",@stdlib/utils/async/try-then -"1Rn",@stdlib/utils-async-try-then -"1Ro",@stdlib/utils/async/until -"1Rp",@stdlib/utils-async-until -"1Rq",@stdlib/utils/async/while -"1Rr",@stdlib/utils-async-while -"1Rs",@stdlib/utils/bifurcate-by -"1Rt",@stdlib/utils-bifurcate-by -"1Ry",@stdlib/utils/bifurcate -"1Rz",@stdlib/utils-bifurcate -"1SA",@stdlib/utils/compose -"1SB",@stdlib/utils-compose -"1SC",@stdlib/utils/constant-function -"1SD",@stdlib/utils-constant-function -"1SE",@stdlib/utils/constructor-name -"1SF",@stdlib/utils-constructor-name -"1SG",@stdlib/utils/convert-path -"1SH",@stdlib/utils-convert-path -"1SI",@stdlib/utils/copy -"1SJ",@stdlib/utils-copy -"1SK",@stdlib/utils/count-by -"1SL",@stdlib/utils-count-by -"1SM",@stdlib/utils/curry-right -"1SN",@stdlib/utils-curry-right -"1SO",@stdlib/utils/curry -"1SP",@stdlib/utils-curry -"1hC",@stdlib/utils/decorate-after -"1hD",@stdlib/utils-decorate-after -"1SS",@stdlib/utils/deep-pluck -"1ST",@stdlib/utils-deep-pluck -"1SW",@stdlib/utils/define-configurable-read-only-accessor -"1SX",@stdlib/utils-define-configurable-read-only-accessor -"1SY",@stdlib/utils/define-configurable-read-only-property -"1SZ",@stdlib/utils-define-configurable-read-only-property -"1Sa",@stdlib/utils/define-configurable-read-write-accessor -"1Sb",@stdlib/utils-define-configurable-read-write-accessor -"1Sc",@stdlib/utils/define-configurable-write-only-accessor -"1Sd",@stdlib/utils-define-configurable-write-only-accessor -"1Se",@stdlib/utils/define-memoized-configurable-read-only-property -"1Sf",@stdlib/utils-define-memoized-configurable-read-only-property -"1Sg",@stdlib/utils/define-memoized-property -"1Sh",@stdlib/utils-define-memoized-property -"1Si",@stdlib/utils/define-memoized-read-only-property -"1Sj",@stdlib/utils-define-memoized-read-only-property -"1Sk",@stdlib/utils/define-nonenumerable-property -"1Sl",@stdlib/utils-define-nonenumerable-property -"1Sm",@stdlib/utils/define-nonenumerable-read-only-accessor -"1Sn",@stdlib/utils-define-nonenumerable-read-only-accessor -"1So",@stdlib/utils/define-nonenumerable-read-only-property -"1Sp",@stdlib/utils-define-nonenumerable-read-only-property -"1Sq",@stdlib/utils/define-nonenumerable-read-write-accessor -"1Sr",@stdlib/utils-define-nonenumerable-read-write-accessor -"1Ss",@stdlib/utils/define-nonenumerable-write-only-accessor -"1St",@stdlib/utils-define-nonenumerable-write-only-accessor -"1Su",@stdlib/utils/define-properties -"1Sv",@stdlib/utils-define-properties -"1Sw",@stdlib/utils/define-property -"1Sx",@stdlib/utils-define-property -"1Sy",@stdlib/utils/define-read-only-accessor -"1Sz",@stdlib/utils-define-read-only-accessor -"1T0",@stdlib/utils/define-read-only-property -"1T1",@stdlib/utils-define-read-only-property -"1T2",@stdlib/utils/define-read-write-accessor -"1T3",@stdlib/utils-define-read-write-accessor -"1T4",@stdlib/utils/define-write-only-accessor -"1T5",@stdlib/utils-define-write-only-accessor -"1T6",@stdlib/utils/dirname -"1T7",@stdlib/utils-dirname -"1T8",@stdlib/utils/do-until-each-right -"1T9",@stdlib/utils-do-until-each-right -"1TA",@stdlib/utils/do-until-each -"1TB",@stdlib/utils-do-until-each -"1TC",@stdlib/utils/do-until -"1TD",@stdlib/utils-do-until -"1TE",@stdlib/utils/do-while-each-right -"1TF",@stdlib/utils-do-while-each-right -"1TG",@stdlib/utils/do-while-each -"1TH",@stdlib/utils-do-while-each -"1TI",@stdlib/utils/do-while -"1TJ",@stdlib/utils-do-while -"1hE",@stdlib/utils/dsv/base -"1hF",@stdlib/utils-dsv-base -"1hG",@stdlib/utils/dsv/base/parse -"1hH",@stdlib/utils-dsv-base-parse -"1hI",@stdlib/utils/dsv -"1hJ",@stdlib/utils-dsv -"1TM",@stdlib/utils/entries-in -"1TN",@stdlib/utils-entries-in -"1TO",@stdlib/utils/entries -"1TP",@stdlib/utils-entries -"1TQ",@stdlib/utils/enumerable-properties-in -"1TR",@stdlib/utils-enumerable-properties-in -"1TS",@stdlib/utils/enumerable-properties -"1TT",@stdlib/utils-enumerable-properties -"1TU",@stdlib/utils/enumerable-property-symbols-in -"1TV",@stdlib/utils-enumerable-property-symbols-in -"1TW",@stdlib/utils/enumerable-property-symbols -"1TX",@stdlib/utils-enumerable-property-symbols -"1TY",@stdlib/utils/escape-regexp-string -"1TZ",@stdlib/utils-escape-regexp-string -"1Ta",@stdlib/utils/eval -"1Tb",@stdlib/utils-eval -"1Tc",@stdlib/utils/every-by-right -"1Td",@stdlib/utils-every-by-right -"1Te",@stdlib/utils/every-by -"1Tf",@stdlib/utils-every-by -"1Tg",@stdlib/utils/every -"1Th",@stdlib/utils-every -"1Ti",@stdlib/utils/extname -"1Tj",@stdlib/utils-extname -"1Tm",@stdlib/utils/filter-arguments -"1Tn",@stdlib/utils-filter-arguments -"1To",@stdlib/utils/find -"1Tp",@stdlib/utils-find -"1Tq",@stdlib/utils/flatten-array -"1Tr",@stdlib/utils-flatten-array -"1Ts",@stdlib/utils/flatten-object -"1Tt",@stdlib/utils-flatten-object -"1Tu",@stdlib/utils/for-each-right -"1Tv",@stdlib/utils-for-each-right -"1Tw",@stdlib/utils/for-each -"1Tx",@stdlib/utils-for-each -"1U2",@stdlib/utils/from-entries -"1U3",@stdlib/utils-from-entries -"1U4",@stdlib/utils/function-name -"1U5",@stdlib/utils-function-name -"1U6",@stdlib/utils/function-sequence -"1U7",@stdlib/utils-function-sequence -"1U8",@stdlib/utils/get-prototype-of -"1U9",@stdlib/utils-get-prototype-of -"1UA",@stdlib/utils/global -"1UB",@stdlib/utils-global -"1UC",@stdlib/utils/group-by -"1UD",@stdlib/utils-group-by -"1UE",@stdlib/utils/group-in -"1UF",@stdlib/utils-group-in -"1UG",@stdlib/utils/group-own -"1UH",@stdlib/utils-group-own -"1UI",@stdlib/utils/group -"1UJ",@stdlib/utils-group -"1UK",@stdlib/utils/identity-function -"1UL",@stdlib/utils-identity-function -"1UM",@stdlib/utils/if-else -"1UN",@stdlib/utils-if-else -"1UO",@stdlib/utils/if-then -"1UP",@stdlib/utils-if-then -"1UQ",@stdlib/utils/index-of -"1UR",@stdlib/utils-index-of -"1US",@stdlib/utils/inherit -"1UT",@stdlib/utils-inherit -"1UU",@stdlib/utils/inherited-enumerable-properties -"1UV",@stdlib/utils-inherited-enumerable-properties -"1UW",@stdlib/utils/inherited-enumerable-property-symbols -"1UX",@stdlib/utils-inherited-enumerable-property-symbols -"1UY",@stdlib/utils/inherited-keys -"1UZ",@stdlib/utils-inherited-keys -"1Ua",@stdlib/utils/inherited-nonenumerable-properties -"1Ub",@stdlib/utils-inherited-nonenumerable-properties -"1Uc",@stdlib/utils/inherited-nonenumerable-property-names -"1Ud",@stdlib/utils-inherited-nonenumerable-property-names -"1Ue",@stdlib/utils/inherited-nonenumerable-property-symbols -"1Uf",@stdlib/utils-inherited-nonenumerable-property-symbols -"1Ug",@stdlib/utils/inherited-properties -"1Uh",@stdlib/utils-inherited-properties -"1Ui",@stdlib/utils/inherited-property-descriptor -"1Uj",@stdlib/utils-inherited-property-descriptor -"1Uk",@stdlib/utils/inherited-property-descriptors -"1Ul",@stdlib/utils-inherited-property-descriptors -"1Um",@stdlib/utils/inherited-property-names -"1Un",@stdlib/utils-inherited-property-names -"1Uo",@stdlib/utils/inherited-property-symbols -"1Up",@stdlib/utils-inherited-property-symbols -"1Uq",@stdlib/utils/inherited-writable-properties -"1Ur",@stdlib/utils-inherited-writable-properties -"1Us",@stdlib/utils/inherited-writable-property-names -"1Ut",@stdlib/utils-inherited-writable-property-names -"1Uu",@stdlib/utils/inherited-writable-property-symbols -"1Uv",@stdlib/utils-inherited-writable-property-symbols -"1Uw",@stdlib/utils/inmap-right -"1Ux",@stdlib/utils-inmap-right -"1Uy",@stdlib/utils/inmap -"1Uz",@stdlib/utils-inmap -"1V0",@stdlib/utils/key-by-right -"1V1",@stdlib/utils-key-by-right -"1V2",@stdlib/utils/key-by -"1V3",@stdlib/utils-key-by -"1V4",@stdlib/utils/keys-in -"1V5",@stdlib/utils-keys-in -"1V6",@stdlib/utils/keys -"1V7",@stdlib/utils-keys -"1V8",@stdlib/utils/library-manifest -"1V9",@stdlib/utils-library-manifest -"1VE",@stdlib/utils/map-arguments -"1VF",@stdlib/utils-map-arguments -"1VG",@stdlib/utils/map-function -"1VH",@stdlib/utils-map-function -"1VI",@stdlib/utils/map-keys -"1VJ",@stdlib/utils-map-keys -"1VK",@stdlib/utils/map-reduce-right -"1VL",@stdlib/utils-map-reduce-right -"1VM",@stdlib/utils/map-reduce -"1VN",@stdlib/utils-map-reduce -"1VO",@stdlib/utils/map-right -"1VP",@stdlib/utils-map-right -"1VQ",@stdlib/utils/map-values -"1VR",@stdlib/utils-map-values -"1VS",@stdlib/utils/map -"1VT",@stdlib/utils-map -"1VU",@stdlib/utils/map2-right -"1VV",@stdlib/utils-map2-right -"1VW",@stdlib/utils/map2 -"1VX",@stdlib/utils-map2 -"1VY",@stdlib/utils/map2d -"1VZ",@stdlib/utils-map2d -"1Va",@stdlib/utils/map3d -"1Vb",@stdlib/utils-map3d -"1Vc",@stdlib/utils/map4d -"1Vd",@stdlib/utils-map4d -"1Ve",@stdlib/utils/map5d -"1Vf",@stdlib/utils-map5d -"1Vg",@stdlib/utils/mask-arguments -"1Vh",@stdlib/utils-mask-arguments -"1Vi",@stdlib/utils/memoize -"1Vj",@stdlib/utils-memoize -"1Vk",@stdlib/utils/merge -"1Vl",@stdlib/utils-merge -"1Vq",@stdlib/utils/nary-function -"1Vr",@stdlib/utils-nary-function -"1Vs",@stdlib/utils/native-class -"1Vt",@stdlib/utils-native-class -"1Vu",@stdlib/utils/next-tick -"1Vv",@stdlib/utils-next-tick -"1Vw",@stdlib/utils/none-by-right -"1Vx",@stdlib/utils-none-by-right -"1Vy",@stdlib/utils/none-by -"1Vz",@stdlib/utils-none-by -"1W0",@stdlib/utils/none -"1W1",@stdlib/utils-none -"1W2",@stdlib/utils/nonenumerable-properties-in -"1W3",@stdlib/utils-nonenumerable-properties-in -"1W4",@stdlib/utils/nonenumerable-properties -"1W5",@stdlib/utils-nonenumerable-properties -"1W6",@stdlib/utils/nonenumerable-property-names-in -"1W7",@stdlib/utils-nonenumerable-property-names-in -"1W8",@stdlib/utils/nonenumerable-property-names -"1W9",@stdlib/utils-nonenumerable-property-names -"1WA",@stdlib/utils/nonenumerable-property-symbols-in -"1WB",@stdlib/utils-nonenumerable-property-symbols-in -"1WC",@stdlib/utils/nonenumerable-property-symbols -"1WD",@stdlib/utils-nonenumerable-property-symbols -"1WE",@stdlib/utils/nonindex-keys -"1WF",@stdlib/utils-nonindex-keys -"1WG",@stdlib/utils/noop -"1WH",@stdlib/utils-noop -"1WM",@stdlib/utils/omit-by -"1WN",@stdlib/utils-omit-by -"1WO",@stdlib/utils/omit -"1WP",@stdlib/utils-omit -"1WQ",@stdlib/utils/open-url -"1WR",@stdlib/utils-open-url -"1WT",@stdlib/utils -"1WU",@stdlib/utils/papply-right -"1WV",@stdlib/utils-papply-right -"1WW",@stdlib/utils/papply -"1WX",@stdlib/utils-papply -"1WY",@stdlib/utils/parallel -"1WZ",@stdlib/utils-parallel -"1Wa",@stdlib/utils/parse-json -"1Wb",@stdlib/utils-parse-json -"1uI",@stdlib/utils/parse-ndjson -"1uJ",@stdlib/utils-parse-ndjson -"1Wc",@stdlib/utils/pick-arguments -"1Wd",@stdlib/utils-pick-arguments -"1We",@stdlib/utils/pick-by -"1Wf",@stdlib/utils-pick-by -"1Wg",@stdlib/utils/pick -"1Wh",@stdlib/utils-pick -"1Wi",@stdlib/utils/pluck -"1Wj",@stdlib/utils-pluck -"1Wk",@stdlib/utils/pop -"1Wl",@stdlib/utils-pop -"1Wm",@stdlib/utils/prepend -"1Wn",@stdlib/utils-prepend -"1Wo",@stdlib/utils/properties-in -"1Wp",@stdlib/utils-properties-in -"1Wq",@stdlib/utils/properties -"1Wr",@stdlib/utils-properties -"1Ws",@stdlib/utils/property-descriptor-in -"1Wt",@stdlib/utils-property-descriptor-in -"1Wu",@stdlib/utils/property-descriptor -"1Wv",@stdlib/utils-property-descriptor -"1Ww",@stdlib/utils/property-descriptors-in -"1Wx",@stdlib/utils-property-descriptors-in -"1Wy",@stdlib/utils/property-descriptors -"1Wz",@stdlib/utils-property-descriptors -"1X0",@stdlib/utils/property-names-in -"1X1",@stdlib/utils-property-names-in -"1X2",@stdlib/utils/property-names -"1X3",@stdlib/utils-property-names -"1X4",@stdlib/utils/property-symbols-in -"1X5",@stdlib/utils-property-symbols-in -"1X6",@stdlib/utils/property-symbols -"1X7",@stdlib/utils-property-symbols -"1X8",@stdlib/utils/push -"1X9",@stdlib/utils-push -"1XA",@stdlib/utils/real-max -"1XB",@stdlib/utils-real-max -"1XC",@stdlib/utils/real-min -"1XD",@stdlib/utils-real-min -"1XE",@stdlib/utils/reduce-right -"1XF",@stdlib/utils-reduce-right -"1XG",@stdlib/utils/reduce -"1XH",@stdlib/utils-reduce -"1XI",@stdlib/utils/reduce2d -"1XJ",@stdlib/utils-reduce2d -"1XK",@stdlib/utils/regexp-from-string -"1XL",@stdlib/utils-regexp-from-string -"1XM",@stdlib/utils/reject-arguments -"1XN",@stdlib/utils-reject-arguments -"1XO",@stdlib/utils/reorder-arguments -"1XP",@stdlib/utils-reorder-arguments -"1XQ",@stdlib/utils/reverse-arguments -"1XR",@stdlib/utils-reverse-arguments -"1XS",@stdlib/utils/safe-int-max -"1XT",@stdlib/utils-safe-int-max -"1XU",@stdlib/utils/safe-int-min -"1XV",@stdlib/utils-safe-int-min -"1XW",@stdlib/utils/shift -"1XX",@stdlib/utils-shift -"1XY",@stdlib/utils/size-of -"1XZ",@stdlib/utils-size-of -"1Xa",@stdlib/utils/some-by-right -"1Xb",@stdlib/utils-some-by-right -"1Xc",@stdlib/utils/some-by -"1Xd",@stdlib/utils-some-by -"1Xe",@stdlib/utils/some -"1Xf",@stdlib/utils-some -"1Xi",@stdlib/utils/tabulate-by -"1Xj",@stdlib/utils-tabulate-by -"1Xk",@stdlib/utils/tabulate -"1Xl",@stdlib/utils-tabulate -"1Xm",@stdlib/utils/timeit -"1Xn",@stdlib/utils-timeit -"1Xo",@stdlib/utils/try-catch -"1Xp",@stdlib/utils-try-catch -"1Xq",@stdlib/utils/try-function -"1Xr",@stdlib/utils-try-function -"1Xs",@stdlib/utils/try-require -"1Xt",@stdlib/utils-try-require -"1Xu",@stdlib/utils/try-then -"1Xv",@stdlib/utils-try-then -"1Xw",@stdlib/utils/type-max -"1Xx",@stdlib/utils-type-max -"1Xy",@stdlib/utils/type-min -"1Xz",@stdlib/utils-type-min -"1Y0",@stdlib/utils/type-of -"1Y1",@stdlib/utils-type-of -"1Y4",@stdlib/utils/uncurry-right -"1Y5",@stdlib/utils-uncurry-right -"1Y6",@stdlib/utils/uncurry -"1Y7",@stdlib/utils-uncurry -"1Y8",@stdlib/utils/unshift -"1Y9",@stdlib/utils-unshift -"1YA",@stdlib/utils/until-each-right -"1YB",@stdlib/utils-until-each-right -"1YC",@stdlib/utils/until-each -"1YD",@stdlib/utils-until-each -"1YE",@stdlib/utils/until -"1YF",@stdlib/utils-until -"1YG",@stdlib/utils/unzip -"1YH",@stdlib/utils-unzip -"1YK",@stdlib/utils/values-in -"1YL",@stdlib/utils-values-in -"1YM",@stdlib/utils/values -"1YN",@stdlib/utils-values -"1YO",@stdlib/utils/while-each-right -"1YP",@stdlib/utils-while-each-right -"1YQ",@stdlib/utils/while-each -"1YR",@stdlib/utils-while-each -"1YS",@stdlib/utils/while -"1YT",@stdlib/utils-while -"1YU",@stdlib/utils/writable-properties-in -"1YV",@stdlib/utils-writable-properties-in -"1YW",@stdlib/utils/writable-properties -"1YX",@stdlib/utils-writable-properties -"1YY",@stdlib/utils/writable-property-names-in -"1YZ",@stdlib/utils-writable-property-names-in -"1Ya",@stdlib/utils/writable-property-names -"1Yb",@stdlib/utils-writable-property-names -"1Yc",@stdlib/utils/writable-property-symbols-in -"1Yd",@stdlib/utils-writable-property-symbols-in -"1Ye",@stdlib/utils/writable-property-symbols -"1Yf",@stdlib/utils-writable-property-symbols -"1Yg",@stdlib/utils/zip -"1Yh",@stdlib/utils-zip -"21E",@stdlib/wasm/base/array2dtype -"21F",@stdlib/wasm-base-array2dtype -"21G",@stdlib/wasm/base/arrays2ptrs -"21H",@stdlib/wasm-base-arrays2ptrs -"21I",@stdlib/wasm/base/dtype2wasm -"21J",@stdlib/wasm-base-dtype2wasm -"21K",@stdlib/wasm/base -"21L",@stdlib/wasm-base -"21M",@stdlib/wasm/base/strided2object -"21N",@stdlib/wasm-base-strided2object -"21O",@stdlib/wasm/memory -"21P",@stdlib/wasm-memory -"21Q",@stdlib/wasm/module-wrapper -"21R",@stdlib/wasm-module-wrapper -"21T",@stdlib/wasm -"2Rc",@stdlib/wasm/types -"2Rd",@stdlib/wasm-types diff --git a/tools/id2pkg/data/data.json b/tools/id2pkg/data/data.json deleted file mode 100644 index 72c98c0..0000000 --- a/tools/id2pkg/data/data.json +++ /dev/null @@ -1 +0,0 @@ -{"100":"@stdlib/stats/base/dists/f/cdf","101":"@stdlib/stats-base-dists-f-cdf","102":"@stdlib/stats/base/dists/f/ctor","103":"@stdlib/stats-base-dists-f-ctor","104":"@stdlib/stats/base/dists/f/entropy","105":"@stdlib/stats-base-dists-f-entropy","106":"@stdlib/stats/base/dists/f/kurtosis","107":"@stdlib/stats-base-dists-f-kurtosis","108":"@stdlib/stats/base/dists/f/mean","109":"@stdlib/stats-base-dists-f-mean","110":"@stdlib/stats/base/dists/gamma/logcdf","111":"@stdlib/stats-base-dists-gamma-logcdf","112":"@stdlib/stats/base/dists/gamma/logpdf","113":"@stdlib/stats-base-dists-gamma-logpdf","114":"@stdlib/stats/base/dists/gamma/mean","115":"@stdlib/stats-base-dists-gamma-mean","116":"@stdlib/stats/base/dists/gamma/mgf","117":"@stdlib/stats-base-dists-gamma-mgf","118":"@stdlib/stats/base/dists/gamma/mode","119":"@stdlib/stats-base-dists-gamma-mode","120":"@stdlib/stats/base/dists/gumbel/logcdf","121":"@stdlib/stats-base-dists-gumbel-logcdf","122":"@stdlib/stats/base/dists/gumbel/logpdf","123":"@stdlib/stats-base-dists-gumbel-logpdf","124":"@stdlib/stats/base/dists/gumbel/mean","125":"@stdlib/stats-base-dists-gumbel-mean","126":"@stdlib/stats/base/dists/gumbel/median","127":"@stdlib/stats-base-dists-gumbel-median","128":"@stdlib/stats/base/dists/gumbel/mgf","129":"@stdlib/stats-base-dists-gumbel-mgf","130":"@stdlib/stats/base/dists/invgamma","131":"@stdlib/stats-base-dists-invgamma","132":"@stdlib/stats/base/dists/invgamma/pdf","133":"@stdlib/stats-base-dists-invgamma-pdf","134":"@stdlib/stats/base/dists/invgamma/quantile","135":"@stdlib/stats-base-dists-invgamma-quantile","136":"@stdlib/stats/base/dists/invgamma/skewness","137":"@stdlib/stats-base-dists-invgamma-skewness","138":"@stdlib/stats/base/dists/invgamma/stdev","139":"@stdlib/stats-base-dists-invgamma-stdev","140":"@stdlib/stats/base/dists/laplace/pdf","141":"@stdlib/stats-base-dists-laplace-pdf","142":"@stdlib/stats/base/dists/laplace/quantile","143":"@stdlib/stats-base-dists-laplace-quantile","144":"@stdlib/stats/base/dists/laplace/skewness","145":"@stdlib/stats-base-dists-laplace-skewness","146":"@stdlib/stats/base/dists/laplace/stdev","147":"@stdlib/stats-base-dists-laplace-stdev","148":"@stdlib/stats/base/dists/laplace/variance","149":"@stdlib/stats-base-dists-laplace-variance","150":"@stdlib/stats/base/dists/logistic/skewness","151":"@stdlib/stats-base-dists-logistic-skewness","152":"@stdlib/stats/base/dists/logistic/stdev","153":"@stdlib/stats-base-dists-logistic-stdev","154":"@stdlib/stats/base/dists/logistic/variance","155":"@stdlib/stats-base-dists-logistic-variance","156":"@stdlib/stats/base/dists/lognormal/cdf","157":"@stdlib/stats-base-dists-lognormal-cdf","158":"@stdlib/stats/base/dists/lognormal/ctor","159":"@stdlib/stats-base-dists-lognormal-ctor","160":"@stdlib/stats/base/dists/normal/ctor","161":"@stdlib/stats-base-dists-normal-ctor","162":"@stdlib/stats/base/dists/normal/entropy","163":"@stdlib/stats-base-dists-normal-entropy","164":"@stdlib/stats/base/dists/normal/kurtosis","165":"@stdlib/stats-base-dists-normal-kurtosis","166":"@stdlib/stats/base/dists/normal/logpdf","167":"@stdlib/stats-base-dists-normal-logpdf","168":"@stdlib/stats/base/dists/normal/mean","169":"@stdlib/stats-base-dists-normal-mean","170":"@stdlib/stats/base/dists/poisson/ctor","171":"@stdlib/stats-base-dists-poisson-ctor","172":"@stdlib/stats/base/dists/poisson/entropy","173":"@stdlib/stats-base-dists-poisson-entropy","174":"@stdlib/stats/base/dists/poisson/kurtosis","175":"@stdlib/stats-base-dists-poisson-kurtosis","176":"@stdlib/stats/base/dists/poisson/logpmf","177":"@stdlib/stats-base-dists-poisson-logpmf","178":"@stdlib/stats/base/dists/poisson/mean","179":"@stdlib/stats-base-dists-poisson-mean","180":"@stdlib/stats/base/dists/signrank","181":"@stdlib/stats-base-dists-signrank","182":"@stdlib/stats/base/dists/signrank/pdf","183":"@stdlib/stats-base-dists-signrank-pdf","184":"@stdlib/stats/base/dists/signrank/quantile","185":"@stdlib/stats-base-dists-signrank-quantile","186":"@stdlib/stats/base/dists/t/cdf","187":"@stdlib/stats-base-dists-t-cdf","188":"@stdlib/stats/base/dists/t/ctor","189":"@stdlib/stats-base-dists-t-ctor","190":"@stdlib/stats/base/dists/triangular/skewness","191":"@stdlib/stats-base-dists-triangular-skewness","192":"@stdlib/stats/base/dists/triangular/stdev","193":"@stdlib/stats-base-dists-triangular-stdev","194":"@stdlib/stats/base/dists/triangular/variance","195":"@stdlib/stats-base-dists-triangular-variance","196":"@stdlib/stats/base/dists/truncated-normal","197":"@stdlib/stats-base-dists-truncated-normal","198":"@stdlib/stats/base/dists/truncated-normal/pdf","199":"@stdlib/stats-base-dists-truncated-normal-pdf","202":"@stdlib/blas/base/dspr","203":"@stdlib/blas-base-dspr","204":"@stdlib/blas/ext/base/cfill","205":"@stdlib/blas-ext-base-cfill","206":"@stdlib/constants/float32/max-safe-nth-factorial","207":"@stdlib/constants-float32-max-safe-nth-factorial","208":"@stdlib/constants/float32/max-safe-nth-fibonacci","209":"@stdlib/constants-float32-max-safe-nth-fibonacci","210":"@stdlib/ndarray/base/assert/has-equal-shape","211":"@stdlib/ndarray-base-assert-has-equal-shape","212":"@stdlib/ndarray/base/fill","213":"@stdlib/ndarray-base-fill","214":"@stdlib/ndarray/base/to-reversed","215":"@stdlib/ndarray-base-to-reversed","216":"@stdlib/strided/base/read-dataview","217":"@stdlib/strided-base-read-dataview","218":"@stdlib/strided/base/strided2object","219":"@stdlib/strided-base-strided2object","220":"@stdlib/array/base/nulls","221":"@stdlib/array-base-nulls","222":"@stdlib/array/byte-orders","223":"@stdlib/array-byte-orders","224":"@stdlib/array/fixed-endian-factory","225":"@stdlib/array-fixed-endian-factory","226":"@stdlib/array/fixed-endian-float32","227":"@stdlib/array-fixed-endian-float32","228":"@stdlib/array/little-endian-factory","229":"@stdlib/array-little-endian-factory","230":"@stdlib/constants/float32/half-ln-two","231":"@stdlib/constants-float32-half-ln-two","232":"@stdlib/constants/float32/ln-two","233":"@stdlib/constants-float32-ln-two","234":"@stdlib/constants/float32/max-base10-exponent-subnormal","235":"@stdlib/constants-float32-max-base10-exponent-subnormal","236":"@stdlib/constants/float32/max-base10-exponent","237":"@stdlib/constants-float32-max-base10-exponent","238":"@stdlib/constants/float32/min-base10-exponent-subnormal","239":"@stdlib/constants-float32-min-base10-exponent-subnormal","240":"@stdlib/array/base/broadcasted-ternary5d","241":"@stdlib/array-base-broadcasted-ternary5d","242":"@stdlib/array/base/mskbinary4d","243":"@stdlib/array-base-mskbinary4d","244":"@stdlib/array/base/mskbinary5d","245":"@stdlib/array-base-mskbinary5d","246":"@stdlib/array/base/mskunary4d","247":"@stdlib/array-base-mskunary4d","248":"@stdlib/array/base/mskunary5d","249":"@stdlib/array-base-mskunary5d","250":"@stdlib/ndarray/index","251":"@stdlib/ndarray-index","252":"@stdlib/ndarray/map","253":"@stdlib/ndarray-map","254":"@stdlib/ndarray/reject","255":"@stdlib/ndarray-reject","256":"@stdlib/ndarray/to-fancy","257":"@stdlib/ndarray-to-fancy","258":"@stdlib/ndarray/to-json","259":"@stdlib/ndarray-to-json","260":"@stdlib/ndarray/base/spread-dimensions","261":"@stdlib/ndarray-base-spread-dimensions","262":"@stdlib/ndarray/base/to-normalized-indices","263":"@stdlib/ndarray-base-to-normalized-indices","264":"@stdlib/ndarray/base/to-unique-normalized-indices","265":"@stdlib/ndarray-base-to-unique-normalized-indices","266":"@stdlib/blas/base/zdscal","267":"@stdlib/blas-base-zdscal","268":"@stdlib/lapack/base/zlacgv","269":"@stdlib/lapack-base-zlacgv","270":"@stdlib/blas/base/wasm/snrm2","271":"@stdlib/blas-base-wasm-snrm2","272":"@stdlib/blas/base/wasm/srot","273":"@stdlib/blas-base-wasm-srot","274":"@stdlib/blas/base/wasm/sscal","275":"@stdlib/blas-base-wasm-sscal","276":"@stdlib/blas/base/wasm/zcopy","277":"@stdlib/blas-base-wasm-zcopy","278":"@stdlib/blas/base/wasm/zdrot","279":"@stdlib/blas-base-wasm-zdrot","280":"@stdlib/napi/argv-bool","281":"@stdlib/napi-argv-bool","282":"@stdlib/ndarray/base/assert/is-output-data-type-policy","283":"@stdlib/ndarray-base-assert-is-output-data-type-policy","284":"@stdlib/number/float32/base/add","285":"@stdlib/number-float32-base-add","286":"@stdlib/number/float32/base/div","287":"@stdlib/number-float32-base-div","288":"@stdlib/number/float32/base/mul","289":"@stdlib/number-float32-base-mul","290":"@stdlib/stats/strided/dmeanlipw","291":"@stdlib/stats-strided-dmeanlipw","292":"@stdlib/stats/strided/dmeanors","293":"@stdlib/stats-strided-dmeanors","294":"@stdlib/stats/strided/dmeanpw","295":"@stdlib/stats-strided-dmeanpw","296":"@stdlib/stats/strided/dmeanwd","297":"@stdlib/stats-strided-dmeanwd","298":"@stdlib/stats/strided/dmediansorted","299":"@stdlib/stats-strided-dmediansorted","1Yi":"@stdlib/array/base/accessor-getter","1Yj":"@stdlib/array-base-accessor-getter","1Yk":"@stdlib/array/base/accessor-setter","1Yl":"@stdlib/array-base-accessor-setter","1Ym":"@stdlib/array/base/accessor","1Yn":"@stdlib/array-base-accessor","1Yo":"@stdlib/array/base/accessors","1Yp":"@stdlib/array-base-accessors","1oK":"@stdlib/array/base/any-by-right","1oL":"@stdlib/array-base-any-by-right","1oM":"@stdlib/array/base/any-by","1oN":"@stdlib/array-base-any-by","2HQ":"@stdlib/array/base/any-has-own-property","2HR":"@stdlib/array-base-any-has-own-property","2HS":"@stdlib/array/base/any-has-property","2HT":"@stdlib/array-base-any-has-property","2HU":"@stdlib/array/base/any-is-entry-in","2HV":"@stdlib/array-base-any-is-entry-in","2HW":"@stdlib/array/base/any-is-entry","2HX":"@stdlib/array-base-any-is-entry","1oO":"@stdlib/array/base/any","1oP":"@stdlib/array-base-any","000":"@stdlib/array/base/arraylike2object","001":"@stdlib/array-base-arraylike2object","1Yq":"@stdlib/array/base/assert/contains","1Yr":"@stdlib/array-base-assert-contains","2N8":"@stdlib/array/base/assert/has-almost-equal-values","2N9":"@stdlib/array-base-assert-has-almost-equal-values","2co":"@stdlib/array/base/assert/has-almost-same-values","2cp":"@stdlib/array-base-assert-has-almost-same-values","1zi":"@stdlib/array/base/assert/has-equal-values-indexed","1zj":"@stdlib/array-base-assert-has-equal-values-indexed","1zk":"@stdlib/array/base/assert/has-equal-values","1zl":"@stdlib/array-base-assert-has-equal-values","1oQ":"@stdlib/array/base/assert/has-same-values","1oR":"@stdlib/array-base-assert-has-same-values","1Ys":"@stdlib/array/base/assert/is-accessor-array","1Yt":"@stdlib/array-base-assert-is-accessor-array","1w6":"@stdlib/array/base/assert/is-boolean-data-type","1w7":"@stdlib/array-base-assert-is-boolean-data-type","1w8":"@stdlib/array/base/assert/is-booleanarray","1w9":"@stdlib/array-base-assert-is-booleanarray","21o":"@stdlib/array/base/assert/is-byte-order","21p":"@stdlib/array-base-assert-is-byte-order","1qs":"@stdlib/array/base/assert/is-complex-floating-point-data-type","1qt":"@stdlib/array-base-assert-is-complex-floating-point-data-type","1s4":"@stdlib/array/base/assert/is-complex-typed-array","1s5":"@stdlib/array-base-assert-is-complex-typed-array","1oS":"@stdlib/array/base/assert/is-complex128array","1oT":"@stdlib/array-base-assert-is-complex128array","1oU":"@stdlib/array/base/assert/is-complex64array","1oV":"@stdlib/array-base-assert-is-complex64array","1qu":"@stdlib/array/base/assert/is-data-type","1qv":"@stdlib/array-base-assert-is-data-type","1qw":"@stdlib/array/base/assert/is-floating-point-data-type","1qx":"@stdlib/array-base-assert-is-floating-point-data-type","1qy":"@stdlib/array/base/assert/is-integer-data-type","1qz":"@stdlib/array-base-assert-is-integer-data-type","1r0":"@stdlib/array/base/assert/is-mostly-safe-data-type-cast","1r1":"@stdlib/array-base-assert-is-mostly-safe-data-type-cast","1r2":"@stdlib/array/base/assert/is-numeric-data-type","1r3":"@stdlib/array-base-assert-is-numeric-data-type","1r4":"@stdlib/array/base/assert/is-real-data-type","1r5":"@stdlib/array-base-assert-is-real-data-type","1r6":"@stdlib/array/base/assert/is-real-floating-point-data-type","1r7":"@stdlib/array-base-assert-is-real-floating-point-data-type","1r8":"@stdlib/array/base/assert/is-safe-data-type-cast","1r9":"@stdlib/array-base-assert-is-safe-data-type-cast","1rA":"@stdlib/array/base/assert/is-same-kind-data-type-cast","1rB":"@stdlib/array-base-assert-is-same-kind-data-type-cast","1rC":"@stdlib/array/base/assert/is-signed-integer-data-type","1rD":"@stdlib/array-base-assert-is-signed-integer-data-type","25a":"@stdlib/array/base/assert/is-sorted-ascending","25b":"@stdlib/array-base-assert-is-sorted-ascending","1rE":"@stdlib/array/base/assert/is-unsigned-integer-data-type","1rF":"@stdlib/array-base-assert-is-unsigned-integer-data-type","1Yu":"@stdlib/array/base/assert","1Yv":"@stdlib/array-base-assert","1oW":"@stdlib/array/base/at","1oX":"@stdlib/array-base-at","1oY":"@stdlib/array/base/at2d","1oZ":"@stdlib/array-base-at2d","1oa":"@stdlib/array/base/at3d","1ob":"@stdlib/array-base-at3d","1oc":"@stdlib/array/base/at4d","1od":"@stdlib/array-base-at4d","1oe":"@stdlib/array/base/at5d","1of":"@stdlib/array-base-at5d","1og":"@stdlib/array/base/atnd","1oh":"@stdlib/array-base-atnd","29O":"@stdlib/array/base/banded/filled2d-by","29P":"@stdlib/array-base-banded-filled2d-by","2Eg":"@stdlib/array/base/banded","2Eh":"@stdlib/array-base-banded","29Q":"@stdlib/array/base/banded/to-compact","29R":"@stdlib/array-base-banded-to-compact","1ne":"@stdlib/array/base/bifurcate-entries-by","1nf":"@stdlib/array-base-bifurcate-entries-by","1n2":"@stdlib/array/base/bifurcate-entries","1n3":"@stdlib/array-base-bifurcate-entries","1ng":"@stdlib/array/base/bifurcate-indices-by","1nh":"@stdlib/array-base-bifurcate-indices-by","1n4":"@stdlib/array/base/bifurcate-indices","1n5":"@stdlib/array-base-bifurcate-indices","1ni":"@stdlib/array/base/bifurcate-values-by","1nj":"@stdlib/array-base-bifurcate-values-by","1n6":"@stdlib/array/base/bifurcate-values","1n7":"@stdlib/array-base-bifurcate-values","1i0":"@stdlib/array/base/binary2d","1i1":"@stdlib/array-base-binary2d","1i2":"@stdlib/array/base/binary3d","1i3":"@stdlib/array-base-binary3d","1i4":"@stdlib/array/base/binary4d","1i5":"@stdlib/array-base-binary4d","1i6":"@stdlib/array/base/binary5d","1i7":"@stdlib/array-base-binary5d","1i8":"@stdlib/array/base/binarynd","1i9":"@stdlib/array-base-binarynd","1hM":"@stdlib/array/base/broadcast-array","1hN":"@stdlib/array-base-broadcast-array","1iA":"@stdlib/array/base/broadcasted-binary2d","1iB":"@stdlib/array-base-broadcasted-binary2d","1iC":"@stdlib/array/base/broadcasted-binary3d","1iD":"@stdlib/array-base-broadcasted-binary3d","1iE":"@stdlib/array/base/broadcasted-binary4d","1iF":"@stdlib/array-base-broadcasted-binary4d","1iG":"@stdlib/array/base/broadcasted-binary5d","1iH":"@stdlib/array-base-broadcasted-binary5d","1ke":"@stdlib/array/base/broadcasted-quaternary2d","1kf":"@stdlib/array-base-broadcasted-quaternary2d","23o":"@stdlib/array/base/broadcasted-quaternary3d","23p":"@stdlib/array-base-broadcasted-quaternary3d","23q":"@stdlib/array/base/broadcasted-quaternary4d","23r":"@stdlib/array-base-broadcasted-quaternary4d","23s":"@stdlib/array/base/broadcasted-quaternary5d","23t":"@stdlib/array-base-broadcasted-quaternary5d","1kg":"@stdlib/array/base/broadcasted-quinary2d","1kh":"@stdlib/array-base-broadcasted-quinary2d","23u":"@stdlib/array/base/broadcasted-quinary4d","23v":"@stdlib/array-base-broadcasted-quinary4d","1ki":"@stdlib/array/base/broadcasted-ternary2d","1kj":"@stdlib/array-base-broadcasted-ternary2d","23w":"@stdlib/array/base/broadcasted-ternary3d","23x":"@stdlib/array-base-broadcasted-ternary3d","23y":"@stdlib/array/base/broadcasted-ternary4d","23z":"@stdlib/array-base-broadcasted-ternary4d","1iI":"@stdlib/array/base/broadcasted-unary2d","1iJ":"@stdlib/array-base-broadcasted-unary2d","1iK":"@stdlib/array/base/broadcasted-unary3d","1iL":"@stdlib/array-base-broadcasted-unary3d","1iM":"@stdlib/array/base/broadcasted-unary4d","1iN":"@stdlib/array-base-broadcasted-unary4d","1iO":"@stdlib/array/base/broadcasted-unary5d","1iP":"@stdlib/array-base-broadcasted-unary5d","1Yw":"@stdlib/array/base/cartesian-power","1Yx":"@stdlib/array-base-cartesian-power","1Yy":"@stdlib/array/base/cartesian-product","1Yz":"@stdlib/array-base-cartesian-product","1Z0":"@stdlib/array/base/cartesian-square","1Z1":"@stdlib/array-base-cartesian-square","1Z2":"@stdlib/array/base/copy-indexed","1Z3":"@stdlib/array-base-copy-indexed","002":"@stdlib/array/base/copy","003":"@stdlib/array-base-copy","1s6":"@stdlib/array/base/count-falsy","1s7":"@stdlib/array-base-count-falsy","1sO":"@stdlib/array/base/count-if","1sP":"@stdlib/array-base-count-if","2EU":"@stdlib/array/base/count-ifs","2EV":"@stdlib/array-base-count-ifs","1sQ":"@stdlib/array/base/count-same-value-zero","1sR":"@stdlib/array-base-count-same-value-zero","1s8":"@stdlib/array/base/count-same-value","1s9":"@stdlib/array-base-count-same-value","1sA":"@stdlib/array/base/count-truthy","1sB":"@stdlib/array-base-count-truthy","21q":"@stdlib/array/base/cuany-by-right","21r":"@stdlib/array-base-cuany-by-right","21s":"@stdlib/array/base/cuany-by","21t":"@stdlib/array-base-cuany-by","1wA":"@stdlib/array/base/cuany","1wB":"@stdlib/array-base-cuany","22E":"@stdlib/array/base/cuevery-by-right","22F":"@stdlib/array-base-cuevery-by-right","21u":"@stdlib/array/base/cuevery-by","21v":"@stdlib/array-base-cuevery-by","1wC":"@stdlib/array/base/cuevery","1wD":"@stdlib/array-base-cuevery","21U":"@stdlib/array/base/cunone-by-right","21V":"@stdlib/array-base-cunone-by-right","21W":"@stdlib/array/base/cunone-by","21X":"@stdlib/array-base-cunone-by","1ww":"@stdlib/array/base/cunone","1wx":"@stdlib/array-base-cunone","21Y":"@stdlib/array/base/cusome-by-right","21Z":"@stdlib/array-base-cusome-by-right","21w":"@stdlib/array/base/cusome-by","21x":"@stdlib/array-base-cusome-by","21y":"@stdlib/array/base/cusome","21z":"@stdlib/array-base-cusome","1n8":"@stdlib/array/base/dedupe","1n9":"@stdlib/array-base-dedupe","2SS":"@stdlib/array/base/entries2objects","2ST":"@stdlib/array-base-entries2objects","2SU":"@stdlib/array/base/entries2views","2SV":"@stdlib/array-base-entries2views","1oi":"@stdlib/array/base/every-by-right","1oj":"@stdlib/array-base-every-by-right","1ok":"@stdlib/array/base/every-by","1ol":"@stdlib/array-base-every-by","1om":"@stdlib/array/base/every","1on":"@stdlib/array-base-every","2cq":"@stdlib/array/base/falses","2cr":"@stdlib/array-base-falses","1rG":"@stdlib/array/base/fancy-slice-assign","1rH":"@stdlib/array-base-fancy-slice-assign","1rI":"@stdlib/array/base/fancy-slice","1rJ":"@stdlib/array-base-fancy-slice","29S":"@stdlib/array/base/fill-by","29T":"@stdlib/array-base-fill-by","25c":"@stdlib/array/base/fill","25d":"@stdlib/array-base-fill","004":"@stdlib/array/base/filled-by","005":"@stdlib/array-base-filled-by","006":"@stdlib/array/base/filled","007":"@stdlib/array-base-filled","1hO":"@stdlib/array/base/filled2d-by","1hP":"@stdlib/array-base-filled2d-by","1Z4":"@stdlib/array/base/filled2d","1Z5":"@stdlib/array-base-filled2d","1hQ":"@stdlib/array/base/filled3d-by","1hR":"@stdlib/array-base-filled3d-by","1hS":"@stdlib/array/base/filled3d","1hT":"@stdlib/array-base-filled3d","1hU":"@stdlib/array/base/filled4d-by","1hV":"@stdlib/array-base-filled4d-by","1hW":"@stdlib/array/base/filled4d","1hX":"@stdlib/array-base-filled4d","1hY":"@stdlib/array/base/filled5d-by","1hZ":"@stdlib/array-base-filled5d-by","1ha":"@stdlib/array/base/filled5d","1hb":"@stdlib/array-base-filled5d","1iQ":"@stdlib/array/base/fillednd-by","1iR":"@stdlib/array-base-fillednd-by","1hc":"@stdlib/array/base/fillednd","1hd":"@stdlib/array-base-fillednd","1oo":"@stdlib/array/base/filter","1op":"@stdlib/array-base-filter","1mm":"@stdlib/array/base/first","1mn":"@stdlib/array-base-first","1he":"@stdlib/array/base/flatten-by","1hf":"@stdlib/array-base-flatten-by","1Z6":"@stdlib/array/base/flatten","1Z7":"@stdlib/array-base-flatten","1Z8":"@stdlib/array/base/flatten2d-by","1Z9":"@stdlib/array-base-flatten2d-by","1ZA":"@stdlib/array/base/flatten2d","1ZB":"@stdlib/array-base-flatten2d","1ZC":"@stdlib/array/base/flatten3d-by","1ZD":"@stdlib/array-base-flatten3d-by","1ZE":"@stdlib/array/base/flatten3d","1ZF":"@stdlib/array-base-flatten3d","1ZG":"@stdlib/array/base/flatten4d-by","1ZH":"@stdlib/array-base-flatten4d-by","1ZI":"@stdlib/array/base/flatten4d","1ZJ":"@stdlib/array-base-flatten4d","1ZK":"@stdlib/array/base/flatten5d-by","1ZL":"@stdlib/array-base-flatten5d-by","1ZM":"@stdlib/array/base/flatten5d","1ZN":"@stdlib/array-base-flatten5d","1lg":"@stdlib/array/base/fliplr2d","1lh":"@stdlib/array-base-fliplr2d","1mI":"@stdlib/array/base/fliplr3d","1mJ":"@stdlib/array-base-fliplr3d","1mK":"@stdlib/array/base/fliplr4d","1mL":"@stdlib/array-base-fliplr4d","1mM":"@stdlib/array/base/fliplr5d","1mN":"@stdlib/array-base-fliplr5d","1li":"@stdlib/array/base/flipud2d","1lj":"@stdlib/array-base-flipud2d","1nA":"@stdlib/array/base/flipud3d","1nB":"@stdlib/array-base-flipud3d","1nC":"@stdlib/array/base/flipud4d","1nD":"@stdlib/array-base-flipud4d","1nE":"@stdlib/array/base/flipud5d","1nF":"@stdlib/array-base-flipud5d","26K":"@stdlib/array/base/for-each","26L":"@stdlib/array-base-for-each","1lk":"@stdlib/array/base/from-strided","1ll":"@stdlib/array-base-from-strided","1ZO":"@stdlib/array/base/getter","1ZP":"@stdlib/array-base-getter","1nk":"@stdlib/array/base/group-entries-by","1nl":"@stdlib/array-base-group-entries-by","1nG":"@stdlib/array/base/group-entries","1nH":"@stdlib/array-base-group-entries","1nm":"@stdlib/array/base/group-indices-by","1nn":"@stdlib/array-base-group-indices-by","1nI":"@stdlib/array/base/group-indices","1nJ":"@stdlib/array-base-group-indices","1no":"@stdlib/array/base/group-values-by","1np":"@stdlib/array-base-group-values-by","2SW":"@stdlib/array/base/group-values-on-key","2SX":"@stdlib/array-base-group-values-on-key","1nK":"@stdlib/array/base/group-values","1nL":"@stdlib/array-base-group-values","008":"@stdlib/array/base/incrspace","009":"@stdlib/array-base-incrspace","2DY":"@stdlib/array/base/index-of-same-value","2DZ":"@stdlib/array-base-index-of-same-value","1mo":"@stdlib/array/base/index-of","1mp":"@stdlib/array-base-index-of","25e":"@stdlib/array/base/indices-complement","25f":"@stdlib/array-base-indices-complement","2Vy":"@stdlib/array/base/insert-at","2Vz":"@stdlib/array-base-insert-at","1t0":"@stdlib/array/base/join","1t1":"@stdlib/array-base-join","2Da":"@stdlib/array/base/last-index-of-same-value","2Db":"@stdlib/array-base-last-index-of-same-value","1mq":"@stdlib/array/base/last-index-of","1mr":"@stdlib/array-base-last-index-of","1ZQ":"@stdlib/array/base/last","1ZR":"@stdlib/array-base-last","00A":"@stdlib/array/base/linspace","00B":"@stdlib/array-base-linspace","2Dc":"@stdlib/array/base/linspace2d","2Dd":"@stdlib/array-base-linspace2d","00C":"@stdlib/array/base/logspace","00D":"@stdlib/array-base-logspace","29U":"@stdlib/array/base/map","29V":"@stdlib/array-base-map","1lm":"@stdlib/array/base/map2d","1ln":"@stdlib/array-base-map2d","1lo":"@stdlib/array/base/map3d","1lp":"@stdlib/array-base-map3d","1mO":"@stdlib/array/base/map4d","1mP":"@stdlib/array-base-map4d","1mQ":"@stdlib/array/base/map5d","1mR":"@stdlib/array-base-map5d","1rK":"@stdlib/array/base/min-signed-integer-dtype","1rL":"@stdlib/array-base-min-signed-integer-dtype","1rM":"@stdlib/array/base/min-unsigned-integer-dtype","1rN":"@stdlib/array-base-min-unsigned-integer-dtype","1ia":"@stdlib/array/base/mskbinary2d","1ib":"@stdlib/array-base-mskbinary2d","22G":"@stdlib/array/base/mskbinary3d","22H":"@stdlib/array-base-mskbinary3d","1uM":"@stdlib/array/base/mskfilter-map","1uN":"@stdlib/array-base-mskfilter-map","1oq":"@stdlib/array/base/mskfilter","1or":"@stdlib/array-base-mskfilter","25g":"@stdlib/array/base/mskfilter2","25h":"@stdlib/array-base-mskfilter2","25i":"@stdlib/array/base/mskfiltern","25j":"@stdlib/array-base-mskfiltern","1wE":"@stdlib/array/base/mskput","1wF":"@stdlib/array-base-mskput","1uO":"@stdlib/array/base/mskreject-map","1uP":"@stdlib/array-base-mskreject-map","1rO":"@stdlib/array/base/mskreject","1rP":"@stdlib/array-base-mskreject","1ic":"@stdlib/array/base/mskunary2d","1id":"@stdlib/array-base-mskunary2d","1ie":"@stdlib/array/base/mskunary3d","1if":"@stdlib/array-base-mskunary3d","1ZS":"@stdlib/array/base/n-cartesian-product","1ZT":"@stdlib/array-base-n-cartesian-product","2SY":"@stdlib/array/base/nested2objects","2SZ":"@stdlib/array-base-nested2objects","2Sa":"@stdlib/array/base/nested2views","2Sb":"@stdlib/array-base-nested2views","1os":"@stdlib/array/base/none-by-right","1ot":"@stdlib/array-base-none-by-right","1ou":"@stdlib/array/base/none-by","1ov":"@stdlib/array-base-none-by","1ow":"@stdlib/array/base/none","1ox":"@stdlib/array-base-none","1hg":"@stdlib/array/base/one-to","1hh":"@stdlib/array-base-one-to","00E":"@stdlib/array/base/ones","00F":"@stdlib/array-base-ones","1ZU":"@stdlib/array/base/ones2d","1ZV":"@stdlib/array-base-ones2d","1hi":"@stdlib/array/base/ones3d","1hj":"@stdlib/array-base-ones3d","1hk":"@stdlib/array/base/ones4d","1hl":"@stdlib/array-base-ones4d","1hm":"@stdlib/array/base/ones5d","1hn":"@stdlib/array-base-ones5d","1ho":"@stdlib/array/base/onesnd","1hp":"@stdlib/array-base-onesnd","00G":"@stdlib/array/base","00H":"@stdlib/array-base","1wG":"@stdlib/array/base/place","1wH":"@stdlib/array-base-place","1wI":"@stdlib/array/base/put","1wJ":"@stdlib/array-base-put","1kk":"@stdlib/array/base/quaternary2d","1kl":"@stdlib/array-base-quaternary2d","1lq":"@stdlib/array/base/quaternary3d","1lr":"@stdlib/array-base-quaternary3d","1ls":"@stdlib/array/base/quaternary4d","1lt":"@stdlib/array-base-quaternary4d","1lu":"@stdlib/array/base/quaternary5d","1lv":"@stdlib/array-base-quaternary5d","1km":"@stdlib/array/base/quinary2d","1kn":"@stdlib/array-base-quinary2d","1nM":"@stdlib/array/base/quinary3d","1nN":"@stdlib/array-base-quinary3d","1nO":"@stdlib/array/base/quinary4d","1nP":"@stdlib/array-base-quinary4d","1nQ":"@stdlib/array/base/quinary5d","1nR":"@stdlib/array-base-quinary5d","1rQ":"@stdlib/array/base/reject","1rR":"@stdlib/array-base-reject","2Sc":"@stdlib/array/base/rekey-views","2Sd":"@stdlib/array-base-rekey-views","2Se":"@stdlib/array/base/rekey","2Sf":"@stdlib/array-base-rekey","1yy":"@stdlib/array/base/remove-at","1yz":"@stdlib/array-base-remove-at","2De":"@stdlib/array/base/reshape","2Df":"@stdlib/array-base-reshape","1lw":"@stdlib/array/base/resolve-getter","1lx":"@stdlib/array-base-resolve-getter","1oy":"@stdlib/array/base/resolve-setter","1oz":"@stdlib/array-base-resolve-setter","1p0":"@stdlib/array/base/reverse","1p1":"@stdlib/array-base-reverse","25k":"@stdlib/array/base/scatter-filled","25l":"@stdlib/array-base-scatter-filled","25m":"@stdlib/array/base/scattered","25n":"@stdlib/array-base-scattered","1ZW":"@stdlib/array/base/setter","1ZX":"@stdlib/array-base-setter","1ms":"@stdlib/array/base/slice","1mt":"@stdlib/array-base-slice","1ko":"@stdlib/array/base/strided2array2d","1kp":"@stdlib/array-base-strided2array2d","1kq":"@stdlib/array/base/strided2array3d","1kr":"@stdlib/array-base-strided2array3d","1ks":"@stdlib/array/base/strided2array4d","1kt":"@stdlib/array-base-strided2array4d","1ku":"@stdlib/array/base/strided2array5d","1kv":"@stdlib/array-base-strided2array5d","29W":"@stdlib/array/base/symmetric-banded/filled2d-by","29X":"@stdlib/array-base-symmetric-banded-filled2d-by","2Ei":"@stdlib/array/base/symmetric-banded","2Ej":"@stdlib/array-base-symmetric-banded","29Y":"@stdlib/array/base/symmetric-banded/to-compact","29Z":"@stdlib/array-base-symmetric-banded-to-compact","29a":"@stdlib/array/base/symmetric/filled2d-by","29b":"@stdlib/array-base-symmetric-filled2d-by","2Ek":"@stdlib/array/base/symmetric","2El":"@stdlib/array-base-symmetric","1ly":"@stdlib/array/base/take-indexed","1lz":"@stdlib/array-base-take-indexed","25o":"@stdlib/array/base/take-indexed2","25p":"@stdlib/array-base-take-indexed2","1t2":"@stdlib/array/base/take-map","1t3":"@stdlib/array-base-take-map","1ZY":"@stdlib/array/base/take","1ZZ":"@stdlib/array-base-take","1m0":"@stdlib/array/base/take2d","1m1":"@stdlib/array-base-take2d","1mS":"@stdlib/array/base/take3d","1mT":"@stdlib/array-base-take3d","1kw":"@stdlib/array/base/ternary2d","1kx":"@stdlib/array-base-ternary2d","1ky":"@stdlib/array/base/ternary3d","1kz":"@stdlib/array-base-ternary3d","1l0":"@stdlib/array/base/ternary4d","1l1":"@stdlib/array-base-ternary4d","1l2":"@stdlib/array/base/ternary5d","1l3":"@stdlib/array-base-ternary5d","1Za":"@stdlib/array/base/to-accessor-array","1Zb":"@stdlib/array-base-to-accessor-array","1nS":"@stdlib/array/base/to-deduped","1nT":"@stdlib/array-base-to-deduped","2cs":"@stdlib/array/base/to-filled","2ct":"@stdlib/array-base-to-filled","2W0":"@stdlib/array/base/to-inserted-at","2W1":"@stdlib/array-base-to-inserted-at","1p2":"@stdlib/array/base/to-reversed","1p3":"@stdlib/array-base-to-reversed","2cu":"@stdlib/array/base/trues","2cv":"@stdlib/array-base-trues","1ig":"@stdlib/array/base/unary2d-by","1ih":"@stdlib/array-base-unary2d-by","1hq":"@stdlib/array/base/unary2d","1hr":"@stdlib/array-base-unary2d","24A":"@stdlib/array/base/unary3d-by","24B":"@stdlib/array-base-unary3d-by","1iS":"@stdlib/array/base/unary3d","1iT":"@stdlib/array-base-unary3d","24C":"@stdlib/array/base/unary4d-by","24D":"@stdlib/array-base-unary4d-by","1iU":"@stdlib/array/base/unary4d","1iV":"@stdlib/array-base-unary4d","24E":"@stdlib/array/base/unary5d-by","24F":"@stdlib/array-base-unary5d-by","1iW":"@stdlib/array/base/unary5d","1iX":"@stdlib/array-base-unary5d","1iY":"@stdlib/array/base/unarynd","1iZ":"@stdlib/array-base-unarynd","00I":"@stdlib/array/base/unitspace","00J":"@stdlib/array-base-unitspace","1wK":"@stdlib/array/base/where","1wL":"@stdlib/array-base-where","1sS":"@stdlib/array/base/with","1sT":"@stdlib/array-base-with","1z0":"@stdlib/array/base/without","1z1":"@stdlib/array-base-without","1Zc":"@stdlib/array/base/zero-to","1Zd":"@stdlib/array-base-zero-to","00K":"@stdlib/array/base/zeros","00L":"@stdlib/array-base-zeros","1Ze":"@stdlib/array/base/zeros2d","1Zf":"@stdlib/array-base-zeros2d","1hs":"@stdlib/array/base/zeros3d","1ht":"@stdlib/array-base-zeros3d","1hu":"@stdlib/array/base/zeros4d","1hv":"@stdlib/array-base-zeros4d","1hw":"@stdlib/array/base/zeros5d","1hx":"@stdlib/array-base-zeros5d","1hy":"@stdlib/array/base/zerosnd","1hz":"@stdlib/array-base-zerosnd","2Sg":"@stdlib/array/base/zip","2Sh":"@stdlib/array-base-zip","2Re":"@stdlib/array/base/zip2object","2Rf":"@stdlib/array-base-zip2object","2Si":"@stdlib/array/base/zip2objects","2Sj":"@stdlib/array-base-zip2objects","2Sk":"@stdlib/array/base/zip2views","2Sl":"@stdlib/array-base-zip2views","1uQ":"@stdlib/array/bool","1uR":"@stdlib/array-bool","00M":"@stdlib/array/buffer","00N":"@stdlib/array-buffer","1p4":"@stdlib/array/cartesian-power","1p5":"@stdlib/array-cartesian-power","1p6":"@stdlib/array/cartesian-product","1p7":"@stdlib/array-cartesian-product","1p8":"@stdlib/array/cartesian-square","1p9":"@stdlib/array-cartesian-square","00O":"@stdlib/array/complex128","00P":"@stdlib/array-complex128","00Q":"@stdlib/array/complex64","00R":"@stdlib/array-complex64","00S":"@stdlib/array/convert-same","00T":"@stdlib/array-convert-same","00U":"@stdlib/array/convert","00V":"@stdlib/array-convert","00W":"@stdlib/array/ctors","00X":"@stdlib/array-ctors","00Y":"@stdlib/array/dataview","00Z":"@stdlib/array-dataview","00a":"@stdlib/array/datespace","00b":"@stdlib/array-datespace","1nq":"@stdlib/array/defaults","1nr":"@stdlib/array-defaults","00c":"@stdlib/array/dtype","00d":"@stdlib/array-dtype","00e":"@stdlib/array/dtypes","00f":"@stdlib/array-dtypes","1Zg":"@stdlib/array/empty-like","1Zh":"@stdlib/array-empty-like","1Zi":"@stdlib/array/empty","1Zj":"@stdlib/array-empty","00g":"@stdlib/array/filled-by","00h":"@stdlib/array-filled-by","00i":"@stdlib/array/filled","00j":"@stdlib/array-filled","21a":"@stdlib/array/fixed-endian-float64","21b":"@stdlib/array-fixed-endian-float64","2cw":"@stdlib/array/float16","2cx":"@stdlib/array-float16","00k":"@stdlib/array/float32","00l":"@stdlib/array-float32","00m":"@stdlib/array/float64","00n":"@stdlib/array-float64","00o":"@stdlib/array/from-iterator","00p":"@stdlib/array-from-iterator","1rS":"@stdlib/array/from-scalar","1rT":"@stdlib/array-from-scalar","00q":"@stdlib/array/full-like","00r":"@stdlib/array-full-like","00s":"@stdlib/array/full","00t":"@stdlib/array-full","00u":"@stdlib/array/incrspace","00v":"@stdlib/array-incrspace","1ry":"@stdlib/array/index","1rz":"@stdlib/array-index","00w":"@stdlib/array/int16","00x":"@stdlib/array-int16","00y":"@stdlib/array/int32","00z":"@stdlib/array-int32","010":"@stdlib/array/int8","011":"@stdlib/array-int8","012":"@stdlib/array/linspace","013":"@stdlib/array-linspace","22A":"@stdlib/array/little-endian-float32","22B":"@stdlib/array-little-endian-float32","22C":"@stdlib/array/little-endian-float64","22D":"@stdlib/array-little-endian-float64","014":"@stdlib/array/logspace","015":"@stdlib/array-logspace","016":"@stdlib/array/min-dtype","017":"@stdlib/array-min-dtype","1rU":"@stdlib/array/mostly-safe-casts","1rV":"@stdlib/array-mostly-safe-casts","1sC":"@stdlib/array/mskfilter","1sD":"@stdlib/array-mskfilter","1wM":"@stdlib/array/mskput","1wN":"@stdlib/array-mskput","1sE":"@stdlib/array/mskreject","1sF":"@stdlib/array-mskreject","1Zk":"@stdlib/array/nans-like","1Zl":"@stdlib/array-nans-like","1Zm":"@stdlib/array/nans","1Zn":"@stdlib/array-nans","018":"@stdlib/array/next-dtype","019":"@stdlib/array-next-dtype","2cy":"@stdlib/array/nulls","2cz":"@stdlib/array-nulls","1pA":"@stdlib/array/one-to-like","1pB":"@stdlib/array-one-to-like","1pC":"@stdlib/array/one-to","1pD":"@stdlib/array-one-to","01A":"@stdlib/array/ones-like","01B":"@stdlib/array-ones-like","01C":"@stdlib/array/ones","01D":"@stdlib/array-ones","01F":"@stdlib/array","1wO":"@stdlib/array/place","1wP":"@stdlib/array-place","01G":"@stdlib/array/pool","01H":"@stdlib/array-pool","01I":"@stdlib/array/promotion-rules","01J":"@stdlib/array-promotion-rules","1wQ":"@stdlib/array/put","1wR":"@stdlib/array-put","01K":"@stdlib/array/reviver","01L":"@stdlib/array-reviver","01M":"@stdlib/array/safe-casts","01N":"@stdlib/array-safe-casts","01O":"@stdlib/array/same-kind-casts","01P":"@stdlib/array-same-kind-casts","01Q":"@stdlib/array/shape","01R":"@stdlib/array-shape","01S":"@stdlib/array/shared-buffer","01T":"@stdlib/array-shared-buffer","1pE":"@stdlib/array/slice","1pF":"@stdlib/array-slice","2KE":"@stdlib/array/struct-factory","2KF":"@stdlib/array-struct-factory","1s0":"@stdlib/array/take","1s1":"@stdlib/array-take","01U":"@stdlib/array/to-circular-iterator","01V":"@stdlib/array-to-circular-iterator","1rW":"@stdlib/array/to-fancy","1rX":"@stdlib/array-to-fancy","01W":"@stdlib/array/to-iterator-right","01X":"@stdlib/array-to-iterator-right","01Y":"@stdlib/array/to-iterator","01Z":"@stdlib/array-to-iterator","01a":"@stdlib/array/to-json","01b":"@stdlib/array-to-json","01c":"@stdlib/array/to-sparse-iterator-right","01d":"@stdlib/array-to-sparse-iterator-right","01e":"@stdlib/array/to-sparse-iterator","01f":"@stdlib/array-to-sparse-iterator","01g":"@stdlib/array/to-strided-iterator","01h":"@stdlib/array-to-strided-iterator","01i":"@stdlib/array/to-view-iterator-right","01j":"@stdlib/array-to-view-iterator-right","01k":"@stdlib/array/to-view-iterator","01l":"@stdlib/array-to-view-iterator","01m":"@stdlib/array/typed-complex-ctors","01n":"@stdlib/array-typed-complex-ctors","01o":"@stdlib/array/typed-complex-dtypes","01p":"@stdlib/array-typed-complex-dtypes","01q":"@stdlib/array/typed-complex","01r":"@stdlib/array-typed-complex","01s":"@stdlib/array/typed-ctors","01t":"@stdlib/array-typed-ctors","01u":"@stdlib/array/typed-dtypes","01v":"@stdlib/array-typed-dtypes","01w":"@stdlib/array/typed-float-ctors","01x":"@stdlib/array-typed-float-ctors","01y":"@stdlib/array/typed-float-dtypes","01z":"@stdlib/array-typed-float-dtypes","020":"@stdlib/array/typed-integer-ctors","021":"@stdlib/array-typed-integer-ctors","022":"@stdlib/array/typed-integer-dtypes","023":"@stdlib/array-typed-integer-dtypes","024":"@stdlib/array/typed-real-ctors","025":"@stdlib/array-typed-real-ctors","026":"@stdlib/array/typed-real-dtypes","027":"@stdlib/array-typed-real-dtypes","028":"@stdlib/array/typed-real-float-ctors","029":"@stdlib/array-typed-real-float-ctors","02A":"@stdlib/array/typed-real-float-dtypes","02B":"@stdlib/array-typed-real-float-dtypes","02C":"@stdlib/array/typed-real","02D":"@stdlib/array-typed-real","02E":"@stdlib/array/typed-signed-integer-ctors","02F":"@stdlib/array-typed-signed-integer-ctors","02G":"@stdlib/array/typed-signed-integer-dtypes","02H":"@stdlib/array-typed-signed-integer-dtypes","02I":"@stdlib/array/typed-unsigned-integer-ctors","02J":"@stdlib/array-typed-unsigned-integer-ctors","02K":"@stdlib/array/typed-unsigned-integer-dtypes","02L":"@stdlib/array-typed-unsigned-integer-dtypes","02M":"@stdlib/array/typed","02N":"@stdlib/array-typed","02O":"@stdlib/array/uint16","02P":"@stdlib/array-uint16","02Q":"@stdlib/array/uint32","02R":"@stdlib/array-uint32","02S":"@stdlib/array/uint8","02T":"@stdlib/array-uint8","02U":"@stdlib/array/uint8c","02V":"@stdlib/array-uint8c","1pG":"@stdlib/array/zero-to-like","1pH":"@stdlib/array-zero-to-like","1pI":"@stdlib/array/zero-to","1pJ":"@stdlib/array-zero-to","02W":"@stdlib/array/zeros-like","02X":"@stdlib/array-zeros-like","02Y":"@stdlib/array/zeros","02Z":"@stdlib/array-zeros","02a":"@stdlib/assert/contains","02b":"@stdlib/assert-contains","02c":"@stdlib/assert/deep-equal","02d":"@stdlib/assert-deep-equal","02e":"@stdlib/assert/deep-has-own-property","02f":"@stdlib/assert-deep-has-own-property","02g":"@stdlib/assert/deep-has-property","02h":"@stdlib/assert-deep-has-property","02i":"@stdlib/assert/has-arraybuffer-support","02j":"@stdlib/assert-has-arraybuffer-support","02k":"@stdlib/assert/has-arrow-function-support","02l":"@stdlib/assert-has-arrow-function-support","02m":"@stdlib/assert/has-async-await-support","02n":"@stdlib/assert-has-async-await-support","02o":"@stdlib/assert/has-async-iterator-symbol-support","02p":"@stdlib/assert-has-async-iterator-symbol-support","1zm":"@stdlib/assert/has-atob-support","1zn":"@stdlib/assert-has-atob-support","02q":"@stdlib/assert/has-bigint-support","02r":"@stdlib/assert-has-bigint-support","02s":"@stdlib/assert/has-bigint64array-support","02t":"@stdlib/assert-has-bigint64array-support","02u":"@stdlib/assert/has-biguint64array-support","02v":"@stdlib/assert-has-biguint64array-support","1zo":"@stdlib/assert/has-btoa-support","1zp":"@stdlib/assert-has-btoa-support","02w":"@stdlib/assert/has-class-support","02x":"@stdlib/assert-has-class-support","02y":"@stdlib/assert/has-dataview-support","02z":"@stdlib/assert-has-dataview-support","030":"@stdlib/assert/has-define-properties-support","031":"@stdlib/assert-has-define-properties-support","032":"@stdlib/assert/has-define-property-support","033":"@stdlib/assert-has-define-property-support","2NA":"@stdlib/assert/has-float16array-support","2NB":"@stdlib/assert-has-float16array-support","034":"@stdlib/assert/has-float32array-support","035":"@stdlib/assert-has-float32array-support","036":"@stdlib/assert/has-float64array-support","037":"@stdlib/assert-has-float64array-support","038":"@stdlib/assert/has-function-name-support","039":"@stdlib/assert-has-function-name-support","03A":"@stdlib/assert/has-generator-support","03B":"@stdlib/assert-has-generator-support","03C":"@stdlib/assert/has-globalthis-support","03D":"@stdlib/assert-has-globalthis-support","2XY":"@stdlib/assert/has-has-instance-symbol-support","2XZ":"@stdlib/assert-has-has-instance-symbol-support","03E":"@stdlib/assert/has-int16array-support","03F":"@stdlib/assert-has-int16array-support","03G":"@stdlib/assert/has-int32array-support","03H":"@stdlib/assert-has-int32array-support","03I":"@stdlib/assert/has-int8array-support","03J":"@stdlib/assert-has-int8array-support","2Wk":"@stdlib/assert/has-is-concat-spreadable-symbol-support","2Wl":"@stdlib/assert-has-is-concat-spreadable-symbol-support","03K":"@stdlib/assert/has-iterator-symbol-support","03L":"@stdlib/assert-has-iterator-symbol-support","03M":"@stdlib/assert/has-map-support","03N":"@stdlib/assert-has-map-support","2Xa":"@stdlib/assert/has-match-symbol-support","2Xb":"@stdlib/assert-has-match-symbol-support","03O":"@stdlib/assert/has-node-buffer-support","03P":"@stdlib/assert-has-node-buffer-support","03Q":"@stdlib/assert/has-own-property","03R":"@stdlib/assert-has-own-property","03S":"@stdlib/assert/has-property","03T":"@stdlib/assert-has-property","03U":"@stdlib/assert/has-proxy-support","03V":"@stdlib/assert-has-proxy-support","2Xc":"@stdlib/assert/has-replace-symbol-support","2Xd":"@stdlib/assert-has-replace-symbol-support","2Xe":"@stdlib/assert/has-search-symbol-support","2Xf":"@stdlib/assert-has-search-symbol-support","03W":"@stdlib/assert/has-set-support","03X":"@stdlib/assert-has-set-support","03Y":"@stdlib/assert/has-sharedarraybuffer-support","03Z":"@stdlib/assert-has-sharedarraybuffer-support","2Xg":"@stdlib/assert/has-split-symbol-support","2Xh":"@stdlib/assert-has-split-symbol-support","03a":"@stdlib/assert/has-symbol-support","03b":"@stdlib/assert-has-symbol-support","2Xi":"@stdlib/assert/has-to-primitive-symbol-support","2Xj":"@stdlib/assert-has-to-primitive-symbol-support","03c":"@stdlib/assert/has-tostringtag-support","03d":"@stdlib/assert-has-tostringtag-support","03e":"@stdlib/assert/has-uint16array-support","03f":"@stdlib/assert-has-uint16array-support","03g":"@stdlib/assert/has-uint32array-support","03h":"@stdlib/assert-has-uint32array-support","03i":"@stdlib/assert/has-uint8array-support","03j":"@stdlib/assert-has-uint8array-support","03k":"@stdlib/assert/has-uint8clampedarray-support","03l":"@stdlib/assert-has-uint8clampedarray-support","03m":"@stdlib/assert/has-utf16-surrogate-pair-at","03n":"@stdlib/assert-has-utf16-surrogate-pair-at","03o":"@stdlib/assert/has-wasm-support","03p":"@stdlib/assert-has-wasm-support","03q":"@stdlib/assert/has-weakmap-support","03r":"@stdlib/assert-has-weakmap-support","03s":"@stdlib/assert/has-weakset-support","03t":"@stdlib/assert-has-weakset-support","03u":"@stdlib/assert/instance-of","03v":"@stdlib/assert-instance-of","03w":"@stdlib/assert/is-absolute-http-uri","03x":"@stdlib/assert-is-absolute-http-uri","03y":"@stdlib/assert/is-absolute-path","03z":"@stdlib/assert-is-absolute-path","040":"@stdlib/assert/is-absolute-uri","041":"@stdlib/assert-is-absolute-uri","1Zo":"@stdlib/assert/is-accessor-array","1Zp":"@stdlib/assert-is-accessor-array","042":"@stdlib/assert/is-accessor-property-in","043":"@stdlib/assert-is-accessor-property-in","044":"@stdlib/assert/is-accessor-property","045":"@stdlib/assert-is-accessor-property","2Rg":"@stdlib/assert/is-almost-equal-array","2Rh":"@stdlib/assert-is-almost-equal-array","2Ri":"@stdlib/assert/is-almost-equal-complex128array","2Rj":"@stdlib/assert-is-almost-equal-complex128array","2Rk":"@stdlib/assert/is-almost-equal-complex64array","2Rl":"@stdlib/assert-is-almost-equal-complex64array","2Rm":"@stdlib/assert/is-almost-equal-float32array","2Rn":"@stdlib/assert-is-almost-equal-float32array","2NC":"@stdlib/assert/is-almost-equal-float64array","2ND":"@stdlib/assert-is-almost-equal-float64array","2NE":"@stdlib/assert/is-almost-equal","2NF":"@stdlib/assert-is-almost-equal","2d0":"@stdlib/assert/is-almost-same-array","2d1":"@stdlib/assert-is-almost-same-array","2d2":"@stdlib/assert/is-almost-same-complex128array","2d3":"@stdlib/assert-is-almost-same-complex128array","2d4":"@stdlib/assert/is-almost-same-complex64array","2d5":"@stdlib/assert-is-almost-same-complex64array","2d6":"@stdlib/assert/is-almost-same-float32array","2d7":"@stdlib/assert-is-almost-same-float32array","2d8":"@stdlib/assert/is-almost-same-float64array","2d9":"@stdlib/assert-is-almost-same-float64array","2dA":"@stdlib/assert/is-almost-same-value","2dB":"@stdlib/assert-is-almost-same-value","046":"@stdlib/assert/is-alphagram","047":"@stdlib/assert-is-alphagram","048":"@stdlib/assert/is-alphanumeric","049":"@stdlib/assert-is-alphanumeric","04A":"@stdlib/assert/is-anagram","04B":"@stdlib/assert-is-anagram","04C":"@stdlib/assert/is-arguments","04D":"@stdlib/assert-is-arguments","04E":"@stdlib/assert/is-array-array","04F":"@stdlib/assert-is-array-array","04G":"@stdlib/assert/is-array-length","04H":"@stdlib/assert-is-array-length","04I":"@stdlib/assert/is-array-like-object","04J":"@stdlib/assert-is-array-like-object","04K":"@stdlib/assert/is-array-like","04L":"@stdlib/assert-is-array-like","04M":"@stdlib/assert/is-array","04N":"@stdlib/assert-is-array","04O":"@stdlib/assert/is-arraybuffer-view","04P":"@stdlib/assert-is-arraybuffer-view","04Q":"@stdlib/assert/is-arraybuffer","04R":"@stdlib/assert-is-arraybuffer","04S":"@stdlib/assert/is-arrow-function","04T":"@stdlib/assert-is-arrow-function","04U":"@stdlib/assert/is-ascii","04V":"@stdlib/assert-is-ascii","04W":"@stdlib/assert/is-between-array","04X":"@stdlib/assert-is-between-array","04Y":"@stdlib/assert/is-between","04Z":"@stdlib/assert-is-between","04a":"@stdlib/assert/is-big-endian","04b":"@stdlib/assert-is-big-endian","04c":"@stdlib/assert/is-bigint","04d":"@stdlib/assert-is-bigint","04e":"@stdlib/assert/is-bigint64array","04f":"@stdlib/assert-is-bigint64array","04g":"@stdlib/assert/is-biguint64array","04h":"@stdlib/assert-is-biguint64array","04i":"@stdlib/assert/is-binary-string","04j":"@stdlib/assert-is-binary-string","04k":"@stdlib/assert/is-blank-string","04l":"@stdlib/assert-is-blank-string","04m":"@stdlib/assert/is-boolean-array","04n":"@stdlib/assert-is-boolean-array","04o":"@stdlib/assert/is-boolean","04p":"@stdlib/assert-is-boolean","1vW":"@stdlib/assert/is-booleanarray","1vX":"@stdlib/assert-is-booleanarray","04q":"@stdlib/assert/is-boxed-primitive","04r":"@stdlib/assert-is-boxed-primitive","04s":"@stdlib/assert/is-browser","04t":"@stdlib/assert-is-browser","04u":"@stdlib/assert/is-buffer","04v":"@stdlib/assert-is-buffer","1Zq":"@stdlib/assert/is-camelcase","1Zr":"@stdlib/assert-is-camelcase","04w":"@stdlib/assert/is-capitalized","04x":"@stdlib/assert-is-capitalized","04y":"@stdlib/assert/is-centrosymmetric-matrix","04z":"@stdlib/assert-is-centrosymmetric-matrix","050":"@stdlib/assert/is-circular-array","051":"@stdlib/assert-is-circular-array","052":"@stdlib/assert/is-circular-plain-object","053":"@stdlib/assert-is-circular-plain-object","054":"@stdlib/assert/is-circular","055":"@stdlib/assert-is-circular","056":"@stdlib/assert/is-class","057":"@stdlib/assert-is-class","058":"@stdlib/assert/is-collection","059":"@stdlib/assert-is-collection","05A":"@stdlib/assert/is-complex-like","05B":"@stdlib/assert-is-complex-like","05C":"@stdlib/assert/is-complex-typed-array-like","05D":"@stdlib/assert-is-complex-typed-array-like","05E":"@stdlib/assert/is-complex-typed-array","05F":"@stdlib/assert-is-complex-typed-array","05G":"@stdlib/assert/is-complex","05H":"@stdlib/assert-is-complex","05I":"@stdlib/assert/is-complex128","05J":"@stdlib/assert-is-complex128","05K":"@stdlib/assert/is-complex128array","05L":"@stdlib/assert-is-complex128array","1mU":"@stdlib/assert/is-complex128matrix-like","1mV":"@stdlib/assert-is-complex128matrix-like","1mW":"@stdlib/assert/is-complex128ndarray-like","1mX":"@stdlib/assert-is-complex128ndarray-like","1mY":"@stdlib/assert/is-complex128vector-like","1mZ":"@stdlib/assert-is-complex128vector-like","05M":"@stdlib/assert/is-complex64","05N":"@stdlib/assert-is-complex64","05O":"@stdlib/assert/is-complex64array","05P":"@stdlib/assert-is-complex64array","1ma":"@stdlib/assert/is-complex64matrix-like","1mb":"@stdlib/assert-is-complex64matrix-like","1mc":"@stdlib/assert/is-complex64ndarray-like","1md":"@stdlib/assert-is-complex64ndarray-like","1me":"@stdlib/assert/is-complex64vector-like","1mf":"@stdlib/assert-is-complex64vector-like","05Q":"@stdlib/assert/is-composite","05R":"@stdlib/assert-is-composite","05S":"@stdlib/assert/is-configurable-property-in","05T":"@stdlib/assert-is-configurable-property-in","05U":"@stdlib/assert/is-configurable-property","05V":"@stdlib/assert-is-configurable-property","1Zs":"@stdlib/assert/is-constantcase","1Zt":"@stdlib/assert-is-constantcase","05W":"@stdlib/assert/is-cube-number","05X":"@stdlib/assert-is-cube-number","1Zu":"@stdlib/assert/is-current-year","1Zv":"@stdlib/assert-is-current-year","05Y":"@stdlib/assert/is-darwin","05Z":"@stdlib/assert-is-darwin","05a":"@stdlib/assert/is-data-property-in","05b":"@stdlib/assert-is-data-property-in","05c":"@stdlib/assert/is-data-property","05d":"@stdlib/assert-is-data-property","05e":"@stdlib/assert/is-dataview","05f":"@stdlib/assert-is-dataview","05g":"@stdlib/assert/is-date-object-array","05h":"@stdlib/assert-is-date-object-array","05i":"@stdlib/assert/is-date-object","05j":"@stdlib/assert-is-date-object","05k":"@stdlib/assert/is-digit-string","05l":"@stdlib/assert-is-digit-string","05m":"@stdlib/assert/is-docker","05n":"@stdlib/assert-is-docker","1Zw":"@stdlib/assert/is-domain-name","1Zx":"@stdlib/assert-is-domain-name","1Zy":"@stdlib/assert/is-duration-string","1Zz":"@stdlib/assert-is-duration-string","05o":"@stdlib/assert/is-electron-main","05p":"@stdlib/assert-is-electron-main","05q":"@stdlib/assert/is-electron-renderer","05r":"@stdlib/assert-is-electron-renderer","05s":"@stdlib/assert/is-electron","05t":"@stdlib/assert-is-electron","05u":"@stdlib/assert/is-email-address","05v":"@stdlib/assert-is-email-address","05w":"@stdlib/assert/is-empty-array-like-object","05x":"@stdlib/assert-is-empty-array-like-object","05y":"@stdlib/assert/is-empty-array","05z":"@stdlib/assert-is-empty-array","060":"@stdlib/assert/is-empty-collection","061":"@stdlib/assert-is-empty-collection","062":"@stdlib/assert/is-empty-object","063":"@stdlib/assert-is-empty-object","064":"@stdlib/assert/is-empty-string","065":"@stdlib/assert-is-empty-string","066":"@stdlib/assert/is-enumerable-property-in","067":"@stdlib/assert-is-enumerable-property-in","068":"@stdlib/assert/is-enumerable-property","069":"@stdlib/assert-is-enumerable-property","1zq":"@stdlib/assert/is-equal-array","1zr":"@stdlib/assert-is-equal-array","2HY":"@stdlib/assert/is-equal-booleanarray","2HZ":"@stdlib/assert-is-equal-booleanarray","2Ha":"@stdlib/assert/is-equal-date-object","2Hb":"@stdlib/assert-is-equal-date-object","2Hc":"@stdlib/assert/is-equal-int16array","2Hd":"@stdlib/assert-is-equal-int16array","2He":"@stdlib/assert/is-equal-int32array","2Hf":"@stdlib/assert-is-equal-int32array","2Hg":"@stdlib/assert/is-equal-int8array","2Hh":"@stdlib/assert-is-equal-int8array","2Hi":"@stdlib/assert/is-equal-uint16array","2Hj":"@stdlib/assert-is-equal-uint16array","2Hk":"@stdlib/assert/is-equal-uint32array","2Hl":"@stdlib/assert-is-equal-uint32array","2Hm":"@stdlib/assert/is-equal-uint8array","2Hn":"@stdlib/assert-is-equal-uint8array","2Ho":"@stdlib/assert/is-equal-uint8clampedarray","2Hp":"@stdlib/assert-is-equal-uint8clampedarray","06A":"@stdlib/assert/is-error","06B":"@stdlib/assert-is-error","06C":"@stdlib/assert/is-eval-error","06D":"@stdlib/assert-is-eval-error","06E":"@stdlib/assert/is-even","06F":"@stdlib/assert-is-even","06G":"@stdlib/assert/is-falsy-array","06H":"@stdlib/assert-is-falsy-array","06I":"@stdlib/assert/is-falsy","06J":"@stdlib/assert-is-falsy","06K":"@stdlib/assert/is-finite-array","06L":"@stdlib/assert-is-finite-array","06M":"@stdlib/assert/is-finite","06N":"@stdlib/assert-is-finite","2NG":"@stdlib/assert/is-float16array","2NH":"@stdlib/assert-is-float16array","06O":"@stdlib/assert/is-float32array","06P":"@stdlib/assert-is-float32array","06Q":"@stdlib/assert/is-float32matrix-like","06R":"@stdlib/assert-is-float32matrix-like","06S":"@stdlib/assert/is-float32ndarray-like","06T":"@stdlib/assert-is-float32ndarray-like","06U":"@stdlib/assert/is-float32vector-like","06V":"@stdlib/assert-is-float32vector-like","06W":"@stdlib/assert/is-float64array","06X":"@stdlib/assert-is-float64array","06Y":"@stdlib/assert/is-float64matrix-like","06Z":"@stdlib/assert-is-float64matrix-like","06a":"@stdlib/assert/is-float64ndarray-like","06b":"@stdlib/assert-is-float64ndarray-like","06c":"@stdlib/assert/is-float64vector-like","06d":"@stdlib/assert-is-float64vector-like","06e":"@stdlib/assert/is-function-array","06f":"@stdlib/assert-is-function-array","06g":"@stdlib/assert/is-function","06h":"@stdlib/assert-is-function","06i":"@stdlib/assert/is-generator-object-like","06j":"@stdlib/assert-is-generator-object-like","06k":"@stdlib/assert/is-generator-object","06l":"@stdlib/assert-is-generator-object","06m":"@stdlib/assert/is-gzip-buffer","06n":"@stdlib/assert-is-gzip-buffer","06o":"@stdlib/assert/is-hex-string","06p":"@stdlib/assert-is-hex-string","06q":"@stdlib/assert/is-infinite","06r":"@stdlib/assert-is-infinite","06s":"@stdlib/assert/is-inherited-property","06t":"@stdlib/assert-is-inherited-property","06u":"@stdlib/assert/is-int16array","06v":"@stdlib/assert-is-int16array","06w":"@stdlib/assert/is-int32array","06x":"@stdlib/assert-is-int32array","06y":"@stdlib/assert/is-int8array","06z":"@stdlib/assert-is-int8array","070":"@stdlib/assert/is-integer-array","071":"@stdlib/assert-is-integer-array","072":"@stdlib/assert/is-integer","073":"@stdlib/assert-is-integer","074":"@stdlib/assert/is-iterable-like","075":"@stdlib/assert-is-iterable-like","076":"@stdlib/assert/is-iterator-like","077":"@stdlib/assert-is-iterator-like","078":"@stdlib/assert/is-json","079":"@stdlib/assert-is-json","1a0":"@stdlib/assert/is-kebabcase","1a1":"@stdlib/assert-is-kebabcase","07A":"@stdlib/assert/is-leap-year","07B":"@stdlib/assert-is-leap-year","07C":"@stdlib/assert/is-little-endian","07D":"@stdlib/assert-is-little-endian","07E":"@stdlib/assert/is-localhost","07F":"@stdlib/assert-is-localhost","07G":"@stdlib/assert/is-lowercase","07H":"@stdlib/assert-is-lowercase","07I":"@stdlib/assert/is-matrix-like","07J":"@stdlib/assert-is-matrix-like","07K":"@stdlib/assert/is-method-in","07L":"@stdlib/assert-is-method-in","07M":"@stdlib/assert/is-method","07N":"@stdlib/assert-is-method","07O":"@stdlib/assert/is-mobile","07P":"@stdlib/assert-is-mobile","1ii":"@stdlib/assert/is-multi-slice","1ij":"@stdlib/assert-is-multi-slice","07Q":"@stdlib/assert/is-named-typed-tuple-like","07R":"@stdlib/assert-is-named-typed-tuple-like","07S":"@stdlib/assert/is-nan-array","07T":"@stdlib/assert-is-nan-array","07U":"@stdlib/assert/is-nan","07V":"@stdlib/assert-is-nan","07W":"@stdlib/assert/is-native-function","07X":"@stdlib/assert-is-native-function","2dC":"@stdlib/assert/is-ndarray-descriptor","2dD":"@stdlib/assert-is-ndarray-descriptor","21c":"@stdlib/assert/is-ndarray-like-with-data-type","21d":"@stdlib/assert-is-ndarray-like-with-data-type","07Y":"@stdlib/assert/is-ndarray-like","07Z":"@stdlib/assert-is-ndarray-like","1sG":"@stdlib/assert/is-negative-finite","1sH":"@stdlib/assert-is-negative-finite","07a":"@stdlib/assert/is-negative-integer-array","07b":"@stdlib/assert-is-negative-integer-array","07c":"@stdlib/assert/is-negative-integer","07d":"@stdlib/assert-is-negative-integer","07e":"@stdlib/assert/is-negative-number-array","07f":"@stdlib/assert-is-negative-number-array","07g":"@stdlib/assert/is-negative-number","07h":"@stdlib/assert-is-negative-number","07i":"@stdlib/assert/is-negative-zero","07j":"@stdlib/assert-is-negative-zero","07k":"@stdlib/assert/is-node-builtin","07l":"@stdlib/assert-is-node-builtin","07m":"@stdlib/assert/is-node-duplex-stream-like","07n":"@stdlib/assert-is-node-duplex-stream-like","07o":"@stdlib/assert/is-node-readable-stream-like","07p":"@stdlib/assert-is-node-readable-stream-like","07q":"@stdlib/assert/is-node-repl","07r":"@stdlib/assert-is-node-repl","07s":"@stdlib/assert/is-node-stream-like","07t":"@stdlib/assert-is-node-stream-like","07u":"@stdlib/assert/is-node-transform-stream-like","07v":"@stdlib/assert-is-node-transform-stream-like","07w":"@stdlib/assert/is-node-writable-stream-like","07x":"@stdlib/assert-is-node-writable-stream-like","07y":"@stdlib/assert/is-node","07z":"@stdlib/assert-is-node","080":"@stdlib/assert/is-nonconfigurable-property-in","081":"@stdlib/assert-is-nonconfigurable-property-in","082":"@stdlib/assert/is-nonconfigurable-property","083":"@stdlib/assert-is-nonconfigurable-property","084":"@stdlib/assert/is-nonenumerable-property-in","085":"@stdlib/assert-is-nonenumerable-property-in","086":"@stdlib/assert/is-nonenumerable-property","087":"@stdlib/assert-is-nonenumerable-property","1sI":"@stdlib/assert/is-nonnegative-finite","1sJ":"@stdlib/assert-is-nonnegative-finite","088":"@stdlib/assert/is-nonnegative-integer-array","089":"@stdlib/assert-is-nonnegative-integer-array","08A":"@stdlib/assert/is-nonnegative-integer","08B":"@stdlib/assert-is-nonnegative-integer","08C":"@stdlib/assert/is-nonnegative-number-array","08D":"@stdlib/assert-is-nonnegative-number-array","08E":"@stdlib/assert/is-nonnegative-number","08F":"@stdlib/assert-is-nonnegative-number","1sU":"@stdlib/assert/is-nonpositive-finite","1sV":"@stdlib/assert-is-nonpositive-finite","08G":"@stdlib/assert/is-nonpositive-integer-array","08H":"@stdlib/assert-is-nonpositive-integer-array","08I":"@stdlib/assert/is-nonpositive-integer","08J":"@stdlib/assert-is-nonpositive-integer","08K":"@stdlib/assert/is-nonpositive-number-array","08L":"@stdlib/assert-is-nonpositive-number-array","08M":"@stdlib/assert/is-nonpositive-number","08N":"@stdlib/assert-is-nonpositive-number","08O":"@stdlib/assert/is-nonsymmetric-matrix","08P":"@stdlib/assert-is-nonsymmetric-matrix","08Q":"@stdlib/assert/is-null-array","08R":"@stdlib/assert-is-null-array","08S":"@stdlib/assert/is-null","08T":"@stdlib/assert-is-null","08U":"@stdlib/assert/is-number-array","08V":"@stdlib/assert-is-number-array","08W":"@stdlib/assert/is-number","08X":"@stdlib/assert-is-number","08Y":"@stdlib/assert/is-numeric-array","08Z":"@stdlib/assert-is-numeric-array","08a":"@stdlib/assert/is-object-array","08b":"@stdlib/assert-is-object-array","08c":"@stdlib/assert/is-object-like","08d":"@stdlib/assert-is-object-like","08e":"@stdlib/assert/is-object","08f":"@stdlib/assert-is-object","08g":"@stdlib/assert/is-odd","08h":"@stdlib/assert-is-odd","1a2":"@stdlib/assert/is-pascalcase","1a3":"@stdlib/assert-is-pascalcase","08i":"@stdlib/assert/is-persymmetric-matrix","08j":"@stdlib/assert-is-persymmetric-matrix","08k":"@stdlib/assert/is-plain-object-array","08l":"@stdlib/assert-is-plain-object-array","08m":"@stdlib/assert/is-plain-object","08n":"@stdlib/assert-is-plain-object","1sK":"@stdlib/assert/is-positive-finite","1sL":"@stdlib/assert-is-positive-finite","08o":"@stdlib/assert/is-positive-integer-array","08p":"@stdlib/assert-is-positive-integer-array","08q":"@stdlib/assert/is-positive-integer","08r":"@stdlib/assert-is-positive-integer","08s":"@stdlib/assert/is-positive-number-array","08t":"@stdlib/assert-is-positive-number-array","08u":"@stdlib/assert/is-positive-number","08v":"@stdlib/assert-is-positive-number","08w":"@stdlib/assert/is-positive-zero","08x":"@stdlib/assert-is-positive-zero","08y":"@stdlib/assert/is-prime","08z":"@stdlib/assert-is-prime","090":"@stdlib/assert/is-primitive-array","091":"@stdlib/assert-is-primitive-array","092":"@stdlib/assert/is-primitive","093":"@stdlib/assert-is-primitive","094":"@stdlib/assert/is-prng-like","095":"@stdlib/assert-is-prng-like","096":"@stdlib/assert/is-probability-array","097":"@stdlib/assert-is-probability-array","098":"@stdlib/assert/is-probability","099":"@stdlib/assert-is-probability","09A":"@stdlib/assert/is-property-key","09B":"@stdlib/assert-is-property-key","09C":"@stdlib/assert/is-prototype-of","09D":"@stdlib/assert-is-prototype-of","1sW":"@stdlib/assert/is-ragged-nested-array","1sX":"@stdlib/assert-is-ragged-nested-array","09E":"@stdlib/assert/is-range-error","09F":"@stdlib/assert-is-range-error","09G":"@stdlib/assert/is-read-only-property-in","09H":"@stdlib/assert-is-read-only-property-in","09I":"@stdlib/assert/is-read-only-property","09J":"@stdlib/assert-is-read-only-property","09K":"@stdlib/assert/is-read-write-property-in","09L":"@stdlib/assert-is-read-write-property-in","09M":"@stdlib/assert/is-read-write-property","09N":"@stdlib/assert-is-read-write-property","09O":"@stdlib/assert/is-readable-property-in","09P":"@stdlib/assert-is-readable-property-in","09Q":"@stdlib/assert/is-readable-property","09R":"@stdlib/assert-is-readable-property","09S":"@stdlib/assert/is-reference-error","09T":"@stdlib/assert-is-reference-error","09U":"@stdlib/assert/is-regexp-string","09V":"@stdlib/assert-is-regexp-string","09W":"@stdlib/assert/is-regexp","09X":"@stdlib/assert-is-regexp","09Y":"@stdlib/assert/is-relative-path","09Z":"@stdlib/assert-is-relative-path","09a":"@stdlib/assert/is-relative-uri","09b":"@stdlib/assert-is-relative-uri","09c":"@stdlib/assert/is-safe-integer-array","09d":"@stdlib/assert-is-safe-integer-array","09e":"@stdlib/assert/is-safe-integer","09f":"@stdlib/assert-is-safe-integer","1zs":"@stdlib/assert/is-same-accessor-array","1zt":"@stdlib/assert-is-same-accessor-array","1zu":"@stdlib/assert/is-same-array-like-object","1zv":"@stdlib/assert-is-same-array-like-object","1zw":"@stdlib/assert/is-same-array-like","1zx":"@stdlib/assert-is-same-array-like","1pK":"@stdlib/assert/is-same-array","1pL":"@stdlib/assert-is-same-array","1pM":"@stdlib/assert/is-same-complex128","1pN":"@stdlib/assert-is-same-complex128","1pO":"@stdlib/assert/is-same-complex128array","1pP":"@stdlib/assert-is-same-complex128array","1pQ":"@stdlib/assert/is-same-complex64","1pR":"@stdlib/assert-is-same-complex64","1pS":"@stdlib/assert/is-same-complex64array","1pT":"@stdlib/assert-is-same-complex64array","1pU":"@stdlib/assert/is-same-float32array","1pV":"@stdlib/assert-is-same-float32array","1pW":"@stdlib/assert/is-same-float64array","1pX":"@stdlib/assert-is-same-float64array","09g":"@stdlib/assert/is-same-native-class","09h":"@stdlib/assert-is-same-native-class","09i":"@stdlib/assert/is-same-type","09j":"@stdlib/assert-is-same-type","22I":"@stdlib/assert/is-same-typed-array-like","22J":"@stdlib/assert-is-same-typed-array-like","09k":"@stdlib/assert/is-same-value-zero","09l":"@stdlib/assert-is-same-value-zero","09m":"@stdlib/assert/is-same-value","09n":"@stdlib/assert-is-same-value","1a4":"@stdlib/assert/is-semver","1a5":"@stdlib/assert-is-semver","09o":"@stdlib/assert/is-sharedarraybuffer","09p":"@stdlib/assert-is-sharedarraybuffer","09q":"@stdlib/assert/is-skew-centrosymmetric-matrix","09r":"@stdlib/assert-is-skew-centrosymmetric-matrix","09s":"@stdlib/assert/is-skew-persymmetric-matrix","09t":"@stdlib/assert-is-skew-persymmetric-matrix","09u":"@stdlib/assert/is-skew-symmetric-matrix","09v":"@stdlib/assert-is-skew-symmetric-matrix","1ik":"@stdlib/assert/is-slice","1il":"@stdlib/assert-is-slice","1a6":"@stdlib/assert/is-snakecase","1a7":"@stdlib/assert-is-snakecase","09w":"@stdlib/assert/is-square-matrix","09x":"@stdlib/assert-is-square-matrix","09y":"@stdlib/assert/is-square-number","09z":"@stdlib/assert-is-square-number","0A0":"@stdlib/assert/is-square-triangular-number","0A1":"@stdlib/assert-is-square-triangular-number","1a8":"@stdlib/assert/is-startcase","1a9":"@stdlib/assert-is-startcase","0A2":"@stdlib/assert/is-strict-equal","0A3":"@stdlib/assert-is-strict-equal","0A4":"@stdlib/assert/is-string-array","0A5":"@stdlib/assert-is-string-array","0A6":"@stdlib/assert/is-string","0A7":"@stdlib/assert-is-string","2NI":"@stdlib/assert/is-struct-constructor-like","2NJ":"@stdlib/assert-is-struct-constructor-like","2NK":"@stdlib/assert/is-struct","2NL":"@stdlib/assert-is-struct","0A8":"@stdlib/assert/is-symbol-array","0A9":"@stdlib/assert-is-symbol-array","0AA":"@stdlib/assert/is-symbol","0AB":"@stdlib/assert-is-symbol","0AC":"@stdlib/assert/is-symmetric-matrix","0AD":"@stdlib/assert-is-symmetric-matrix","0AE":"@stdlib/assert/is-syntax-error","0AF":"@stdlib/assert-is-syntax-error","0AG":"@stdlib/assert/is-touch-device","0AH":"@stdlib/assert-is-touch-device","0AI":"@stdlib/assert/is-triangular-number","0AJ":"@stdlib/assert-is-triangular-number","0AK":"@stdlib/assert/is-truthy-array","0AL":"@stdlib/assert-is-truthy-array","0AM":"@stdlib/assert/is-truthy","0AN":"@stdlib/assert-is-truthy","0AO":"@stdlib/assert/is-type-error","0AP":"@stdlib/assert-is-type-error","0AQ":"@stdlib/assert/is-typed-array-length","0AR":"@stdlib/assert-is-typed-array-length","0AS":"@stdlib/assert/is-typed-array-like","0AT":"@stdlib/assert-is-typed-array-like","0AU":"@stdlib/assert/is-typed-array","0AV":"@stdlib/assert-is-typed-array","0AW":"@stdlib/assert/is-uint16array","0AX":"@stdlib/assert-is-uint16array","0AY":"@stdlib/assert/is-uint32array","0AZ":"@stdlib/assert-is-uint32array","0Aa":"@stdlib/assert/is-uint8array","0Ab":"@stdlib/assert-is-uint8array","0Ac":"@stdlib/assert/is-uint8clampedarray","0Ad":"@stdlib/assert-is-uint8clampedarray","0Ae":"@stdlib/assert/is-unc-path","0Af":"@stdlib/assert-is-unc-path","0Ag":"@stdlib/assert/is-undefined-or-null","0Ah":"@stdlib/assert-is-undefined-or-null","0Ai":"@stdlib/assert/is-undefined","0Aj":"@stdlib/assert-is-undefined","0Ak":"@stdlib/assert/is-unity-probability-array","0Al":"@stdlib/assert-is-unity-probability-array","0Am":"@stdlib/assert/is-uppercase","0An":"@stdlib/assert-is-uppercase","0Ao":"@stdlib/assert/is-uri-error","0Ap":"@stdlib/assert-is-uri-error","0Aq":"@stdlib/assert/is-uri","0Ar":"@stdlib/assert-is-uri","0As":"@stdlib/assert/is-vector-like","0At":"@stdlib/assert-is-vector-like","1zy":"@stdlib/assert/is-wasm-memory","1zz":"@stdlib/assert-is-wasm-memory","0Au":"@stdlib/assert/is-web-worker","0Av":"@stdlib/assert-is-web-worker","1sY":"@stdlib/assert/is-well-formed-string","1sZ":"@stdlib/assert-is-well-formed-string","0Aw":"@stdlib/assert/is-whitespace","0Ax":"@stdlib/assert-is-whitespace","0Ay":"@stdlib/assert/is-windows","0Az":"@stdlib/assert-is-windows","0B0":"@stdlib/assert/is-writable-property-in","0B1":"@stdlib/assert-is-writable-property-in","0B2":"@stdlib/assert/is-writable-property","0B3":"@stdlib/assert-is-writable-property","0B4":"@stdlib/assert/is-write-only-property-in","0B5":"@stdlib/assert-is-write-only-property-in","0B6":"@stdlib/assert/is-write-only-property","0B7":"@stdlib/assert-is-write-only-property","1aA":"@stdlib/assert/napi/equal-typedarray-types","1aB":"@stdlib/assert-napi-equal-typedarray-types","1aC":"@stdlib/assert/napi/equal-types","1aD":"@stdlib/assert-napi-equal-types","1uS":"@stdlib/assert/napi/has-property","1uT":"@stdlib/assert-napi-has-property","2KG":"@stdlib/assert/napi/is-dataview","2KH":"@stdlib/assert-napi-is-dataview","1aE":"@stdlib/assert/napi/is-type","1aF":"@stdlib/assert-napi-is-type","1aG":"@stdlib/assert/napi/is-typedarray","1aH":"@stdlib/assert-napi-is-typedarray","1aI":"@stdlib/assert/napi","1aJ":"@stdlib/assert-napi","1aK":"@stdlib/assert/napi/status-ok","1aL":"@stdlib/assert-napi-status-ok","0B9":"@stdlib/assert","0BA":"@stdlib/assert/tools/array-function","0BB":"@stdlib/assert-tools-array-function","0BC":"@stdlib/assert/tools/array-like-function","0BD":"@stdlib/assert-tools-array-like-function","0BE":"@stdlib/assert/tools","0BF":"@stdlib/assert-tools","0BG":"@stdlib/assert/tools/typed-array-function","0BH":"@stdlib/assert-tools-typed-array-function","0BI":"@stdlib/bench/harness","0BJ":"@stdlib/bench-harness","0BL":"@stdlib/bench","0BM":"@stdlib/bigint/ctor","0BN":"@stdlib/bigint-ctor","0BP":"@stdlib/bigint","1wU":"@stdlib/blas/base/assert/is-diagonal-type","1wV":"@stdlib/blas-base-assert-is-diagonal-type","1vY":"@stdlib/blas/base/assert/is-layout","1vZ":"@stdlib/blas-base-assert-is-layout","2NM":"@stdlib/blas/base/assert/is-matrix-orientation","2NN":"@stdlib/blas-base-assert-is-matrix-orientation","1va":"@stdlib/blas/base/assert/is-matrix-triangle","1vb":"@stdlib/blas-base-assert-is-matrix-triangle","1wW":"@stdlib/blas/base/assert/is-operation-side","1wX":"@stdlib/blas-base-assert-is-operation-side","1vc":"@stdlib/blas/base/assert/is-transpose-operation","1vd":"@stdlib/blas-base-assert-is-transpose-operation","1ve":"@stdlib/blas/base/assert","1vf":"@stdlib/blas-base-assert","1xo":"@stdlib/blas/base/caxpy","1xp":"@stdlib/blas-base-caxpy","0BQ":"@stdlib/blas/base/ccopy","0BR":"@stdlib/blas-base-ccopy","2dE":"@stdlib/blas/base/cgemv","2dF":"@stdlib/blas-base-cgemv","1vg":"@stdlib/blas/base/cscal","1vh":"@stdlib/blas-base-cscal","1xY":"@stdlib/blas/base/csrot","1xZ":"@stdlib/blas-base-csrot","2Hq":"@stdlib/blas/base/csscal","2Hr":"@stdlib/blas-base-csscal","0BS":"@stdlib/blas/base/cswap","0BT":"@stdlib/blas-base-cswap","0BU":"@stdlib/blas/base/dasum","0BV":"@stdlib/blas-base-dasum","0BW":"@stdlib/blas/base/daxpy","0BX":"@stdlib/blas-base-daxpy","1vi":"@stdlib/blas/base/dcabs1","1vj":"@stdlib/blas-base-dcabs1","0BY":"@stdlib/blas/base/dcopy","0BZ":"@stdlib/blas-base-dcopy","0Ba":"@stdlib/blas/base/ddot","0Bb":"@stdlib/blas-base-ddot","1z2":"@stdlib/blas/base/dgemm","1z3":"@stdlib/blas-base-dgemm","1yY":"@stdlib/blas/base/dgemv","1yZ":"@stdlib/blas-base-dgemv","1uU":"@stdlib/blas/base/dger","1uV":"@stdlib/blas-base-dger","1wy":"@stdlib/blas/base/diagonal-type-enum2str","1wz":"@stdlib/blas-base-diagonal-type-enum2str","1x0":"@stdlib/blas/base/diagonal-type-resolve-enum","1x1":"@stdlib/blas-base-diagonal-type-resolve-enum","1x2":"@stdlib/blas/base/diagonal-type-resolve-str","1x3":"@stdlib/blas-base-diagonal-type-resolve-str","1x4":"@stdlib/blas/base/diagonal-type-str2enum","1x5":"@stdlib/blas-base-diagonal-type-str2enum","1vk":"@stdlib/blas/base/diagonal-types","1vl":"@stdlib/blas-base-diagonal-types","0Bc":"@stdlib/blas/base/dnrm2","0Bd":"@stdlib/blas-base-dnrm2","1uW":"@stdlib/blas/base/drot","1uX":"@stdlib/blas-base-drot","1aM":"@stdlib/blas/base/drotg","1aN":"@stdlib/blas-base-drotg","1x6":"@stdlib/blas/base/drotm","1x7":"@stdlib/blas-base-drotm","0Be":"@stdlib/blas/base/dscal","0Bf":"@stdlib/blas-base-dscal","0Bg":"@stdlib/blas/base/dsdot","0Bh":"@stdlib/blas-base-dsdot","1x8":"@stdlib/blas/base/dspmv","1x9":"@stdlib/blas-base-dspmv","0Bi":"@stdlib/blas/base/dswap","0Bj":"@stdlib/blas-base-dswap","1xA":"@stdlib/blas/base/dsymv","1xB":"@stdlib/blas-base-dsymv","1ya":"@stdlib/blas/base/dsyr","1yb":"@stdlib/blas-base-dsyr","1yc":"@stdlib/blas/base/dsyr2","1yd":"@stdlib/blas-base-dsyr2","1ye":"@stdlib/blas/base/dtrmv","1yf":"@stdlib/blas-base-dtrmv","1z4":"@stdlib/blas/base/dtrsv","1z5":"@stdlib/blas-base-dtrsv","2dG":"@stdlib/blas/base/dzasum","2dH":"@stdlib/blas-base-dzasum","1xa":"@stdlib/blas/base/dznrm2","1xb":"@stdlib/blas-base-dznrm2","0Bk":"@stdlib/blas/base/gasum","0Bl":"@stdlib/blas-base-gasum","0Bm":"@stdlib/blas/base/gaxpy","0Bn":"@stdlib/blas-base-gaxpy","0Bo":"@stdlib/blas/base/gcopy","0Bp":"@stdlib/blas-base-gcopy","0Bq":"@stdlib/blas/base/gdot","0Br":"@stdlib/blas-base-gdot","2Sm":"@stdlib/blas/base/ggemm","2Sn":"@stdlib/blas-base-ggemm","2So":"@stdlib/blas/base/ggemv","2Sp":"@stdlib/blas-base-ggemv","2NO":"@stdlib/blas/base/gger","2NP":"@stdlib/blas-base-gger","0Bs":"@stdlib/blas/base/gnrm2","0Bt":"@stdlib/blas-base-gnrm2","0Bu":"@stdlib/blas/base/gscal","0Bv":"@stdlib/blas-base-gscal","0Bw":"@stdlib/blas/base/gswap","0Bx":"@stdlib/blas-base-gswap","2Sq":"@stdlib/blas/base/gsyr","2Sr":"@stdlib/blas-base-gsyr","1uY":"@stdlib/blas/base/idamax","1uZ":"@stdlib/blas-base-idamax","2NQ":"@stdlib/blas/base/igamax","2NR":"@stdlib/blas-base-igamax","1ua":"@stdlib/blas/base/isamax","1ub":"@stdlib/blas-base-isamax","1vm":"@stdlib/blas/base/layout-enum2str","1vn":"@stdlib/blas-base-layout-enum2str","1vo":"@stdlib/blas/base/layout-resolve-enum","1vp":"@stdlib/blas-base-layout-resolve-enum","1vq":"@stdlib/blas/base/layout-resolve-str","1vr":"@stdlib/blas-base-layout-resolve-str","1vs":"@stdlib/blas/base/layout-str2enum","1vt":"@stdlib/blas-base-layout-str2enum","1vu":"@stdlib/blas/base/layouts","1vv":"@stdlib/blas-base-layouts","2NS":"@stdlib/blas/base/matrix-orientation-enum2str","2NT":"@stdlib/blas-base-matrix-orientation-enum2str","2NU":"@stdlib/blas/base/matrix-orientation-resolve-enum","2NV":"@stdlib/blas-base-matrix-orientation-resolve-enum","2NW":"@stdlib/blas/base/matrix-orientation-resolve-str","2NX":"@stdlib/blas-base-matrix-orientation-resolve-str","2NY":"@stdlib/blas/base/matrix-orientation-str2enum","2NZ":"@stdlib/blas-base-matrix-orientation-str2enum","2Na":"@stdlib/blas/base/matrix-orientations","2Nb":"@stdlib/blas-base-matrix-orientations","1xC":"@stdlib/blas/base/matrix-triangle-enum2str","1xD":"@stdlib/blas-base-matrix-triangle-enum2str","1xE":"@stdlib/blas/base/matrix-triangle-resolve-enum","1xF":"@stdlib/blas-base-matrix-triangle-resolve-enum","1xG":"@stdlib/blas/base/matrix-triangle-resolve-str","1xH":"@stdlib/blas-base-matrix-triangle-resolve-str","1xI":"@stdlib/blas/base/matrix-triangle-str2enum","1xJ":"@stdlib/blas-base-matrix-triangle-str2enum","1vw":"@stdlib/blas/base/matrix-triangles","1vx":"@stdlib/blas-base-matrix-triangles","2dI":"@stdlib/blas/base/ndarray/caxpy","2dJ":"@stdlib/blas-base-ndarray-caxpy","2dK":"@stdlib/blas/base/ndarray/ccopy","2dL":"@stdlib/blas-base-ndarray-ccopy","2dM":"@stdlib/blas/base/ndarray/cscal","2dN":"@stdlib/blas-base-ndarray-cscal","2dO":"@stdlib/blas/base/ndarray/csscal","2dP":"@stdlib/blas-base-ndarray-csscal","2dQ":"@stdlib/blas/base/ndarray/cswap","2dR":"@stdlib/blas-base-ndarray-cswap","2dS":"@stdlib/blas/base/ndarray/dasum","2dT":"@stdlib/blas-base-ndarray-dasum","2dU":"@stdlib/blas/base/ndarray/daxpy","2dV":"@stdlib/blas-base-ndarray-daxpy","2dW":"@stdlib/blas/base/ndarray/dcopy","2dX":"@stdlib/blas-base-ndarray-dcopy","2Ss":"@stdlib/blas/base/ndarray/ddot","2St":"@stdlib/blas-base-ndarray-ddot","2dY":"@stdlib/blas/base/ndarray/dnrm2","2dZ":"@stdlib/blas-base-ndarray-dnrm2","2da":"@stdlib/blas/base/ndarray/dscal","2db":"@stdlib/blas-base-ndarray-dscal","2dc":"@stdlib/blas/base/ndarray/dsdot","2dd":"@stdlib/blas-base-ndarray-dsdot","2de":"@stdlib/blas/base/ndarray/dswap","2df":"@stdlib/blas-base-ndarray-dswap","2dg":"@stdlib/blas/base/ndarray/dzasum","2dh":"@stdlib/blas-base-ndarray-dzasum","2di":"@stdlib/blas/base/ndarray/dznrm2","2dj":"@stdlib/blas-base-ndarray-dznrm2","2dk":"@stdlib/blas/base/ndarray/gasum","2dl":"@stdlib/blas-base-ndarray-gasum","2dm":"@stdlib/blas/base/ndarray/gaxpy","2dn":"@stdlib/blas-base-ndarray-gaxpy","2do":"@stdlib/blas/base/ndarray/gcopy","2dp":"@stdlib/blas-base-ndarray-gcopy","2Su":"@stdlib/blas/base/ndarray/gdot","2Sv":"@stdlib/blas-base-ndarray-gdot","2dq":"@stdlib/blas/base/ndarray/gnrm2","2dr":"@stdlib/blas-base-ndarray-gnrm2","2ds":"@stdlib/blas/base/ndarray/gscal","2dt":"@stdlib/blas-base-ndarray-gscal","2du":"@stdlib/blas/base/ndarray/gswap","2dv":"@stdlib/blas-base-ndarray-gswap","2dw":"@stdlib/blas/base/ndarray/idamax","2dx":"@stdlib/blas-base-ndarray-idamax","2dy":"@stdlib/blas/base/ndarray","2dz":"@stdlib/blas-base-ndarray","2e0":"@stdlib/blas/base/ndarray/sasum","2e1":"@stdlib/blas-base-ndarray-sasum","2e2":"@stdlib/blas/base/ndarray/saxpy","2e3":"@stdlib/blas-base-ndarray-saxpy","2e4":"@stdlib/blas/base/ndarray/scasum","2e5":"@stdlib/blas-base-ndarray-scasum","2e6":"@stdlib/blas/base/ndarray/scnrm2","2e7":"@stdlib/blas-base-ndarray-scnrm2","2e8":"@stdlib/blas/base/ndarray/scopy","2e9":"@stdlib/blas-base-ndarray-scopy","2Sw":"@stdlib/blas/base/ndarray/sdot","2Sx":"@stdlib/blas-base-ndarray-sdot","2eA":"@stdlib/blas/base/ndarray/sdsdot","2eB":"@stdlib/blas-base-ndarray-sdsdot","2eC":"@stdlib/blas/base/ndarray/snrm2","2eD":"@stdlib/blas-base-ndarray-snrm2","2eE":"@stdlib/blas/base/ndarray/sscal","2eF":"@stdlib/blas-base-ndarray-sscal","2eG":"@stdlib/blas/base/ndarray/sswap","2eH":"@stdlib/blas-base-ndarray-sswap","2eI":"@stdlib/blas/base/ndarray/zaxpy","2eJ":"@stdlib/blas-base-ndarray-zaxpy","2eK":"@stdlib/blas/base/ndarray/zcopy","2eL":"@stdlib/blas-base-ndarray-zcopy","2eM":"@stdlib/blas/base/ndarray/zdscal","2eN":"@stdlib/blas-base-ndarray-zdscal","2eO":"@stdlib/blas/base/ndarray/zscal","2eP":"@stdlib/blas-base-ndarray-zscal","2eQ":"@stdlib/blas/base/ndarray/zswap","2eR":"@stdlib/blas-base-ndarray-zswap","1xK":"@stdlib/blas/base/operation-side-enum2str","1xL":"@stdlib/blas-base-operation-side-enum2str","1xM":"@stdlib/blas/base/operation-side-resolve-enum","1xN":"@stdlib/blas-base-operation-side-resolve-enum","1xO":"@stdlib/blas/base/operation-side-resolve-str","1xP":"@stdlib/blas-base-operation-side-resolve-str","1xQ":"@stdlib/blas/base/operation-side-str2enum","1xR":"@stdlib/blas-base-operation-side-str2enum","1vy":"@stdlib/blas/base/operation-sides","1vz":"@stdlib/blas-base-operation-sides","0By":"@stdlib/blas/base","0Bz":"@stdlib/blas-base","0C0":"@stdlib/blas/base/sasum","0C1":"@stdlib/blas-base-sasum","0C2":"@stdlib/blas/base/saxpy","0C3":"@stdlib/blas-base-saxpy","1w0":"@stdlib/blas/base/scabs1","1w1":"@stdlib/blas-base-scabs1","1xq":"@stdlib/blas/base/scasum","1xr":"@stdlib/blas-base-scasum","1wY":"@stdlib/blas/base/scnrm2","1wZ":"@stdlib/blas-base-scnrm2","0C4":"@stdlib/blas/base/scopy","0C5":"@stdlib/blas-base-scopy","0C6":"@stdlib/blas/base/sdot","0C7":"@stdlib/blas-base-sdot","0C8":"@stdlib/blas/base/sdsdot","0C9":"@stdlib/blas-base-sdsdot","1z6":"@stdlib/blas/base/sgemm","1z7":"@stdlib/blas-base-sgemm","1yg":"@stdlib/blas/base/sgemv","1yh":"@stdlib/blas-base-sgemv","2Nc":"@stdlib/blas/base/sger","2Nd":"@stdlib/blas-base-sger","1uc":"@stdlib/blas/base/shared","1ud":"@stdlib/blas-base-shared","0CA":"@stdlib/blas/base/snrm2","0CB":"@stdlib/blas-base-snrm2","1ue":"@stdlib/blas/base/srot","1uf":"@stdlib/blas-base-srot","1aO":"@stdlib/blas/base/srotg","1aP":"@stdlib/blas-base-srotg","1wa":"@stdlib/blas/base/srotm","1wb":"@stdlib/blas-base-srotm","0CC":"@stdlib/blas/base/sscal","0CD":"@stdlib/blas-base-sscal","1wc":"@stdlib/blas/base/sspmv","1wd":"@stdlib/blas-base-sspmv","1z8":"@stdlib/blas/base/sspr","1z9":"@stdlib/blas-base-sspr","0CE":"@stdlib/blas/base/sswap","0CF":"@stdlib/blas-base-sswap","1we":"@stdlib/blas/base/ssymv","1wf":"@stdlib/blas-base-ssymv","1yi":"@stdlib/blas/base/ssyr","1yj":"@stdlib/blas-base-ssyr","1yk":"@stdlib/blas/base/ssyr2","1yl":"@stdlib/blas-base-ssyr2","1ym":"@stdlib/blas/base/strmv","1yn":"@stdlib/blas-base-strmv","1zA":"@stdlib/blas/base/strsv","1zB":"@stdlib/blas-base-strsv","1wg":"@stdlib/blas/base/transpose-operation-enum2str","1wh":"@stdlib/blas-base-transpose-operation-enum2str","1wi":"@stdlib/blas/base/transpose-operation-resolve-enum","1wj":"@stdlib/blas-base-transpose-operation-resolve-enum","1wk":"@stdlib/blas/base/transpose-operation-resolve-str","1wl":"@stdlib/blas-base-transpose-operation-resolve-str","1wm":"@stdlib/blas/base/transpose-operation-str2enum","1wn":"@stdlib/blas-base-transpose-operation-str2enum","1w2":"@stdlib/blas/base/transpose-operations","1w3":"@stdlib/blas-base-transpose-operations","26M":"@stdlib/blas/base/wasm/ccopy","26N":"@stdlib/blas-base-wasm-ccopy","26O":"@stdlib/blas/base/wasm/cscal","26P":"@stdlib/blas-base-wasm-cscal","26Q":"@stdlib/blas/base/wasm/csrot","26R":"@stdlib/blas-base-wasm-csrot","26S":"@stdlib/blas/base/wasm/cswap","26T":"@stdlib/blas-base-wasm-cswap","26U":"@stdlib/blas/base/wasm/dasum","26V":"@stdlib/blas-base-wasm-dasum","26W":"@stdlib/blas/base/wasm/daxpy","26X":"@stdlib/blas-base-wasm-daxpy","26Y":"@stdlib/blas/base/wasm/dcopy","26Z":"@stdlib/blas-base-wasm-dcopy","26a":"@stdlib/blas/base/wasm/ddot","26b":"@stdlib/blas-base-wasm-ddot","26c":"@stdlib/blas/base/wasm/dnrm2","26d":"@stdlib/blas-base-wasm-dnrm2","26e":"@stdlib/blas/base/wasm/drot","26f":"@stdlib/blas-base-wasm-drot","26g":"@stdlib/blas/base/wasm/drotm","26h":"@stdlib/blas-base-wasm-drotm","26i":"@stdlib/blas/base/wasm/dscal","26j":"@stdlib/blas-base-wasm-dscal","2FC":"@stdlib/blas/base/wasm/dsdot","2FD":"@stdlib/blas-base-wasm-dsdot","26k":"@stdlib/blas/base/wasm/dswap","26l":"@stdlib/blas-base-wasm-dswap","2Ne":"@stdlib/blas/base/wasm/dznrm2","2Nf":"@stdlib/blas-base-wasm-dznrm2","26m":"@stdlib/blas/base/wasm/idamax","26n":"@stdlib/blas-base-wasm-idamax","26o":"@stdlib/blas/base/wasm/isamax","26p":"@stdlib/blas-base-wasm-isamax","26q":"@stdlib/blas/base/wasm","26r":"@stdlib/blas-base-wasm","26s":"@stdlib/blas/base/wasm/sasum","26t":"@stdlib/blas-base-wasm-sasum","26u":"@stdlib/blas/base/wasm/saxpy","26v":"@stdlib/blas-base-wasm-saxpy","2Ng":"@stdlib/blas/base/wasm/scasum","2Nh":"@stdlib/blas-base-wasm-scasum","2Ni":"@stdlib/blas/base/wasm/scnrm2","2Nj":"@stdlib/blas-base-wasm-scnrm2","26w":"@stdlib/blas/base/wasm/scopy","26x":"@stdlib/blas-base-wasm-scopy","26y":"@stdlib/blas/base/wasm/sdot","26z":"@stdlib/blas-base-wasm-sdot","2GA":"@stdlib/blas/base/wasm/sdsdot","2GB":"@stdlib/blas-base-wasm-sdsdot","29c":"@stdlib/blas/base/wasm/srotm","29d":"@stdlib/blas-base-wasm-srotm","2Em":"@stdlib/blas/base/wasm/sswap","2En":"@stdlib/blas-base-wasm-sswap","2VI":"@stdlib/blas/base/wasm/zscal","2VJ":"@stdlib/blas-base-wasm-zscal","27A":"@stdlib/blas/base/wasm/zswap","27B":"@stdlib/blas-base-wasm-zswap","1ug":"@stdlib/blas/base/xerbla","1uh":"@stdlib/blas-base-xerbla","1xc":"@stdlib/blas/base/zaxpy","1xd":"@stdlib/blas-base-zaxpy","1t6":"@stdlib/blas/base/zcopy","1t7":"@stdlib/blas-base-zcopy","1xe":"@stdlib/blas/base/zdrot","1xf":"@stdlib/blas-base-zdrot","1wo":"@stdlib/blas/base/zscal","1wp":"@stdlib/blas-base-zscal","1t8":"@stdlib/blas/base/zswap","1t9":"@stdlib/blas-base-zswap","0CG":"@stdlib/blas/ddot","0CH":"@stdlib/blas-ddot","0CI":"@stdlib/blas/dswap","0CJ":"@stdlib/blas-dswap","2eS":"@stdlib/blas/ext/base/capx","2eT":"@stdlib/blas-ext-base-capx","2eU":"@stdlib/blas/ext/base/caxpb","2eV":"@stdlib/blas-ext-base-caxpb","2eW":"@stdlib/blas/ext/base/cindex-of-column","2eX":"@stdlib/blas-ext-base-cindex-of-column","2eY":"@stdlib/blas/ext/base/cindex-of-row","2eZ":"@stdlib/blas-ext-base-cindex-of-row","2ea":"@stdlib/blas/ext/base/cindex-of","2eb":"@stdlib/blas-ext-base-cindex-of","2ec":"@stdlib/blas/ext/base/clast-index-of-row","2ed":"@stdlib/blas-ext-base-clast-index-of-row","2ee":"@stdlib/blas/ext/base/cone-to","2ef":"@stdlib/blas-ext-base-cone-to","2Hs":"@stdlib/blas/ext/base/csum","2Ht":"@stdlib/blas-ext-base-csum","2Hu":"@stdlib/blas/ext/base/csumkbn","2Hv":"@stdlib/blas-ext-base-csumkbn","2eg":"@stdlib/blas/ext/base/cunitspace","2eh":"@stdlib/blas-ext-base-cunitspace","2ei":"@stdlib/blas/ext/base/cwhere","2ej":"@stdlib/blas-ext-base-cwhere","2ek":"@stdlib/blas/ext/base/cxsa","2el":"@stdlib/blas-ext-base-cxsa","2em":"@stdlib/blas/ext/base/czero-to","2en":"@stdlib/blas-ext-base-czero-to","0CK":"@stdlib/blas/ext/base/dapx","0CL":"@stdlib/blas-ext-base-dapx","0CM":"@stdlib/blas/ext/base/dapxsum","0CN":"@stdlib/blas-ext-base-dapxsum","0CO":"@stdlib/blas/ext/base/dapxsumkbn","0CP":"@stdlib/blas-ext-base-dapxsumkbn","0CQ":"@stdlib/blas/ext/base/dapxsumkbn2","0CR":"@stdlib/blas-ext-base-dapxsumkbn2","0CS":"@stdlib/blas/ext/base/dapxsumors","0CT":"@stdlib/blas-ext-base-dapxsumors","0CU":"@stdlib/blas/ext/base/dapxsumpw","0CV":"@stdlib/blas-ext-base-dapxsumpw","0CW":"@stdlib/blas/ext/base/dasumpw","0CX":"@stdlib/blas-ext-base-dasumpw","2eo":"@stdlib/blas/ext/base/daxpb","2ep":"@stdlib/blas-ext-base-daxpb","2eq":"@stdlib/blas/ext/base/dcartesian-power","2er":"@stdlib/blas-ext-base-dcartesian-power","2es":"@stdlib/blas/ext/base/dcartesian-product","2et":"@stdlib/blas-ext-base-dcartesian-product","2eu":"@stdlib/blas/ext/base/dcartesian-square","2ev":"@stdlib/blas-ext-base-dcartesian-square","2ew":"@stdlib/blas/ext/base/dcircshift","2ex":"@stdlib/blas-ext-base-dcircshift","0CY":"@stdlib/blas/ext/base/dcusum","0CZ":"@stdlib/blas-ext-base-dcusum","0Ca":"@stdlib/blas/ext/base/dcusumkbn","0Cb":"@stdlib/blas-ext-base-dcusumkbn","0Cc":"@stdlib/blas/ext/base/dcusumkbn2","0Cd":"@stdlib/blas-ext-base-dcusumkbn2","0Ce":"@stdlib/blas/ext/base/dcusumors","0Cf":"@stdlib/blas-ext-base-dcusumors","0Cg":"@stdlib/blas/ext/base/dcusumpw","0Ch":"@stdlib/blas-ext-base-dcusumpw","2ey":"@stdlib/blas/ext/base/ddiff","2ez":"@stdlib/blas-ext-base-ddiff","2f0":"@stdlib/blas/ext/base/dediff","2f1":"@stdlib/blas-ext-base-dediff","0Ci":"@stdlib/blas/ext/base/dfill","0Cj":"@stdlib/blas-ext-base-dfill","2f2":"@stdlib/blas/ext/base/dindex-of-column","2f3":"@stdlib/blas-ext-base-dindex-of-column","2f4":"@stdlib/blas/ext/base/dindex-of-row","2f5":"@stdlib/blas-ext-base-dindex-of-row","2Nk":"@stdlib/blas/ext/base/dindex-of","2Nl":"@stdlib/blas-ext-base-dindex-of","2f6":"@stdlib/blas/ext/base/dlast-index-of-row","2f7":"@stdlib/blas-ext-base-dlast-index-of-row","2Nm":"@stdlib/blas/ext/base/dlast-index-of","2Nn":"@stdlib/blas-ext-base-dlast-index-of","2Xk":"@stdlib/blas/ext/base/dlinspace","2Xl":"@stdlib/blas-ext-base-dlinspace","2f8":"@stdlib/blas/ext/base/dmskrev","2f9":"@stdlib/blas-ext-base-dmskrev","0Ck":"@stdlib/blas/ext/base/dnanasum","0Cl":"@stdlib/blas-ext-base-dnanasum","0Cm":"@stdlib/blas/ext/base/dnanasumors","0Cn":"@stdlib/blas-ext-base-dnanasumors","2fA":"@stdlib/blas/ext/base/dnancount","2fB":"@stdlib/blas-ext-base-dnancount","2Gw":"@stdlib/blas/ext/base/dnancusumkbn","2Gx":"@stdlib/blas-ext-base-dnancusumkbn","0Co":"@stdlib/blas/ext/base/dnannsum","0Cp":"@stdlib/blas-ext-base-dnannsum","0Cq":"@stdlib/blas/ext/base/dnannsumkbn","0Cr":"@stdlib/blas-ext-base-dnannsumkbn","0Cs":"@stdlib/blas/ext/base/dnannsumkbn2","0Ct":"@stdlib/blas-ext-base-dnannsumkbn2","0Cu":"@stdlib/blas/ext/base/dnannsumors","0Cv":"@stdlib/blas-ext-base-dnannsumors","0Cw":"@stdlib/blas/ext/base/dnannsumpw","0Cx":"@stdlib/blas-ext-base-dnannsumpw","0Cy":"@stdlib/blas/ext/base/dnansum","0Cz":"@stdlib/blas-ext-base-dnansum","0D0":"@stdlib/blas/ext/base/dnansumkbn","0D1":"@stdlib/blas-ext-base-dnansumkbn","0D2":"@stdlib/blas/ext/base/dnansumkbn2","0D3":"@stdlib/blas-ext-base-dnansumkbn2","0D4":"@stdlib/blas/ext/base/dnansumors","0D5":"@stdlib/blas-ext-base-dnansumors","0D6":"@stdlib/blas/ext/base/dnansumpw","0D7":"@stdlib/blas-ext-base-dnansumpw","2fC":"@stdlib/blas/ext/base/done-to","2fD":"@stdlib/blas-ext-base-done-to","0D8":"@stdlib/blas/ext/base/drev","0D9":"@stdlib/blas-ext-base-drev","2YQ":"@stdlib/blas/ext/base/drrss","2YR":"@stdlib/blas-ext-base-drrss","2fE":"@stdlib/blas/ext/base/drss","2fF":"@stdlib/blas-ext-base-drss","2fG":"@stdlib/blas/ext/base/drssbl","2fH":"@stdlib/blas-ext-base-drssbl","2fI":"@stdlib/blas/ext/base/drsskbn","2fJ":"@stdlib/blas-ext-base-drsskbn","0DA":"@stdlib/blas/ext/base/dsapxsum","0DB":"@stdlib/blas-ext-base-dsapxsum","0DC":"@stdlib/blas/ext/base/dsapxsumpw","0DD":"@stdlib/blas-ext-base-dsapxsumpw","0DE":"@stdlib/blas/ext/base/dsnannsumors","0DF":"@stdlib/blas-ext-base-dsnannsumors","0DG":"@stdlib/blas/ext/base/dsnansum","0DH":"@stdlib/blas-ext-base-dsnansum","0DI":"@stdlib/blas/ext/base/dsnansumors","0DJ":"@stdlib/blas-ext-base-dsnansumors","0DK":"@stdlib/blas/ext/base/dsnansumpw","0DL":"@stdlib/blas-ext-base-dsnansumpw","2fK":"@stdlib/blas/ext/base/dsort","2fL":"@stdlib/blas-ext-base-dsort","0DM":"@stdlib/blas/ext/base/dsort2hp","0DN":"@stdlib/blas-ext-base-dsort2hp","0DO":"@stdlib/blas/ext/base/dsort2ins","0DP":"@stdlib/blas-ext-base-dsort2ins","0DQ":"@stdlib/blas/ext/base/dsort2sh","0DR":"@stdlib/blas-ext-base-dsort2sh","0DS":"@stdlib/blas/ext/base/dsorthp","0DT":"@stdlib/blas-ext-base-dsorthp","0DU":"@stdlib/blas/ext/base/dsortins","0DV":"@stdlib/blas-ext-base-dsortins","0DW":"@stdlib/blas/ext/base/dsortsh","0DX":"@stdlib/blas-ext-base-dsortsh","0DY":"@stdlib/blas/ext/base/dssum","0DZ":"@stdlib/blas-ext-base-dssum","0Da":"@stdlib/blas/ext/base/dssumors","0Db":"@stdlib/blas-ext-base-dssumors","0Dc":"@stdlib/blas/ext/base/dssumpw","0Dd":"@stdlib/blas-ext-base-dssumpw","0De":"@stdlib/blas/ext/base/dsum","0Df":"@stdlib/blas-ext-base-dsum","0Dg":"@stdlib/blas/ext/base/dsumkbn","0Dh":"@stdlib/blas-ext-base-dsumkbn","0Di":"@stdlib/blas/ext/base/dsumkbn2","0Dj":"@stdlib/blas-ext-base-dsumkbn2","0Dk":"@stdlib/blas/ext/base/dsumors","0Dl":"@stdlib/blas-ext-base-dsumors","0Dm":"@stdlib/blas/ext/base/dsumpw","0Dn":"@stdlib/blas-ext-base-dsumpw","2fM":"@stdlib/blas/ext/base/dunitspace","2fN":"@stdlib/blas-ext-base-dunitspace","2fO":"@stdlib/blas/ext/base/dvander","2fP":"@stdlib/blas-ext-base-dvander","2fQ":"@stdlib/blas/ext/base/dwhere","2fR":"@stdlib/blas-ext-base-dwhere","2fS":"@stdlib/blas/ext/base/dxsa","2fT":"@stdlib/blas-ext-base-dxsa","2fU":"@stdlib/blas/ext/base/dzero-to","2fV":"@stdlib/blas-ext-base-dzero-to","0Do":"@stdlib/blas/ext/base/gapx","0Dp":"@stdlib/blas-ext-base-gapx","0Dq":"@stdlib/blas/ext/base/gapxsum","0Dr":"@stdlib/blas-ext-base-gapxsum","0Ds":"@stdlib/blas/ext/base/gapxsumkbn","0Dt":"@stdlib/blas-ext-base-gapxsumkbn","0Du":"@stdlib/blas/ext/base/gapxsumkbn2","0Dv":"@stdlib/blas-ext-base-gapxsumkbn2","0Dw":"@stdlib/blas/ext/base/gapxsumors","0Dx":"@stdlib/blas-ext-base-gapxsumors","0Dy":"@stdlib/blas/ext/base/gapxsumpw","0Dz":"@stdlib/blas-ext-base-gapxsumpw","0E0":"@stdlib/blas/ext/base/gasumpw","0E1":"@stdlib/blas-ext-base-gasumpw","2fW":"@stdlib/blas/ext/base/gaxpb","2fX":"@stdlib/blas-ext-base-gaxpb","2fY":"@stdlib/blas/ext/base/gaxpby","2fZ":"@stdlib/blas-ext-base-gaxpby","2fa":"@stdlib/blas/ext/base/gcartesian-power","2fb":"@stdlib/blas-ext-base-gcartesian-power","2fc":"@stdlib/blas/ext/base/gcartesian-square","2fd":"@stdlib/blas-ext-base-gcartesian-square","2fe":"@stdlib/blas/ext/base/gcircshift","2ff":"@stdlib/blas-ext-base-gcircshift","2fg":"@stdlib/blas/ext/base/gconjoin","2fh":"@stdlib/blas-ext-base-gconjoin","2fi":"@stdlib/blas/ext/base/gcuevery","2fj":"@stdlib/blas-ext-base-gcuevery","2fk":"@stdlib/blas/ext/base/gcunone","2fl":"@stdlib/blas-ext-base-gcunone","0E2":"@stdlib/blas/ext/base/gcusum","0E3":"@stdlib/blas-ext-base-gcusum","0E4":"@stdlib/blas/ext/base/gcusumkbn","0E5":"@stdlib/blas-ext-base-gcusumkbn","0E6":"@stdlib/blas/ext/base/gcusumkbn2","0E7":"@stdlib/blas-ext-base-gcusumkbn2","0E8":"@stdlib/blas/ext/base/gcusumors","0E9":"@stdlib/blas-ext-base-gcusumors","0EA":"@stdlib/blas/ext/base/gcusumpw","0EB":"@stdlib/blas-ext-base-gcusumpw","2fm":"@stdlib/blas/ext/base/gdiff","2fn":"@stdlib/blas-ext-base-gdiff","0EC":"@stdlib/blas/ext/base/gfill-by","0ED":"@stdlib/blas-ext-base-gfill-by","0EE":"@stdlib/blas/ext/base/gfill","0EF":"@stdlib/blas-ext-base-gfill","2Sy":"@stdlib/blas/ext/base/gfind-index","2Sz":"@stdlib/blas-ext-base-gfind-index","2T0":"@stdlib/blas/ext/base/gfind-last-index","2T1":"@stdlib/blas-ext-base-gfind-last-index","2fo":"@stdlib/blas/ext/base/gindex-of-column","2fp":"@stdlib/blas-ext-base-gindex-of-column","2W2":"@stdlib/blas/ext/base/gindex-of-row","2W3":"@stdlib/blas-ext-base-gindex-of-row","2No":"@stdlib/blas/ext/base/gindex-of","2Np":"@stdlib/blas-ext-base-gindex-of","2fq":"@stdlib/blas/ext/base/gjoin-between","2fr":"@stdlib/blas-ext-base-gjoin-between","2Yw":"@stdlib/blas/ext/base/gjoin","2Yx":"@stdlib/blas-ext-base-gjoin","2fs":"@stdlib/blas/ext/base/glast-index-of-row","2ft":"@stdlib/blas-ext-base-glast-index-of-row","2Nq":"@stdlib/blas/ext/base/glast-index-of","2Nr":"@stdlib/blas-ext-base-glast-index-of","2Xm":"@stdlib/blas/ext/base/glinspace","2Xn":"@stdlib/blas-ext-base-glinspace","2fu":"@stdlib/blas/ext/base/gmskrev","2fv":"@stdlib/blas-ext-base-gmskrev","2fw":"@stdlib/blas/ext/base/gnancount","2fx":"@stdlib/blas-ext-base-gnancount","0EG":"@stdlib/blas/ext/base/gnannsumkbn","0EH":"@stdlib/blas-ext-base-gnannsumkbn","2Hw":"@stdlib/blas/ext/base/gnannsumpw","2Hx":"@stdlib/blas-ext-base-gnannsumpw","0EI":"@stdlib/blas/ext/base/gnansum","0EJ":"@stdlib/blas-ext-base-gnansum","0EK":"@stdlib/blas/ext/base/gnansumkbn","0EL":"@stdlib/blas-ext-base-gnansumkbn","0EM":"@stdlib/blas/ext/base/gnansumkbn2","0EN":"@stdlib/blas-ext-base-gnansumkbn2","0EO":"@stdlib/blas/ext/base/gnansumors","0EP":"@stdlib/blas-ext-base-gnansumors","0EQ":"@stdlib/blas/ext/base/gnansumpw","0ER":"@stdlib/blas-ext-base-gnansumpw","2fy":"@stdlib/blas/ext/base/gone-to","2fz":"@stdlib/blas-ext-base-gone-to","2g0":"@stdlib/blas/ext/base/greplicate","2g1":"@stdlib/blas-ext-base-greplicate","0ES":"@stdlib/blas/ext/base/grev","0ET":"@stdlib/blas-ext-base-grev","2g2":"@stdlib/blas/ext/base/gsort","2g3":"@stdlib/blas-ext-base-gsort","0EU":"@stdlib/blas/ext/base/gsort2hp","0EV":"@stdlib/blas-ext-base-gsort2hp","0EW":"@stdlib/blas/ext/base/gsort2ins","0EX":"@stdlib/blas-ext-base-gsort2ins","0EY":"@stdlib/blas/ext/base/gsort2sh","0EZ":"@stdlib/blas-ext-base-gsort2sh","0Ea":"@stdlib/blas/ext/base/gsorthp","0Eb":"@stdlib/blas-ext-base-gsorthp","0Ec":"@stdlib/blas/ext/base/gsortins","0Ed":"@stdlib/blas-ext-base-gsortins","0Ee":"@stdlib/blas/ext/base/gsortsh","0Ef":"@stdlib/blas-ext-base-gsortsh","0Eg":"@stdlib/blas/ext/base/gsum","0Eh":"@stdlib/blas-ext-base-gsum","0Ei":"@stdlib/blas/ext/base/gsumkbn","0Ej":"@stdlib/blas-ext-base-gsumkbn","0Ek":"@stdlib/blas/ext/base/gsumkbn2","0El":"@stdlib/blas-ext-base-gsumkbn2","0Em":"@stdlib/blas/ext/base/gsumors","0En":"@stdlib/blas-ext-base-gsumors","0Eo":"@stdlib/blas/ext/base/gsumpw","0Ep":"@stdlib/blas-ext-base-gsumpw","2g4":"@stdlib/blas/ext/base/gunitspace","2g5":"@stdlib/blas-ext-base-gunitspace","2g6":"@stdlib/blas/ext/base/gvander","2g7":"@stdlib/blas-ext-base-gvander","2g8":"@stdlib/blas/ext/base/gwhere","2g9":"@stdlib/blas-ext-base-gwhere","2gA":"@stdlib/blas/ext/base/gxsa","2gB":"@stdlib/blas-ext-base-gxsa","2gC":"@stdlib/blas/ext/base/gzero-to","2gD":"@stdlib/blas-ext-base-gzero-to","2gE":"@stdlib/blas/ext/base/ndarray/caxpb","2gF":"@stdlib/blas-ext-base-ndarray-caxpb","2gG":"@stdlib/blas/ext/base/ndarray/cindex-of","2gH":"@stdlib/blas-ext-base-ndarray-cindex-of","2gI":"@stdlib/blas/ext/base/ndarray/cone-to","2gJ":"@stdlib/blas-ext-base-ndarray-cone-to","2Hy":"@stdlib/blas/ext/base/ndarray/csum","2Hz":"@stdlib/blas-ext-base-ndarray-csum","2Yy":"@stdlib/blas/ext/base/ndarray/csumkbn","2Yz":"@stdlib/blas-ext-base-ndarray-csumkbn","2gK":"@stdlib/blas/ext/base/ndarray/cunitspace","2gL":"@stdlib/blas-ext-base-ndarray-cunitspace","2gM":"@stdlib/blas/ext/base/ndarray/cxsa","2gN":"@stdlib/blas-ext-base-ndarray-cxsa","2gO":"@stdlib/blas/ext/base/ndarray/czero-to","2gP":"@stdlib/blas-ext-base-ndarray-czero-to","2gQ":"@stdlib/blas/ext/base/ndarray/daxpb","2gR":"@stdlib/blas-ext-base-ndarray-daxpb","2gS":"@stdlib/blas/ext/base/ndarray/dcircshift","2gT":"@stdlib/blas-ext-base-ndarray-dcircshift","2FE":"@stdlib/blas/ext/base/ndarray/dcusum","2FF":"@stdlib/blas-ext-base-ndarray-dcusum","2Z0":"@stdlib/blas/ext/base/ndarray/dcusumkbn","2Z1":"@stdlib/blas-ext-base-ndarray-dcusumkbn","2Z2":"@stdlib/blas/ext/base/ndarray/dcusumkbn2","2Z3":"@stdlib/blas-ext-base-ndarray-dcusumkbn2","2gU":"@stdlib/blas/ext/base/ndarray/dcusumors","2gV":"@stdlib/blas-ext-base-ndarray-dcusumors","2gW":"@stdlib/blas/ext/base/ndarray/dcusumpw","2gX":"@stdlib/blas-ext-base-ndarray-dcusumpw","2Ns":"@stdlib/blas/ext/base/ndarray/dindex-of","2Nt":"@stdlib/blas-ext-base-ndarray-dindex-of","2Nu":"@stdlib/blas/ext/base/ndarray/dlast-index-of","2Nv":"@stdlib/blas-ext-base-ndarray-dlast-index-of","2Xo":"@stdlib/blas/ext/base/ndarray/dlinspace","2Xp":"@stdlib/blas-ext-base-ndarray-dlinspace","2gY":"@stdlib/blas/ext/base/ndarray/dnansum","2gZ":"@stdlib/blas-ext-base-ndarray-dnansum","2ga":"@stdlib/blas/ext/base/ndarray/dnansumkbn","2gb":"@stdlib/blas-ext-base-ndarray-dnansumkbn","2gc":"@stdlib/blas/ext/base/ndarray/dnansumkbn2","2gd":"@stdlib/blas-ext-base-ndarray-dnansumkbn2","2ge":"@stdlib/blas/ext/base/ndarray/dnansumors","2gf":"@stdlib/blas-ext-base-ndarray-dnansumors","2gg":"@stdlib/blas/ext/base/ndarray/dnansumpw","2gh":"@stdlib/blas-ext-base-ndarray-dnansumpw","2gi":"@stdlib/blas/ext/base/ndarray/done-to","2gj":"@stdlib/blas-ext-base-ndarray-done-to","2gk":"@stdlib/blas/ext/base/ndarray/dsort","2gl":"@stdlib/blas-ext-base-ndarray-dsort","2T2":"@stdlib/blas/ext/base/ndarray/dsorthp","2T3":"@stdlib/blas-ext-base-ndarray-dsorthp","2gm":"@stdlib/blas/ext/base/ndarray/dsortins","2gn":"@stdlib/blas-ext-base-ndarray-dsortins","2go":"@stdlib/blas/ext/base/ndarray/dsortsh","2gp":"@stdlib/blas-ext-base-ndarray-dsortsh","2FG":"@stdlib/blas/ext/base/ndarray/dsum","2FH":"@stdlib/blas-ext-base-ndarray-dsum","2Z4":"@stdlib/blas/ext/base/ndarray/dsumkbn","2Z5":"@stdlib/blas-ext-base-ndarray-dsumkbn","2Z6":"@stdlib/blas/ext/base/ndarray/dsumkbn2","2Z7":"@stdlib/blas-ext-base-ndarray-dsumkbn2","2gq":"@stdlib/blas/ext/base/ndarray/dsumors","2gr":"@stdlib/blas-ext-base-ndarray-dsumors","2gs":"@stdlib/blas/ext/base/ndarray/dsumpw","2gt":"@stdlib/blas-ext-base-ndarray-dsumpw","2gu":"@stdlib/blas/ext/base/ndarray/dunitspace","2gv":"@stdlib/blas-ext-base-ndarray-dunitspace","2gw":"@stdlib/blas/ext/base/ndarray/dxsa","2gx":"@stdlib/blas-ext-base-ndarray-dxsa","2gy":"@stdlib/blas/ext/base/ndarray/dzero-to","2gz":"@stdlib/blas-ext-base-ndarray-dzero-to","2h0":"@stdlib/blas/ext/base/ndarray/gaxpb","2h1":"@stdlib/blas-ext-base-ndarray-gaxpb","2h2":"@stdlib/blas/ext/base/ndarray/gcircshift","2h3":"@stdlib/blas-ext-base-ndarray-gcircshift","2FI":"@stdlib/blas/ext/base/ndarray/gcusum","2FJ":"@stdlib/blas-ext-base-ndarray-gcusum","2h4":"@stdlib/blas/ext/base/ndarray/gcusumkbn","2h5":"@stdlib/blas-ext-base-ndarray-gcusumkbn","2h6":"@stdlib/blas/ext/base/ndarray/gcusumkbn2","2h7":"@stdlib/blas-ext-base-ndarray-gcusumkbn2","2h8":"@stdlib/blas/ext/base/ndarray/gcusumors","2h9":"@stdlib/blas-ext-base-ndarray-gcusumors","2hA":"@stdlib/blas/ext/base/ndarray/gcusumpw","2hB":"@stdlib/blas-ext-base-ndarray-gcusumpw","2T4":"@stdlib/blas/ext/base/ndarray/gfind-index","2T5":"@stdlib/blas-ext-base-ndarray-gfind-index","2T6":"@stdlib/blas/ext/base/ndarray/gfind-last-index","2T7":"@stdlib/blas-ext-base-ndarray-gfind-last-index","2Nw":"@stdlib/blas/ext/base/ndarray/gindex-of","2Nx":"@stdlib/blas-ext-base-ndarray-gindex-of","2hC":"@stdlib/blas/ext/base/ndarray/gjoin-between","2hD":"@stdlib/blas-ext-base-ndarray-gjoin-between","2Z8":"@stdlib/blas/ext/base/ndarray/gjoin","2Z9":"@stdlib/blas-ext-base-ndarray-gjoin","2Ny":"@stdlib/blas/ext/base/ndarray/glast-index-of","2Nz":"@stdlib/blas-ext-base-ndarray-glast-index-of","2Xq":"@stdlib/blas/ext/base/ndarray/glinspace","2Xr":"@stdlib/blas-ext-base-ndarray-glinspace","2hE":"@stdlib/blas/ext/base/ndarray/gnansum","2hF":"@stdlib/blas-ext-base-ndarray-gnansum","2hG":"@stdlib/blas/ext/base/ndarray/gnansumkbn","2hH":"@stdlib/blas-ext-base-ndarray-gnansumkbn","2hI":"@stdlib/blas/ext/base/ndarray/gnansumkbn2","2hJ":"@stdlib/blas-ext-base-ndarray-gnansumkbn2","2hK":"@stdlib/blas/ext/base/ndarray/gnansumors","2hL":"@stdlib/blas-ext-base-ndarray-gnansumors","2hM":"@stdlib/blas/ext/base/ndarray/gnansumpw","2hN":"@stdlib/blas-ext-base-ndarray-gnansumpw","2hO":"@stdlib/blas/ext/base/ndarray/gone-to","2hP":"@stdlib/blas-ext-base-ndarray-gone-to","2hQ":"@stdlib/blas/ext/base/ndarray/gsort","2hR":"@stdlib/blas-ext-base-ndarray-gsort","2T8":"@stdlib/blas/ext/base/ndarray/gsorthp","2T9":"@stdlib/blas-ext-base-ndarray-gsorthp","2FK":"@stdlib/blas/ext/base/ndarray/gsum","2FL":"@stdlib/blas-ext-base-ndarray-gsum","2ZA":"@stdlib/blas/ext/base/ndarray/gsumkbn","2ZB":"@stdlib/blas-ext-base-ndarray-gsumkbn","2ZC":"@stdlib/blas/ext/base/ndarray/gsumkbn2","2ZD":"@stdlib/blas-ext-base-ndarray-gsumkbn2","2hS":"@stdlib/blas/ext/base/ndarray/gsumors","2hT":"@stdlib/blas-ext-base-ndarray-gsumors","2hU":"@stdlib/blas/ext/base/ndarray/gsumpw","2hV":"@stdlib/blas-ext-base-ndarray-gsumpw","2hW":"@stdlib/blas/ext/base/ndarray/gunitspace","2hX":"@stdlib/blas-ext-base-ndarray-gunitspace","2hY":"@stdlib/blas/ext/base/ndarray/gzero-to","2hZ":"@stdlib/blas-ext-base-ndarray-gzero-to","2FM":"@stdlib/blas/ext/base/ndarray","2FN":"@stdlib/blas-ext-base-ndarray","2ha":"@stdlib/blas/ext/base/ndarray/saxpb","2hb":"@stdlib/blas-ext-base-ndarray-saxpb","2hc":"@stdlib/blas/ext/base/ndarray/scircshift","2hd":"@stdlib/blas-ext-base-ndarray-scircshift","2FO":"@stdlib/blas/ext/base/ndarray/scusum","2FP":"@stdlib/blas-ext-base-ndarray-scusum","2ZE":"@stdlib/blas/ext/base/ndarray/scusumkbn","2ZF":"@stdlib/blas-ext-base-ndarray-scusumkbn","2ZG":"@stdlib/blas/ext/base/ndarray/scusumkbn2","2ZH":"@stdlib/blas-ext-base-ndarray-scusumkbn2","2he":"@stdlib/blas/ext/base/ndarray/scusumors","2hf":"@stdlib/blas-ext-base-ndarray-scusumors","2O0":"@stdlib/blas/ext/base/ndarray/sindex-of","2O1":"@stdlib/blas-ext-base-ndarray-sindex-of","2O2":"@stdlib/blas/ext/base/ndarray/slast-index-of","2O3":"@stdlib/blas-ext-base-ndarray-slast-index-of","2Xs":"@stdlib/blas/ext/base/ndarray/slinspace","2Xt":"@stdlib/blas-ext-base-ndarray-slinspace","2hg":"@stdlib/blas/ext/base/ndarray/snansum","2hh":"@stdlib/blas-ext-base-ndarray-snansum","2hi":"@stdlib/blas/ext/base/ndarray/snansumkbn","2hj":"@stdlib/blas-ext-base-ndarray-snansumkbn","2hk":"@stdlib/blas/ext/base/ndarray/snansumkbn2","2hl":"@stdlib/blas-ext-base-ndarray-snansumkbn2","2hm":"@stdlib/blas/ext/base/ndarray/snansumors","2hn":"@stdlib/blas-ext-base-ndarray-snansumors","2ho":"@stdlib/blas/ext/base/ndarray/snansumpw","2hp":"@stdlib/blas-ext-base-ndarray-snansumpw","2hq":"@stdlib/blas/ext/base/ndarray/sone-to","2hr":"@stdlib/blas-ext-base-ndarray-sone-to","2hs":"@stdlib/blas/ext/base/ndarray/ssort","2ht":"@stdlib/blas-ext-base-ndarray-ssort","2TA":"@stdlib/blas/ext/base/ndarray/ssorthp","2TB":"@stdlib/blas-ext-base-ndarray-ssorthp","2FQ":"@stdlib/blas/ext/base/ndarray/ssum","2FR":"@stdlib/blas-ext-base-ndarray-ssum","2ZI":"@stdlib/blas/ext/base/ndarray/ssumkbn","2ZJ":"@stdlib/blas-ext-base-ndarray-ssumkbn","2ZK":"@stdlib/blas/ext/base/ndarray/ssumkbn2","2ZL":"@stdlib/blas-ext-base-ndarray-ssumkbn2","2hu":"@stdlib/blas/ext/base/ndarray/ssumors","2hv":"@stdlib/blas-ext-base-ndarray-ssumors","2hw":"@stdlib/blas/ext/base/ndarray/ssumpw","2hx":"@stdlib/blas-ext-base-ndarray-ssumpw","2hy":"@stdlib/blas/ext/base/ndarray/sunitspace","2hz":"@stdlib/blas-ext-base-ndarray-sunitspace","2i0":"@stdlib/blas/ext/base/ndarray/sxsa","2i1":"@stdlib/blas-ext-base-ndarray-sxsa","2i2":"@stdlib/blas/ext/base/ndarray/szero-to","2i3":"@stdlib/blas-ext-base-ndarray-szero-to","2i4":"@stdlib/blas/ext/base/ndarray/zaxpb","2i5":"@stdlib/blas-ext-base-ndarray-zaxpb","2i6":"@stdlib/blas/ext/base/ndarray/zindex-of","2i7":"@stdlib/blas-ext-base-ndarray-zindex-of","2i8":"@stdlib/blas/ext/base/ndarray/zone-to","2i9":"@stdlib/blas-ext-base-ndarray-zone-to","2I0":"@stdlib/blas/ext/base/ndarray/zsum","2I1":"@stdlib/blas-ext-base-ndarray-zsum","2ZM":"@stdlib/blas/ext/base/ndarray/zsumkbn","2ZN":"@stdlib/blas-ext-base-ndarray-zsumkbn","2iA":"@stdlib/blas/ext/base/ndarray/zunitspace","2iB":"@stdlib/blas-ext-base-ndarray-zunitspace","2iC":"@stdlib/blas/ext/base/ndarray/zzero-to","2iD":"@stdlib/blas-ext-base-ndarray-zzero-to","0Eq":"@stdlib/blas/ext/base","0Er":"@stdlib/blas-ext-base","0Es":"@stdlib/blas/ext/base/sapx","0Et":"@stdlib/blas-ext-base-sapx","0Eu":"@stdlib/blas/ext/base/sapxsum","0Ev":"@stdlib/blas-ext-base-sapxsum","0Ew":"@stdlib/blas/ext/base/sapxsumkbn","0Ex":"@stdlib/blas-ext-base-sapxsumkbn","0Ey":"@stdlib/blas/ext/base/sapxsumkbn2","0Ez":"@stdlib/blas-ext-base-sapxsumkbn2","0F0":"@stdlib/blas/ext/base/sapxsumors","0F1":"@stdlib/blas-ext-base-sapxsumors","0F2":"@stdlib/blas/ext/base/sapxsumpw","0F3":"@stdlib/blas-ext-base-sapxsumpw","0F4":"@stdlib/blas/ext/base/sasumpw","0F5":"@stdlib/blas-ext-base-sasumpw","2iE":"@stdlib/blas/ext/base/saxpb","2iF":"@stdlib/blas-ext-base-saxpb","2iG":"@stdlib/blas/ext/base/scartesian-power","2iH":"@stdlib/blas-ext-base-scartesian-power","2iI":"@stdlib/blas/ext/base/scartesian-square","2iJ":"@stdlib/blas-ext-base-scartesian-square","2iK":"@stdlib/blas/ext/base/scircshift","2iL":"@stdlib/blas-ext-base-scircshift","0F6":"@stdlib/blas/ext/base/scusum","0F7":"@stdlib/blas-ext-base-scusum","0F8":"@stdlib/blas/ext/base/scusumkbn","0F9":"@stdlib/blas-ext-base-scusumkbn","0FA":"@stdlib/blas/ext/base/scusumkbn2","0FB":"@stdlib/blas-ext-base-scusumkbn2","0FC":"@stdlib/blas/ext/base/scusumors","0FD":"@stdlib/blas-ext-base-scusumors","0FE":"@stdlib/blas/ext/base/scusumpw","0FF":"@stdlib/blas-ext-base-scusumpw","2iM":"@stdlib/blas/ext/base/sdiff","2iN":"@stdlib/blas-ext-base-sdiff","0FG":"@stdlib/blas/ext/base/sdsapxsum","0FH":"@stdlib/blas-ext-base-sdsapxsum","0FI":"@stdlib/blas/ext/base/sdsapxsumpw","0FJ":"@stdlib/blas-ext-base-sdsapxsumpw","0FK":"@stdlib/blas/ext/base/sdsnansum","0FL":"@stdlib/blas-ext-base-sdsnansum","0FM":"@stdlib/blas/ext/base/sdsnansumpw","0FN":"@stdlib/blas-ext-base-sdsnansumpw","0FO":"@stdlib/blas/ext/base/sdssum","0FP":"@stdlib/blas-ext-base-sdssum","0FQ":"@stdlib/blas/ext/base/sdssumpw","0FR":"@stdlib/blas-ext-base-sdssumpw","2iO":"@stdlib/blas/ext/base/sediff","2iP":"@stdlib/blas-ext-base-sediff","0FS":"@stdlib/blas/ext/base/sfill","0FT":"@stdlib/blas-ext-base-sfill","2iQ":"@stdlib/blas/ext/base/sindex-of-column","2iR":"@stdlib/blas-ext-base-sindex-of-column","2iS":"@stdlib/blas/ext/base/sindex-of-row","2iT":"@stdlib/blas-ext-base-sindex-of-row","2O4":"@stdlib/blas/ext/base/sindex-of","2O5":"@stdlib/blas-ext-base-sindex-of","2iU":"@stdlib/blas/ext/base/slast-index-of-row","2iV":"@stdlib/blas-ext-base-slast-index-of-row","2O6":"@stdlib/blas/ext/base/slast-index-of","2O7":"@stdlib/blas-ext-base-slast-index-of","2Xu":"@stdlib/blas/ext/base/slinspace","2Xv":"@stdlib/blas-ext-base-slinspace","2iW":"@stdlib/blas/ext/base/snancount","2iX":"@stdlib/blas-ext-base-snancount","0FU":"@stdlib/blas/ext/base/snansum","0FV":"@stdlib/blas-ext-base-snansum","0FW":"@stdlib/blas/ext/base/snansumkbn","0FX":"@stdlib/blas-ext-base-snansumkbn","0FY":"@stdlib/blas/ext/base/snansumkbn2","0FZ":"@stdlib/blas-ext-base-snansumkbn2","0Fa":"@stdlib/blas/ext/base/snansumors","0Fb":"@stdlib/blas-ext-base-snansumors","0Fc":"@stdlib/blas/ext/base/snansumpw","0Fd":"@stdlib/blas-ext-base-snansumpw","2iY":"@stdlib/blas/ext/base/sone-to","2iZ":"@stdlib/blas-ext-base-sone-to","0Fe":"@stdlib/blas/ext/base/srev","0Ff":"@stdlib/blas-ext-base-srev","2ia":"@stdlib/blas/ext/base/ssort","2ib":"@stdlib/blas-ext-base-ssort","0Fg":"@stdlib/blas/ext/base/ssort2hp","0Fh":"@stdlib/blas-ext-base-ssort2hp","0Fi":"@stdlib/blas/ext/base/ssort2ins","0Fj":"@stdlib/blas-ext-base-ssort2ins","0Fk":"@stdlib/blas/ext/base/ssort2sh","0Fl":"@stdlib/blas-ext-base-ssort2sh","0Fm":"@stdlib/blas/ext/base/ssorthp","0Fn":"@stdlib/blas-ext-base-ssorthp","0Fo":"@stdlib/blas/ext/base/ssortins","0Fp":"@stdlib/blas-ext-base-ssortins","0Fq":"@stdlib/blas/ext/base/ssortsh","0Fr":"@stdlib/blas-ext-base-ssortsh","0Fs":"@stdlib/blas/ext/base/ssum","0Ft":"@stdlib/blas-ext-base-ssum","0Fu":"@stdlib/blas/ext/base/ssumkbn","0Fv":"@stdlib/blas-ext-base-ssumkbn","0Fw":"@stdlib/blas/ext/base/ssumkbn2","0Fx":"@stdlib/blas-ext-base-ssumkbn2","0Fy":"@stdlib/blas/ext/base/ssumors","0Fz":"@stdlib/blas-ext-base-ssumors","0G0":"@stdlib/blas/ext/base/ssumpw","0G1":"@stdlib/blas-ext-base-ssumpw","2ic":"@stdlib/blas/ext/base/sunitspace","2id":"@stdlib/blas-ext-base-sunitspace","2ie":"@stdlib/blas/ext/base/svander","2if":"@stdlib/blas-ext-base-svander","2ig":"@stdlib/blas/ext/base/swhere","2ih":"@stdlib/blas-ext-base-swhere","2ii":"@stdlib/blas/ext/base/sxsa","2ij":"@stdlib/blas-ext-base-sxsa","2ik":"@stdlib/blas/ext/base/szero-to","2il":"@stdlib/blas-ext-base-szero-to","2Gy":"@stdlib/blas/ext/base/wasm/dapx","2Gz":"@stdlib/blas-ext-base-wasm-dapx","29e":"@stdlib/blas/ext/base/wasm/dapxsum","29f":"@stdlib/blas-ext-base-wasm-dapxsum","27C":"@stdlib/blas/ext/base/wasm/dapxsumkbn","27D":"@stdlib/blas-ext-base-wasm-dapxsumkbn","29g":"@stdlib/blas/ext/base/wasm/dapxsumors","29h":"@stdlib/blas-ext-base-wasm-dapxsumors","29i":"@stdlib/blas/ext/base/wasm/dapxsumpw","29j":"@stdlib/blas-ext-base-wasm-dapxsumpw","29k":"@stdlib/blas/ext/base/wasm/dasumpw","29l":"@stdlib/blas-ext-base-wasm-dasumpw","2GC":"@stdlib/blas/ext/base/wasm/dnanasumors","2GD":"@stdlib/blas-ext-base-wasm-dnanasumors","2O8":"@stdlib/blas/ext/base/wasm/dnansumkbn2","2O9":"@stdlib/blas-ext-base-wasm-dnansumkbn2","29m":"@stdlib/blas/ext/base/wasm/dnansumpw","29n":"@stdlib/blas-ext-base-wasm-dnansumpw","27E":"@stdlib/blas/ext/base/wasm","27F":"@stdlib/blas-ext-base-wasm","2GE":"@stdlib/blas/ext/base/wasm/sapxsumkbn","2GF":"@stdlib/blas-ext-base-wasm-sapxsumkbn","2im":"@stdlib/blas/ext/base/zapx","2in":"@stdlib/blas-ext-base-zapx","2io":"@stdlib/blas/ext/base/zaxpb","2ip":"@stdlib/blas-ext-base-zaxpb","2iq":"@stdlib/blas/ext/base/zdiff","2ir":"@stdlib/blas-ext-base-zdiff","21e":"@stdlib/blas/ext/base/zfill","21f":"@stdlib/blas-ext-base-zfill","2is":"@stdlib/blas/ext/base/zindex-of-column","2it":"@stdlib/blas-ext-base-zindex-of-column","2iu":"@stdlib/blas/ext/base/zindex-of-row","2iv":"@stdlib/blas-ext-base-zindex-of-row","2iw":"@stdlib/blas/ext/base/zindex-of","2ix":"@stdlib/blas-ext-base-zindex-of","2iy":"@stdlib/blas/ext/base/zlast-index-of-row","2iz":"@stdlib/blas-ext-base-zlast-index-of-row","2j0":"@stdlib/blas/ext/base/znancount","2j1":"@stdlib/blas-ext-base-znancount","2j2":"@stdlib/blas/ext/base/zone-to","2j3":"@stdlib/blas-ext-base-zone-to","2I2":"@stdlib/blas/ext/base/zsum","2I3":"@stdlib/blas-ext-base-zsum","2I4":"@stdlib/blas/ext/base/zsumkbn","2I5":"@stdlib/blas-ext-base-zsumkbn","2j4":"@stdlib/blas/ext/base/zunitspace","2j5":"@stdlib/blas-ext-base-zunitspace","2j6":"@stdlib/blas/ext/base/zwhere","2j7":"@stdlib/blas-ext-base-zwhere","2j8":"@stdlib/blas/ext/base/zxsa","2j9":"@stdlib/blas-ext-base-zxsa","2jA":"@stdlib/blas/ext/base/zzero-to","2jB":"@stdlib/blas-ext-base-zzero-to","2jC":"@stdlib/blas/ext/circshift","2jD":"@stdlib/blas-ext-circshift","2FS":"@stdlib/blas/ext/cusum","2FT":"@stdlib/blas-ext-cusum","2TC":"@stdlib/blas/ext/find-index","2TD":"@stdlib/blas-ext-find-index","2TE":"@stdlib/blas/ext/find-last-index","2TF":"@stdlib/blas-ext-find-last-index","2Ro":"@stdlib/blas/ext/index-of","2Rp":"@stdlib/blas-ext-index-of","2jE":"@stdlib/blas/ext/join","2jF":"@stdlib/blas-ext-join","2VK":"@stdlib/blas/ext/last-index-of","2VL":"@stdlib/blas-ext-last-index-of","2YS":"@stdlib/blas/ext/linspace","2YT":"@stdlib/blas-ext-linspace","2jG":"@stdlib/blas/ext/one-to","2jH":"@stdlib/blas-ext-one-to","0G2":"@stdlib/blas/ext","0G3":"@stdlib/blas-ext","2jI":"@stdlib/blas/ext/sort","2jJ":"@stdlib/blas-ext-sort","2WM":"@stdlib/blas/ext/sorthp","2WN":"@stdlib/blas-ext-sorthp","2FU":"@stdlib/blas/ext/sum","2FV":"@stdlib/blas-ext-sum","2jK":"@stdlib/blas/ext/to-sorted","2jL":"@stdlib/blas-ext-to-sorted","2Wm":"@stdlib/blas/ext/to-sortedhp","2Wn":"@stdlib/blas-ext-to-sortedhp","2jM":"@stdlib/blas/ext/unitspace","2jN":"@stdlib/blas-ext-unitspace","2jO":"@stdlib/blas/ext/zero-to","2jP":"@stdlib/blas-ext-zero-to","0G4":"@stdlib/blas/gdot","0G5":"@stdlib/blas-gdot","0G6":"@stdlib/blas/gswap","0G7":"@stdlib/blas-gswap","0G9":"@stdlib/blas","0GA":"@stdlib/blas/sdot","0GB":"@stdlib/blas-sdot","0GC":"@stdlib/blas/sswap","0GD":"@stdlib/blas-sswap","21g":"@stdlib/blas/tools","21h":"@stdlib/blas-tools","21i":"@stdlib/blas/tools/swap-factory","21j":"@stdlib/blas-tools-swap-factory","1aQ":"@stdlib/boolean/ctor","1aR":"@stdlib/boolean-ctor","1aT":"@stdlib/boolean","0GE":"@stdlib/buffer/alloc-unsafe","0GF":"@stdlib/buffer-alloc-unsafe","0GG":"@stdlib/buffer/ctor","0GH":"@stdlib/buffer-ctor","0GI":"@stdlib/buffer/from-array","0GJ":"@stdlib/buffer-from-array","0GK":"@stdlib/buffer/from-arraybuffer","0GL":"@stdlib/buffer-from-arraybuffer","0GM":"@stdlib/buffer/from-buffer","0GN":"@stdlib/buffer-from-buffer","0GO":"@stdlib/buffer/from-string","0GP":"@stdlib/buffer-from-string","0GR":"@stdlib/buffer","0GS":"@stdlib/buffer/reviver","0GT":"@stdlib/buffer-reviver","0GU":"@stdlib/buffer/to-json","0GV":"@stdlib/buffer-to-json","0GW":"@stdlib/cli/ctor","0GX":"@stdlib/cli-ctor","0GZ":"@stdlib/cli","2jQ":"@stdlib/complex/base/assert/is-almost-equal","2jR":"@stdlib/complex-base-assert-is-almost-equal","2jS":"@stdlib/complex/base/assert/is-almost-same-value","2jT":"@stdlib/complex-base-assert-is-almost-same-value","1po":"@stdlib/complex/base/assert","1pp":"@stdlib/complex-base-assert","1aU":"@stdlib/complex/base/cast-return","1aV":"@stdlib/complex-base-cast-return","1aW":"@stdlib/complex/base","1aX":"@stdlib/complex-base","1sa":"@stdlib/complex/base/parse","1sb":"@stdlib/complex-base-parse","0Ga":"@stdlib/complex/base/wrap-function","0Gb":"@stdlib/complex-base-wrap-function","0Gc":"@stdlib/complex/cmplx","0Gd":"@stdlib/complex-cmplx","0Gi":"@stdlib/complex/ctors","0Gj":"@stdlib/complex-ctors","0Gk":"@stdlib/complex/dtype","0Gl":"@stdlib/complex-dtype","0Gm":"@stdlib/complex/dtypes","0Gn":"@stdlib/complex-dtypes","1xs":"@stdlib/complex/float32/base/add","1xt":"@stdlib/complex-float32-base-add","2jU":"@stdlib/complex/float32/base/add3","2jV":"@stdlib/complex-float32-base-add3","2OA":"@stdlib/complex/float32/base/assert/is-almost-equal","2OB":"@stdlib/complex-float32-base-assert-is-almost-equal","2jW":"@stdlib/complex/float32/base/assert/is-almost-same-value","2jX":"@stdlib/complex-float32-base-assert-is-almost-same-value","1ui":"@stdlib/complex/float32/base/assert/is-equal","1uj":"@stdlib/complex-float32-base-assert-is-equal","1uk":"@stdlib/complex/float32/base/assert/is-not-equal","1ul":"@stdlib/complex-float32-base-assert-is-not-equal","1um":"@stdlib/complex/float32/base/assert/is-same-value-zero","1un":"@stdlib/complex-float32-base-assert-is-same-value-zero","1uo":"@stdlib/complex/float32/base/assert/is-same-value","1up":"@stdlib/complex-float32-base-assert-is-same-value","1xu":"@stdlib/complex/float32/base/assert","1xv":"@stdlib/complex-float32-base-assert","29o":"@stdlib/complex/float32/base/identity","29p":"@stdlib/complex-float32-base-identity","2VM":"@stdlib/complex/float32/base/mul-add","2VN":"@stdlib/complex-float32-base-mul-add","1xw":"@stdlib/complex/float32/base/mul","1xx":"@stdlib/complex-float32-base-mul","29q":"@stdlib/complex/float32/base/neg","29r":"@stdlib/complex-float32-base-neg","1xy":"@stdlib/complex/float32/base","1xz":"@stdlib/complex-float32-base","2I6":"@stdlib/complex/float32/base/scale","2I7":"@stdlib/complex-float32-base-scale","29s":"@stdlib/complex/float32/base/sub","29t":"@stdlib/complex-float32-base-sub","1y0":"@stdlib/complex/float32/conj","1y1":"@stdlib/complex-float32-conj","0Go":"@stdlib/complex/float32/ctor","1y2":"@stdlib/complex/float32/imag","1y3":"@stdlib/complex-float32-imag","1uq":"@stdlib/complex/float32","1ur":"@stdlib/complex-float32","1sc":"@stdlib/complex/float32/parse","1y4":"@stdlib/complex/float32/real","1y5":"@stdlib/complex-float32-real","1y6":"@stdlib/complex/float32/reim","1y7":"@stdlib/complex-float32-reim","0H8":"@stdlib/complex/float32/reviver","1y8":"@stdlib/complex/float64/base/add","1y9":"@stdlib/complex-float64-base-add","2jY":"@stdlib/complex/float64/base/add3","2jZ":"@stdlib/complex-float64-base-add3","2OC":"@stdlib/complex/float64/base/assert/is-almost-equal","2OD":"@stdlib/complex-float64-base-assert-is-almost-equal","2ja":"@stdlib/complex/float64/base/assert/is-almost-same-value","2jb":"@stdlib/complex-float64-base-assert-is-almost-same-value","1pY":"@stdlib/complex/float64/base/assert/is-equal","1us":"@stdlib/complex/float64/base/assert/is-not-equal","1ut":"@stdlib/complex-float64-base-assert-is-not-equal","1uu":"@stdlib/complex/float64/base/assert/is-same-value-zero","1uv":"@stdlib/complex-float64-base-assert-is-same-value-zero","1uw":"@stdlib/complex/float64/base/assert/is-same-value","1ux":"@stdlib/complex-float64-base-assert-is-same-value","1yA":"@stdlib/complex/float64/base/assert","1yB":"@stdlib/complex-float64-base-assert","29u":"@stdlib/complex/float64/base/div","29v":"@stdlib/complex-float64-base-div","29w":"@stdlib/complex/float64/base/identity","29x":"@stdlib/complex-float64-base-identity","27G":"@stdlib/complex/float64/base/mul-add","27H":"@stdlib/complex-float64-base-mul-add","1yC":"@stdlib/complex/float64/base/mul","1yD":"@stdlib/complex-float64-base-mul","29y":"@stdlib/complex/float64/base/neg","29z":"@stdlib/complex-float64-base-neg","1yE":"@stdlib/complex/float64/base","1yF":"@stdlib/complex-float64-base","27I":"@stdlib/complex/float64/base/scale","27J":"@stdlib/complex-float64-base-scale","2A0":"@stdlib/complex/float64/base/sub","2A1":"@stdlib/complex-float64-base-sub","1yG":"@stdlib/complex/float64/conj","1yH":"@stdlib/complex-float64-conj","0Gq":"@stdlib/complex/float64/ctor","1yI":"@stdlib/complex/float64/imag","1yJ":"@stdlib/complex-float64-imag","1uy":"@stdlib/complex/float64","1uz":"@stdlib/complex-float64","1se":"@stdlib/complex/float64/parse","1yK":"@stdlib/complex/float64/real","1yL":"@stdlib/complex-float64-real","1yM":"@stdlib/complex/float64/reim","1yN":"@stdlib/complex-float64-reim","0HA":"@stdlib/complex/float64/reviver","0Gx":"@stdlib/complex","0Gy":"@stdlib/complex/promotion-rules","0Gz":"@stdlib/complex-promotion-rules","0HC":"@stdlib/complex/reviver","0HD":"@stdlib/complex-reviver","2A2":"@stdlib/console/log-each-map","2A3":"@stdlib/console-log-each-map","1aY":"@stdlib/console/log-each","1aZ":"@stdlib/console-log-each","1aa":"@stdlib/console/log","1ab":"@stdlib/console-log","1ad":"@stdlib/console","0HE":"@stdlib/constants/array/max-array-length","0HF":"@stdlib/constants-array-max-array-length","0HG":"@stdlib/constants/array/max-typed-array-length","0HH":"@stdlib/constants-array-max-typed-array-length","0HI":"@stdlib/constants/array","0HJ":"@stdlib/constants-array","1pq":"@stdlib/constants/complex128/nan","1pr":"@stdlib/constants-complex128-nan","0HK":"@stdlib/constants/complex128/num-bytes","0HL":"@stdlib/constants-complex128-num-bytes","0HM":"@stdlib/constants/complex128","0HN":"@stdlib/constants-complex128","1ps":"@stdlib/constants/complex128/zero","1pt":"@stdlib/constants-complex128-zero","1pu":"@stdlib/constants/complex64/nan","1pv":"@stdlib/constants-complex64-nan","0HO":"@stdlib/constants/complex64/num-bytes","0HP":"@stdlib/constants-complex64-num-bytes","0HQ":"@stdlib/constants/complex64","0HR":"@stdlib/constants-complex64","1pw":"@stdlib/constants/complex64/zero","1px":"@stdlib/constants-complex64-zero","2jc":"@stdlib/constants/float16/abs-mask","2jd":"@stdlib/constants-float16-abs-mask","2ZO":"@stdlib/constants/float16/apery","2ZP":"@stdlib/constants-float16-apery","2ZQ":"@stdlib/constants/float16/catalan","2ZR":"@stdlib/constants-float16-catalan","0HS":"@stdlib/constants/float16/cbrt-eps","0HT":"@stdlib/constants-float16-cbrt-eps","2ZS":"@stdlib/constants/float16/e","2ZT":"@stdlib/constants-float16-e","0HU":"@stdlib/constants/float16/eps","0HV":"@stdlib/constants-float16-eps","2ZU":"@stdlib/constants/float16/eulergamma","2ZV":"@stdlib/constants-float16-eulergamma","0HW":"@stdlib/constants/float16/exponent-bias","0HX":"@stdlib/constants-float16-exponent-bias","2ZW":"@stdlib/constants/float16/exponent-mask","2ZX":"@stdlib/constants-float16-exponent-mask","2ZY":"@stdlib/constants/float16/fourth-pi","2ZZ":"@stdlib/constants-float16-fourth-pi","2je":"@stdlib/constants/float16/half-ln-two","2jf":"@stdlib/constants-float16-half-ln-two","2Za":"@stdlib/constants/float16/half-pi","2Zb":"@stdlib/constants-float16-half-pi","2jg":"@stdlib/constants/float16/ln-half","2jh":"@stdlib/constants-float16-ln-half","2ji":"@stdlib/constants/float16/ln-pi","2jj":"@stdlib/constants-float16-ln-pi","2jk":"@stdlib/constants/float16/ln-sqrt-two-pi","2jl":"@stdlib/constants-float16-ln-sqrt-two-pi","2jm":"@stdlib/constants/float16/ln-ten","2jn":"@stdlib/constants-float16-ln-ten","2jo":"@stdlib/constants/float16/ln-two-pi","2jp":"@stdlib/constants-float16-ln-two-pi","2jq":"@stdlib/constants/float16/ln-two","2jr":"@stdlib/constants-float16-ln-two","2js":"@stdlib/constants/float16/log10-e","2jt":"@stdlib/constants-float16-log10-e","2ju":"@stdlib/constants/float16/log2-e","2jv":"@stdlib/constants-float16-log2-e","2jw":"@stdlib/constants/float16/max-base10-exponent-subnormal","2jx":"@stdlib/constants-float16-max-base10-exponent-subnormal","2jy":"@stdlib/constants/float16/max-base10-exponent","2jz":"@stdlib/constants-float16-max-base10-exponent","2k0":"@stdlib/constants/float16/max-base2-exponent-subnormal","2k1":"@stdlib/constants-float16-max-base2-exponent-subnormal","2Zc":"@stdlib/constants/float16/max-base2-exponent","2Zd":"@stdlib/constants-float16-max-base2-exponent","2Ze":"@stdlib/constants/float16/max-ln","2Zf":"@stdlib/constants-float16-max-ln","0HY":"@stdlib/constants/float16/max-safe-integer","0HZ":"@stdlib/constants-float16-max-safe-integer","0Ha":"@stdlib/constants/float16/max","0Hb":"@stdlib/constants-float16-max","2k2":"@stdlib/constants/float16/min-base10-exponent-subnormal","2k3":"@stdlib/constants-float16-min-base10-exponent-subnormal","2k4":"@stdlib/constants/float16/min-base10-exponent","2k5":"@stdlib/constants-float16-min-base10-exponent","2k6":"@stdlib/constants/float16/min-base2-exponent-subnormal","2k7":"@stdlib/constants-float16-min-base2-exponent-subnormal","2Zg":"@stdlib/constants/float16/min-base2-exponent","2Zh":"@stdlib/constants-float16-min-base2-exponent","2Zi":"@stdlib/constants/float16/min-ln","2Zj":"@stdlib/constants-float16-min-ln","0Hc":"@stdlib/constants/float16/min-safe-integer","0Hd":"@stdlib/constants-float16-min-safe-integer","2k8":"@stdlib/constants/float16/nan","2k9":"@stdlib/constants-float16-nan","0He":"@stdlib/constants/float16/ninf","0Hf":"@stdlib/constants-float16-ninf","0Hg":"@stdlib/constants/float16/num-bytes","0Hh":"@stdlib/constants-float16-num-bytes","2Zk":"@stdlib/constants/float16/num-exponent-bits","2Zl":"@stdlib/constants-float16-num-exponent-bits","2Zm":"@stdlib/constants/float16/num-significand-bits","2Zn":"@stdlib/constants-float16-num-significand-bits","0Hi":"@stdlib/constants/float16","0Hj":"@stdlib/constants-float16","2Zo":"@stdlib/constants/float16/phi","2Zp":"@stdlib/constants-float16-phi","2Zq":"@stdlib/constants/float16/pi-squared","2Zr":"@stdlib/constants-float16-pi-squared","2Zs":"@stdlib/constants/float16/pi","2Zt":"@stdlib/constants-float16-pi","0Hk":"@stdlib/constants/float16/pinf","0Hl":"@stdlib/constants-float16-pinf","0Hm":"@stdlib/constants/float16/precision","0Hn":"@stdlib/constants-float16-precision","2Zu":"@stdlib/constants/float16/sign-mask","2Zv":"@stdlib/constants-float16-sign-mask","2Zw":"@stdlib/constants/float16/significand-mask","2Zx":"@stdlib/constants-float16-significand-mask","0Ho":"@stdlib/constants/float16/smallest-normal","0Hp":"@stdlib/constants-float16-smallest-normal","0Hq":"@stdlib/constants/float16/smallest-subnormal","0Hr":"@stdlib/constants-float16-smallest-subnormal","0Hs":"@stdlib/constants/float16/sqrt-eps","0Ht":"@stdlib/constants-float16-sqrt-eps","2kA":"@stdlib/constants/float16/sqrt-half","2kB":"@stdlib/constants-float16-sqrt-half","2kC":"@stdlib/constants/float16/sqrt-three","2kD":"@stdlib/constants-float16-sqrt-three","2kE":"@stdlib/constants/float16/sqrt-two-pi","2kF":"@stdlib/constants-float16-sqrt-two-pi","2Zy":"@stdlib/constants/float16/sqrt-two","2Zz":"@stdlib/constants-float16-sqrt-two","2a0":"@stdlib/constants/float16/two-pi","2a1":"@stdlib/constants-float16-two-pi","1ae":"@stdlib/constants/float32/abs-mask","1af":"@stdlib/constants-float32-abs-mask","2A4":"@stdlib/constants/float32/apery","2A5":"@stdlib/constants-float32-apery","2Dg":"@stdlib/constants/float32/catalan","2Dh":"@stdlib/constants-float32-catalan","0Hu":"@stdlib/constants/float32/cbrt-eps","0Hv":"@stdlib/constants-float32-cbrt-eps","22y":"@stdlib/constants/float32/e","22z":"@stdlib/constants-float32-e","0Hw":"@stdlib/constants/float32/eps","0Hx":"@stdlib/constants-float32-eps","2Di":"@stdlib/constants/float32/eulergamma","2Dj":"@stdlib/constants-float32-eulergamma","0Hy":"@stdlib/constants/float32/exponent-bias","0Hz":"@stdlib/constants-float32-exponent-bias","1ag":"@stdlib/constants/float32/exponent-mask","1ah":"@stdlib/constants-float32-exponent-mask","1tA":"@stdlib/constants/float32/fourth-pi","1tB":"@stdlib/constants-float32-fourth-pi","2Dk":"@stdlib/constants/float32/fourth-root-eps","2Dl":"@stdlib/constants-float32-fourth-root-eps","2A6":"@stdlib/constants/float32/gamma-lanczos-g","2A7":"@stdlib/constants-float32-gamma-lanczos-g","2a2":"@stdlib/constants/float32/glaisher-kinkelin","2a3":"@stdlib/constants-float32-glaisher-kinkelin","1tC":"@stdlib/constants/float32/half-pi","1tD":"@stdlib/constants-float32-half-pi","24G":"@stdlib/constants/float32/ln-half","24H":"@stdlib/constants-float32-ln-half","24I":"@stdlib/constants/float32/ln-pi","24J":"@stdlib/constants-float32-ln-pi","2A8":"@stdlib/constants/float32/ln-sqrt-two-pi","2A9":"@stdlib/constants-float32-ln-sqrt-two-pi","24K":"@stdlib/constants/float32/ln-ten","24L":"@stdlib/constants-float32-ln-ten","2AA":"@stdlib/constants/float32/ln-two-pi","2AB":"@stdlib/constants-float32-ln-two-pi","2AC":"@stdlib/constants/float32/log10-e","2AD":"@stdlib/constants-float32-log10-e","2AE":"@stdlib/constants/float32/log2-e","2AF":"@stdlib/constants-float32-log2-e","1zC":"@stdlib/constants/float32/max-base2-exponent-subnormal","1zD":"@stdlib/constants-float32-max-base2-exponent-subnormal","1zE":"@stdlib/constants/float32/max-base2-exponent","1zF":"@stdlib/constants-float32-max-base2-exponent","2Dm":"@stdlib/constants/float32/max-ln","2Dn":"@stdlib/constants-float32-max-ln","2FW":"@stdlib/constants/float32/max-nth-double-factorial","2FX":"@stdlib/constants-float32-max-nth-double-factorial","2FY":"@stdlib/constants/float32/max-nth-factorial","2FZ":"@stdlib/constants-float32-max-nth-factorial","21k":"@stdlib/constants/float32/max-safe-fibonacci","21l":"@stdlib/constants-float32-max-safe-fibonacci","0I0":"@stdlib/constants/float32/max-safe-integer","0I1":"@stdlib/constants-float32-max-safe-integer","2Do":"@stdlib/constants/float32/max-safe-lucas","2Dp":"@stdlib/constants-float32-max-safe-lucas","2AG":"@stdlib/constants/float32/max-safe-nth-double-factorial","2AH":"@stdlib/constants-float32-max-safe-nth-double-factorial","24M":"@stdlib/constants/float32/max-safe-nth-lucas","24N":"@stdlib/constants-float32-max-safe-nth-lucas","2AI":"@stdlib/constants/float32/max-safe-nth-tribonacci","2AJ":"@stdlib/constants-float32-max-safe-nth-tribonacci","0I2":"@stdlib/constants/float32/max","0I3":"@stdlib/constants-float32-max","23A":"@stdlib/constants/float32/min-base10-exponent","23B":"@stdlib/constants-float32-min-base10-exponent","1zG":"@stdlib/constants/float32/min-base2-exponent-subnormal","1zH":"@stdlib/constants-float32-min-base2-exponent-subnormal","23C":"@stdlib/constants/float32/min-base2-exponent","23D":"@stdlib/constants-float32-min-base2-exponent","2Dq":"@stdlib/constants/float32/min-ln","2Dr":"@stdlib/constants-float32-min-ln","0I4":"@stdlib/constants/float32/min-safe-integer","0I5":"@stdlib/constants-float32-min-safe-integer","1py":"@stdlib/constants/float32/nan","1pz":"@stdlib/constants-float32-nan","0I6":"@stdlib/constants/float32/ninf","0I7":"@stdlib/constants-float32-ninf","0I8":"@stdlib/constants/float32/num-bytes","0I9":"@stdlib/constants-float32-num-bytes","2kG":"@stdlib/constants/float32/num-exponent-bits","2kH":"@stdlib/constants-float32-num-exponent-bits","2AK":"@stdlib/constants/float32/num-significand-bits","2AL":"@stdlib/constants-float32-num-significand-bits","0IA":"@stdlib/constants/float32","0IB":"@stdlib/constants-float32","1v0":"@stdlib/constants/float32/phi","1v1":"@stdlib/constants-float32-phi","2AM":"@stdlib/constants/float32/pi-squared","2AN":"@stdlib/constants-float32-pi-squared","1tE":"@stdlib/constants/float32/pi","1tF":"@stdlib/constants-float32-pi","0IC":"@stdlib/constants/float32/pinf","0ID":"@stdlib/constants-float32-pinf","0IE":"@stdlib/constants/float32/precision","0IF":"@stdlib/constants-float32-precision","1ai":"@stdlib/constants/float32/sign-mask","1aj":"@stdlib/constants-float32-sign-mask","1ak":"@stdlib/constants/float32/significand-mask","1al":"@stdlib/constants-float32-significand-mask","0IG":"@stdlib/constants/float32/smallest-normal","0IH":"@stdlib/constants-float32-smallest-normal","0II":"@stdlib/constants/float32/smallest-subnormal","0IJ":"@stdlib/constants-float32-smallest-subnormal","0IK":"@stdlib/constants/float32/sqrt-eps","0IL":"@stdlib/constants-float32-sqrt-eps","24O":"@stdlib/constants/float32/sqrt-half-pi","24P":"@stdlib/constants-float32-sqrt-half-pi","24Q":"@stdlib/constants/float32/sqrt-half","24R":"@stdlib/constants-float32-sqrt-half","24S":"@stdlib/constants/float32/sqrt-phi","24T":"@stdlib/constants-float32-sqrt-phi","24U":"@stdlib/constants/float32/sqrt-pi","24V":"@stdlib/constants-float32-sqrt-pi","24W":"@stdlib/constants/float32/sqrt-three","24X":"@stdlib/constants-float32-sqrt-three","24Y":"@stdlib/constants/float32/sqrt-two-pi","24Z":"@stdlib/constants-float32-sqrt-two-pi","24a":"@stdlib/constants/float32/sqrt-two","24b":"@stdlib/constants-float32-sqrt-two","1tG":"@stdlib/constants/float32/two-pi","1tH":"@stdlib/constants-float32-two-pi","0IM":"@stdlib/constants/float64/apery","0IN":"@stdlib/constants-float64-apery","0IO":"@stdlib/constants/float64/catalan","0IP":"@stdlib/constants-float64-catalan","0IQ":"@stdlib/constants/float64/cbrt-eps","0IR":"@stdlib/constants-float64-cbrt-eps","0IS":"@stdlib/constants/float64/e","0IT":"@stdlib/constants-float64-e","0IU":"@stdlib/constants/float64/eps","0IV":"@stdlib/constants-float64-eps","0IW":"@stdlib/constants/float64/eulergamma","0IX":"@stdlib/constants-float64-eulergamma","0IY":"@stdlib/constants/float64/exponent-bias","0IZ":"@stdlib/constants-float64-exponent-bias","0Ia":"@stdlib/constants/float64/fourth-pi","0Ib":"@stdlib/constants-float64-fourth-pi","0Ic":"@stdlib/constants/float64/fourth-root-eps","0Id":"@stdlib/constants-float64-fourth-root-eps","0Ie":"@stdlib/constants/float64/gamma-lanczos-g","0If":"@stdlib/constants-float64-gamma-lanczos-g","0Ig":"@stdlib/constants/float64/glaisher-kinkelin","0Ih":"@stdlib/constants-float64-glaisher-kinkelin","0Ii":"@stdlib/constants/float64/half-ln-two","0Ij":"@stdlib/constants-float64-half-ln-two","0Ik":"@stdlib/constants/float64/half-pi","0Il":"@stdlib/constants-float64-half-pi","1am":"@stdlib/constants/float64/high-word-abs-mask","1an":"@stdlib/constants-float64-high-word-abs-mask","0Im":"@stdlib/constants/float64/high-word-exponent-mask","0In":"@stdlib/constants-float64-high-word-exponent-mask","1ao":"@stdlib/constants/float64/high-word-sign-mask","1ap":"@stdlib/constants-float64-high-word-sign-mask","0Io":"@stdlib/constants/float64/high-word-significand-mask","0Ip":"@stdlib/constants-float64-high-word-significand-mask","0Iq":"@stdlib/constants/float64/ln-half","0Ir":"@stdlib/constants-float64-ln-half","0Is":"@stdlib/constants/float64/ln-pi","0It":"@stdlib/constants-float64-ln-pi","0Iu":"@stdlib/constants/float64/ln-sqrt-two-pi","0Iv":"@stdlib/constants-float64-ln-sqrt-two-pi","0Iw":"@stdlib/constants/float64/ln-ten","0Ix":"@stdlib/constants-float64-ln-ten","0Iy":"@stdlib/constants/float64/ln-two-pi","0Iz":"@stdlib/constants-float64-ln-two-pi","0J0":"@stdlib/constants/float64/ln-two","0J1":"@stdlib/constants-float64-ln-two","0J2":"@stdlib/constants/float64/log10-e","0J3":"@stdlib/constants-float64-log10-e","0J4":"@stdlib/constants/float64/log2-e","0J5":"@stdlib/constants-float64-log2-e","0J6":"@stdlib/constants/float64/max-base10-exponent-subnormal","0J7":"@stdlib/constants-float64-max-base10-exponent-subnormal","0J8":"@stdlib/constants/float64/max-base10-exponent","0J9":"@stdlib/constants-float64-max-base10-exponent","0JA":"@stdlib/constants/float64/max-base2-exponent-subnormal","0JB":"@stdlib/constants-float64-max-base2-exponent-subnormal","0JC":"@stdlib/constants/float64/max-base2-exponent","0JD":"@stdlib/constants-float64-max-base2-exponent","0JE":"@stdlib/constants/float64/max-ln","0JF":"@stdlib/constants-float64-max-ln","2Fa":"@stdlib/constants/float64/max-nth-double-factorial","2Fb":"@stdlib/constants-float64-max-nth-double-factorial","2Fc":"@stdlib/constants/float64/max-nth-factorial","2Fd":"@stdlib/constants-float64-max-nth-factorial","0JG":"@stdlib/constants/float64/max-safe-fibonacci","0JH":"@stdlib/constants-float64-max-safe-fibonacci","0JI":"@stdlib/constants/float64/max-safe-integer","0JJ":"@stdlib/constants-float64-max-safe-integer","0JK":"@stdlib/constants/float64/max-safe-lucas","0JL":"@stdlib/constants-float64-max-safe-lucas","23E":"@stdlib/constants/float64/max-safe-nth-double-factorial","23F":"@stdlib/constants-float64-max-safe-nth-double-factorial","1yO":"@stdlib/constants/float64/max-safe-nth-factorial","1yP":"@stdlib/constants-float64-max-safe-nth-factorial","0JM":"@stdlib/constants/float64/max-safe-nth-fibonacci","0JN":"@stdlib/constants-float64-max-safe-nth-fibonacci","0JO":"@stdlib/constants/float64/max-safe-nth-lucas","0JP":"@stdlib/constants-float64-max-safe-nth-lucas","24c":"@stdlib/constants/float64/max-safe-nth-tribonacci","24d":"@stdlib/constants-float64-max-safe-nth-tribonacci","0JQ":"@stdlib/constants/float64/max","0JR":"@stdlib/constants-float64-max","0JS":"@stdlib/constants/float64/min-base10-exponent-subnormal","0JT":"@stdlib/constants-float64-min-base10-exponent-subnormal","0JU":"@stdlib/constants/float64/min-base10-exponent","0JV":"@stdlib/constants-float64-min-base10-exponent","0JW":"@stdlib/constants/float64/min-base2-exponent-subnormal","0JX":"@stdlib/constants-float64-min-base2-exponent-subnormal","0JY":"@stdlib/constants/float64/min-base2-exponent","0JZ":"@stdlib/constants-float64-min-base2-exponent","0Ja":"@stdlib/constants/float64/min-ln","0Jb":"@stdlib/constants-float64-min-ln","0Jc":"@stdlib/constants/float64/min-safe-integer","0Jd":"@stdlib/constants-float64-min-safe-integer","1q0":"@stdlib/constants/float64/nan","1q1":"@stdlib/constants-float64-nan","0Je":"@stdlib/constants/float64/ninf","0Jf":"@stdlib/constants-float64-ninf","0Jg":"@stdlib/constants/float64/num-bytes","0Jh":"@stdlib/constants-float64-num-bytes","20A":"@stdlib/constants/float64/num-high-word-significand-bits","20B":"@stdlib/constants-float64-num-high-word-significand-bits","0Ji":"@stdlib/constants/float64","0Jj":"@stdlib/constants-float64","0Jk":"@stdlib/constants/float64/phi","0Jl":"@stdlib/constants-float64-phi","0Jm":"@stdlib/constants/float64/pi-squared","0Jn":"@stdlib/constants-float64-pi-squared","0Jo":"@stdlib/constants/float64/pi","0Jp":"@stdlib/constants-float64-pi","0Jq":"@stdlib/constants/float64/pinf","0Jr":"@stdlib/constants-float64-pinf","0Js":"@stdlib/constants/float64/precision","0Jt":"@stdlib/constants-float64-precision","0Ju":"@stdlib/constants/float64/smallest-normal","0Jv":"@stdlib/constants-float64-smallest-normal","0Jw":"@stdlib/constants/float64/smallest-subnormal","0Jx":"@stdlib/constants-float64-smallest-subnormal","0Jy":"@stdlib/constants/float64/sqrt-eps","0Jz":"@stdlib/constants-float64-sqrt-eps","0K0":"@stdlib/constants/float64/sqrt-half-pi","0K1":"@stdlib/constants-float64-sqrt-half-pi","0K2":"@stdlib/constants/float64/sqrt-half","0K3":"@stdlib/constants-float64-sqrt-half","0K4":"@stdlib/constants/float64/sqrt-phi","0K5":"@stdlib/constants-float64-sqrt-phi","0K6":"@stdlib/constants/float64/sqrt-pi","0K7":"@stdlib/constants-float64-sqrt-pi","0K8":"@stdlib/constants/float64/sqrt-three","0K9":"@stdlib/constants-float64-sqrt-three","0KA":"@stdlib/constants/float64/sqrt-two-pi","0KB":"@stdlib/constants-float64-sqrt-two-pi","0KC":"@stdlib/constants/float64/sqrt-two","0KD":"@stdlib/constants-float64-sqrt-two","0KE":"@stdlib/constants/float64/two-pi","0KF":"@stdlib/constants-float64-two-pi","0KG":"@stdlib/constants/int16/max","0KH":"@stdlib/constants-int16-max","0KI":"@stdlib/constants/int16/min","0KJ":"@stdlib/constants-int16-min","0KK":"@stdlib/constants/int16/num-bytes","0KL":"@stdlib/constants-int16-num-bytes","0KM":"@stdlib/constants/int16","0KN":"@stdlib/constants-int16","0KO":"@stdlib/constants/int32/max","0KP":"@stdlib/constants-int32-max","0KQ":"@stdlib/constants/int32/min","0KR":"@stdlib/constants-int32-min","0KS":"@stdlib/constants/int32/num-bytes","0KT":"@stdlib/constants-int32-num-bytes","0KU":"@stdlib/constants/int32","0KV":"@stdlib/constants-int32","0KW":"@stdlib/constants/int8/max","0KX":"@stdlib/constants-int8-max","0KY":"@stdlib/constants/int8/min","0KZ":"@stdlib/constants-int8-min","0Ka":"@stdlib/constants/int8/num-bytes","0Kb":"@stdlib/constants-int8-num-bytes","0Kc":"@stdlib/constants/int8","0Kd":"@stdlib/constants-int8","0Kf":"@stdlib/constants","0Kg":"@stdlib/constants/path/delimiter-posix","0Kh":"@stdlib/constants-path-delimiter-posix","0Ki":"@stdlib/constants/path/delimiter-win32","0Kj":"@stdlib/constants-path-delimiter-win32","0Kk":"@stdlib/constants/path/delimiter","0Kl":"@stdlib/constants-path-delimiter","0Km":"@stdlib/constants/path","0Kn":"@stdlib/constants-path","0Ko":"@stdlib/constants/path/sep-posix","0Kp":"@stdlib/constants-path-sep-posix","0Kq":"@stdlib/constants/path/sep-win32","0Kr":"@stdlib/constants-path-sep-win32","0Ks":"@stdlib/constants/path/sep","0Kt":"@stdlib/constants-path-sep","0Ku":"@stdlib/constants/time/hours-in-day","0Kv":"@stdlib/constants-time-hours-in-day","0Kw":"@stdlib/constants/time/hours-in-week","0Kx":"@stdlib/constants-time-hours-in-week","0Ky":"@stdlib/constants/time/milliseconds-in-day","0Kz":"@stdlib/constants-time-milliseconds-in-day","0L0":"@stdlib/constants/time/milliseconds-in-hour","0L1":"@stdlib/constants-time-milliseconds-in-hour","0L2":"@stdlib/constants/time/milliseconds-in-minute","0L3":"@stdlib/constants-time-milliseconds-in-minute","0L4":"@stdlib/constants/time/milliseconds-in-second","0L5":"@stdlib/constants-time-milliseconds-in-second","0L6":"@stdlib/constants/time/milliseconds-in-week","0L7":"@stdlib/constants-time-milliseconds-in-week","0L8":"@stdlib/constants/time/minutes-in-day","0L9":"@stdlib/constants-time-minutes-in-day","0LA":"@stdlib/constants/time/minutes-in-hour","0LB":"@stdlib/constants-time-minutes-in-hour","0LC":"@stdlib/constants/time/minutes-in-week","0LD":"@stdlib/constants-time-minutes-in-week","0LE":"@stdlib/constants/time/months-in-year","0LF":"@stdlib/constants-time-months-in-year","0LG":"@stdlib/constants/time","0LH":"@stdlib/constants-time","0LI":"@stdlib/constants/time/seconds-in-day","0LJ":"@stdlib/constants-time-seconds-in-day","0LK":"@stdlib/constants/time/seconds-in-hour","0LL":"@stdlib/constants-time-seconds-in-hour","0LM":"@stdlib/constants/time/seconds-in-minute","0LN":"@stdlib/constants-time-seconds-in-minute","0LO":"@stdlib/constants/time/seconds-in-week","0LP":"@stdlib/constants-time-seconds-in-week","0LQ":"@stdlib/constants/uint16/max","0LR":"@stdlib/constants-uint16-max","0LS":"@stdlib/constants/uint16/num-bytes","0LT":"@stdlib/constants-uint16-num-bytes","0LU":"@stdlib/constants/uint16","0LV":"@stdlib/constants-uint16","0LW":"@stdlib/constants/uint32/max","0LX":"@stdlib/constants-uint32-max","0LY":"@stdlib/constants/uint32/num-bytes","0LZ":"@stdlib/constants-uint32-num-bytes","0La":"@stdlib/constants/uint32","0Lb":"@stdlib/constants-uint32","0Lc":"@stdlib/constants/uint8/max","0Ld":"@stdlib/constants-uint8-max","0Le":"@stdlib/constants/uint8/num-bytes","0Lf":"@stdlib/constants-uint8-num-bytes","0Lg":"@stdlib/constants/uint8","0Lh":"@stdlib/constants-uint8","0Li":"@stdlib/constants/unicode/max-bmp","0Lj":"@stdlib/constants-unicode-max-bmp","0Lk":"@stdlib/constants/unicode/max","0Ll":"@stdlib/constants-unicode-max","0Lm":"@stdlib/constants/unicode","0Ln":"@stdlib/constants-unicode","0Lo":"@stdlib/datasets/afinn-111","0Lp":"@stdlib/datasets-afinn-111","0Lq":"@stdlib/datasets/afinn-96","0Lr":"@stdlib/datasets-afinn-96","0Ls":"@stdlib/datasets/anscombes-quartet","0Lt":"@stdlib/datasets-anscombes-quartet","0Lu":"@stdlib/datasets/berndt-cps-wages-1985","0Lv":"@stdlib/datasets-berndt-cps-wages-1985","0Lw":"@stdlib/datasets/cdc-nchs-us-births-1969-1988","0Lx":"@stdlib/datasets-cdc-nchs-us-births-1969-1988","0Ly":"@stdlib/datasets/cdc-nchs-us-births-1994-2003","0Lz":"@stdlib/datasets-cdc-nchs-us-births-1994-2003","0M0":"@stdlib/datasets/cdc-nchs-us-infant-mortality-bw-1915-2013","0M1":"@stdlib/datasets-cdc-nchs-us-infant-mortality-bw-1915-2013","0M2":"@stdlib/datasets/cmudict","0M3":"@stdlib/datasets-cmudict","0M4":"@stdlib/datasets/dale-chall-new","0M5":"@stdlib/datasets-dale-chall-new","0M6":"@stdlib/datasets/emoji-code-picto","0M7":"@stdlib/datasets-emoji-code-picto","0M8":"@stdlib/datasets/emoji-picto-code","0M9":"@stdlib/datasets-emoji-picto-code","0MA":"@stdlib/datasets/emoji","0MB":"@stdlib/datasets-emoji","0MC":"@stdlib/datasets/female-first-names-en","0MD":"@stdlib/datasets-female-first-names-en","0ME":"@stdlib/datasets/fivethirtyeight-ffq","0MF":"@stdlib/datasets-fivethirtyeight-ffq","0MG":"@stdlib/datasets/frb-sf-wage-rigidity","0MH":"@stdlib/datasets-frb-sf-wage-rigidity","0MI":"@stdlib/datasets/harrison-boston-house-prices-corrected","0MJ":"@stdlib/datasets-harrison-boston-house-prices-corrected","0MK":"@stdlib/datasets/harrison-boston-house-prices","0ML":"@stdlib/datasets-harrison-boston-house-prices","0MM":"@stdlib/datasets/herndon-venus-semidiameters","0MN":"@stdlib/datasets-herndon-venus-semidiameters","0MO":"@stdlib/datasets/img-acanthus-mollis","0MP":"@stdlib/datasets-img-acanthus-mollis","0MQ":"@stdlib/datasets/img-airplane-from-above","0MR":"@stdlib/datasets-img-airplane-from-above","0MS":"@stdlib/datasets/img-allium-oreophilum","0MT":"@stdlib/datasets-img-allium-oreophilum","0MU":"@stdlib/datasets/img-black-canyon","0MV":"@stdlib/datasets-img-black-canyon","0MW":"@stdlib/datasets/img-dust-bowl-home","0MX":"@stdlib/datasets-img-dust-bowl-home","0MY":"@stdlib/datasets/img-french-alpine-landscape","0MZ":"@stdlib/datasets-img-french-alpine-landscape","0Ma":"@stdlib/datasets/img-locomotion-house-cat","0Mb":"@stdlib/datasets-img-locomotion-house-cat","0Mc":"@stdlib/datasets/img-locomotion-nude-male","0Md":"@stdlib/datasets-img-locomotion-nude-male","0Me":"@stdlib/datasets/img-march-pastoral","0Mf":"@stdlib/datasets-img-march-pastoral","0Mg":"@stdlib/datasets/img-nagasaki-boats","0Mh":"@stdlib/datasets-img-nagasaki-boats","0Mi":"@stdlib/datasets/liu-negative-opinion-words-en","0Mj":"@stdlib/datasets-liu-negative-opinion-words-en","0Mk":"@stdlib/datasets/liu-positive-opinion-words-en","0Ml":"@stdlib/datasets-liu-positive-opinion-words-en","0Mm":"@stdlib/datasets/male-first-names-en","0Mn":"@stdlib/datasets-male-first-names-en","0Mo":"@stdlib/datasets/minard-napoleons-march","0Mp":"@stdlib/datasets-minard-napoleons-march","0Mq":"@stdlib/datasets/moby-dick","0Mr":"@stdlib/datasets-moby-dick","0Ms":"@stdlib/datasets/month-names-en","0Mt":"@stdlib/datasets-month-names-en","0Mu":"@stdlib/datasets/nightingales-rose","0Mv":"@stdlib/datasets-nightingales-rose","0Mw":"@stdlib/datasets/pace-boston-house-prices","0Mx":"@stdlib/datasets-pace-boston-house-prices","0Mz":"@stdlib/datasets","0N0":"@stdlib/datasets/primes-100k","0N1":"@stdlib/datasets-primes-100k","0N2":"@stdlib/datasets/savoy-stopwords-fin","0N3":"@stdlib/datasets-savoy-stopwords-fin","0N4":"@stdlib/datasets/savoy-stopwords-fr","0N5":"@stdlib/datasets-savoy-stopwords-fr","0N6":"@stdlib/datasets/savoy-stopwords-ger","0N7":"@stdlib/datasets-savoy-stopwords-ger","0N8":"@stdlib/datasets/savoy-stopwords-it","0N9":"@stdlib/datasets-savoy-stopwords-it","0NA":"@stdlib/datasets/savoy-stopwords-por","0NB":"@stdlib/datasets-savoy-stopwords-por","0NC":"@stdlib/datasets/savoy-stopwords-sp","0ND":"@stdlib/datasets-savoy-stopwords-sp","0NE":"@stdlib/datasets/savoy-stopwords-swe","0NF":"@stdlib/datasets-savoy-stopwords-swe","0NG":"@stdlib/datasets/sotu","0NH":"@stdlib/datasets-sotu","0NI":"@stdlib/datasets/spache-revised","0NJ":"@stdlib/datasets-spache-revised","0NK":"@stdlib/datasets/spam-assassin","0NL":"@stdlib/datasets-spam-assassin","0NM":"@stdlib/datasets/ssa-us-births-2000-2014","0NN":"@stdlib/datasets-ssa-us-births-2000-2014","0NO":"@stdlib/datasets/standard-card-deck","0NP":"@stdlib/datasets-standard-card-deck","0NQ":"@stdlib/datasets/stopwords-en","0NR":"@stdlib/datasets-stopwords-en","0NS":"@stdlib/datasets/suthaharan-multi-hop-sensor-network","0NT":"@stdlib/datasets-suthaharan-multi-hop-sensor-network","0NU":"@stdlib/datasets/suthaharan-single-hop-sensor-network","0NV":"@stdlib/datasets-suthaharan-single-hop-sensor-network","0NW":"@stdlib/datasets/us-states-abbr","0NX":"@stdlib/datasets-us-states-abbr","0NY":"@stdlib/datasets/us-states-capitals-names","0NZ":"@stdlib/datasets-us-states-capitals-names","0Na":"@stdlib/datasets/us-states-capitals","0Nb":"@stdlib/datasets-us-states-capitals","0Nc":"@stdlib/datasets/us-states-names-capitals","0Nd":"@stdlib/datasets-us-states-names-capitals","0Ne":"@stdlib/datasets/us-states-names","0Nf":"@stdlib/datasets-us-states-names","27K":"@stdlib/dstructs/circular-buffer","27L":"@stdlib/dstructs-circular-buffer","27M":"@stdlib/dstructs/compact-adjacency-matrix","27N":"@stdlib/dstructs-compact-adjacency-matrix","27O":"@stdlib/dstructs/doubly-linked-list","27P":"@stdlib/dstructs-doubly-linked-list","27Q":"@stdlib/dstructs/fifo","27R":"@stdlib/dstructs-fifo","27S":"@stdlib/dstructs/linked-list","27T":"@stdlib/dstructs-linked-list","27U":"@stdlib/dstructs/named-typed-tuple","27V":"@stdlib/dstructs-named-typed-tuple","27X":"@stdlib/dstructs","27Y":"@stdlib/dstructs/stack","27Z":"@stdlib/dstructs-stack","2KI":"@stdlib/dstructs/struct","2KJ":"@stdlib/dstructs-struct","0Nh":"@stdlib/error","0Ni":"@stdlib/error/reviver","0Nj":"@stdlib/error-reviver","0Nk":"@stdlib/error/to-json","0Nl":"@stdlib/error-to-json","0Nm":"@stdlib/error/tools/database","0Nn":"@stdlib/error-tools-database","0No":"@stdlib/error/tools/fmtprodmsg-factory","0Np":"@stdlib/error-tools-fmtprodmsg-factory","0Nq":"@stdlib/error/tools/fmtprodmsg","0Nr":"@stdlib/error-tools-fmtprodmsg","0Ns":"@stdlib/error/tools/id2msg","0Nt":"@stdlib/error-tools-id2msg","0Nu":"@stdlib/error/tools/id2pkg","0Nv":"@stdlib/error-tools-id2pkg","0Nw":"@stdlib/error/tools/msg2id","0Nx":"@stdlib/error-tools-msg2id","0Ny":"@stdlib/error/tools","0Nz":"@stdlib/error-tools","0O0":"@stdlib/error/tools/pkg2id","0O1":"@stdlib/error-tools-pkg2id","2kI":"@stdlib/fft/base/fftpack/decompose","2kJ":"@stdlib/fft-base-fftpack-decompose","1v2":"@stdlib/fs/append-file","1v3":"@stdlib/fs-append-file","0O2":"@stdlib/fs/close","0O3":"@stdlib/fs-close","0O4":"@stdlib/fs/exists","0O5":"@stdlib/fs-exists","0O6":"@stdlib/fs/open","0O7":"@stdlib/fs-open","0O9":"@stdlib/fs","0OA":"@stdlib/fs/read-dir","0OB":"@stdlib/fs-read-dir","0OC":"@stdlib/fs/read-file-list","0OD":"@stdlib/fs-read-file-list","0OE":"@stdlib/fs/read-file","0OF":"@stdlib/fs-read-file","0OG":"@stdlib/fs/read-json","0OH":"@stdlib/fs-read-json","23G":"@stdlib/fs/read-ndjson","23H":"@stdlib/fs-read-ndjson","0OI":"@stdlib/fs/read-wasm","0OJ":"@stdlib/fs-read-wasm","0OK":"@stdlib/fs/rename","0OL":"@stdlib/fs-rename","0OM":"@stdlib/fs/resolve-parent-path-by","0ON":"@stdlib/fs-resolve-parent-path-by","0OO":"@stdlib/fs/resolve-parent-path","0OP":"@stdlib/fs-resolve-parent-path","1yS":"@stdlib/fs/resolve-parent-paths","1yT":"@stdlib/fs-resolve-parent-paths","0OQ":"@stdlib/fs/unlink","0OR":"@stdlib/fs-unlink","0OS":"@stdlib/fs/write-file","0OT":"@stdlib/fs-write-file","1aq":"@stdlib/function/ctor","1ar":"@stdlib/function-ctor","1at":"@stdlib/function","27a":"@stdlib/function/thunk","27b":"@stdlib/function-thunk","1au":"@stdlib/function/to-string","1av":"@stdlib/function-to-string","0OU":"@stdlib/iter/advance","0OV":"@stdlib/iter-advance","0OW":"@stdlib/iter/any-by","0OX":"@stdlib/iter-any-by","0OY":"@stdlib/iter/any","0OZ":"@stdlib/iter-any","0Oa":"@stdlib/iter/concat","0Ob":"@stdlib/iter-concat","0Oc":"@stdlib/iter/constant","0Od":"@stdlib/iter-constant","0Oe":"@stdlib/iter/counter","0Of":"@stdlib/iter-counter","23I":"@stdlib/iter/cuany-by","23J":"@stdlib/iter-cuany-by","1xS":"@stdlib/iter/cuany","1xT":"@stdlib/iter-cuany","23K":"@stdlib/iter/cuevery-by","23L":"@stdlib/iter-cuevery-by","23M":"@stdlib/iter/cuevery","23N":"@stdlib/iter-cuevery","1zI":"@stdlib/iter/cunone-by","1zJ":"@stdlib/iter-cunone-by","23O":"@stdlib/iter/cunone","23P":"@stdlib/iter-cunone","23Q":"@stdlib/iter/cusome-by","23R":"@stdlib/iter-cusome-by","1yU":"@stdlib/iter/cusome","1yV":"@stdlib/iter-cusome","0Og":"@stdlib/iter/datespace","0Oh":"@stdlib/iter-datespace","0Oi":"@stdlib/iter/dedupe-by","0Oj":"@stdlib/iter-dedupe-by","0Ok":"@stdlib/iter/dedupe","0Ol":"@stdlib/iter-dedupe","1tI":"@stdlib/iter/do-until-each","1tJ":"@stdlib/iter-do-until-each","1tK":"@stdlib/iter/do-while-each","1tL":"@stdlib/iter-do-while-each","0Om":"@stdlib/iter/empty","0On":"@stdlib/iter-empty","0Oo":"@stdlib/iter/every-by","0Op":"@stdlib/iter-every-by","0Oq":"@stdlib/iter/every","0Or":"@stdlib/iter-every","0Os":"@stdlib/iter/fill","0Ot":"@stdlib/iter-fill","0Ou":"@stdlib/iter/filter-map","0Ov":"@stdlib/iter-filter-map","0Ow":"@stdlib/iter/filter","0Ox":"@stdlib/iter-filter","0Oy":"@stdlib/iter/first","0Oz":"@stdlib/iter-first","0P0":"@stdlib/iter/flow","0P1":"@stdlib/iter-flow","0P2":"@stdlib/iter/for-each","0P3":"@stdlib/iter-for-each","0P4":"@stdlib/iter/head","0P5":"@stdlib/iter-head","0P6":"@stdlib/iter/incrspace","0P7":"@stdlib/iter-incrspace","0P8":"@stdlib/iter/intersection-by-hash","0P9":"@stdlib/iter-intersection-by-hash","0PA":"@stdlib/iter/intersection","0PB":"@stdlib/iter-intersection","0PC":"@stdlib/iter/last","0PD":"@stdlib/iter-last","0PE":"@stdlib/iter/length","0PF":"@stdlib/iter-length","0PG":"@stdlib/iter/linspace","0PH":"@stdlib/iter-linspace","0PI":"@stdlib/iter/logspace","0PJ":"@stdlib/iter-logspace","0PK":"@stdlib/iter/map","0PL":"@stdlib/iter-map","0PM":"@stdlib/iter/mapn","0PN":"@stdlib/iter-mapn","0PO":"@stdlib/iter/none-by","0PP":"@stdlib/iter-none-by","0PQ":"@stdlib/iter/none","0PR":"@stdlib/iter-none","0PS":"@stdlib/iter/nth","0PT":"@stdlib/iter-nth","0PV":"@stdlib/iter","0PW":"@stdlib/iter/pipeline-thunk","0PX":"@stdlib/iter-pipeline-thunk","0PY":"@stdlib/iter/pipeline","0PZ":"@stdlib/iter-pipeline","0Pa":"@stdlib/iter/pop","0Pb":"@stdlib/iter-pop","0Pc":"@stdlib/iter/push","0Pd":"@stdlib/iter-push","0Pe":"@stdlib/iter/reject","0Pf":"@stdlib/iter-reject","0Pg":"@stdlib/iter/replicate-by","0Ph":"@stdlib/iter-replicate-by","0Pi":"@stdlib/iter/replicate","0Pj":"@stdlib/iter-replicate","0Pk":"@stdlib/iter/shift","0Pl":"@stdlib/iter-shift","0Pm":"@stdlib/iter/slice","0Pn":"@stdlib/iter-slice","0Po":"@stdlib/iter/some-by","0Pp":"@stdlib/iter-some-by","0Pq":"@stdlib/iter/some","0Pr":"@stdlib/iter-some","0Ps":"@stdlib/iter/step","0Pt":"@stdlib/iter-step","0Pu":"@stdlib/iter/strided-by","0Pv":"@stdlib/iter-strided-by","0Pw":"@stdlib/iter/strided","0Px":"@stdlib/iter-strided","0Py":"@stdlib/iter/to-array-view-right","0Pz":"@stdlib/iter-to-array-view-right","0Q0":"@stdlib/iter/to-array-view","0Q1":"@stdlib/iter-to-array-view","0Q2":"@stdlib/iter/union","0Q3":"@stdlib/iter-union","0Q4":"@stdlib/iter/unique-by-hash","0Q5":"@stdlib/iter-unique-by-hash","0Q6":"@stdlib/iter/unique-by","0Q7":"@stdlib/iter-unique-by","0Q8":"@stdlib/iter/unique","0Q9":"@stdlib/iter-unique","0QA":"@stdlib/iter/unitspace","0QB":"@stdlib/iter-unitspace","0QC":"@stdlib/iter/unshift","0QD":"@stdlib/iter-unshift","1sg":"@stdlib/iter/until-each","1sh":"@stdlib/iter-until-each","1mu":"@stdlib/iter/while-each","1mv":"@stdlib/iter-while-each","27c":"@stdlib/lapack/base/clacgv","27d":"@stdlib/lapack-base-clacgv","27e":"@stdlib/lapack/base/clacpy","27f":"@stdlib/lapack-base-clacpy","27g":"@stdlib/lapack/base/claset","27h":"@stdlib/lapack-base-claset","2H0":"@stdlib/lapack/base/claswp","2H1":"@stdlib/lapack-base-claswp","27i":"@stdlib/lapack/base/crot","27j":"@stdlib/lapack-base-crot","1zK":"@stdlib/lapack/base/dge-trans","1zL":"@stdlib/lapack-base-dge-trans","2I8":"@stdlib/lapack/base/dgttrf","2I9":"@stdlib/lapack-base-dgttrf","1yo":"@stdlib/lapack/base/dlacpy","1yp":"@stdlib/lapack-base-dlacpy","2TG":"@stdlib/lapack/base/dladiv","2TH":"@stdlib/lapack-base-dladiv","20C":"@stdlib/lapack/base/dlamch","20D":"@stdlib/lapack-base-dlamch","2IA":"@stdlib/lapack/base/dlapy2","2IB":"@stdlib/lapack-base-dlapy2","2IC":"@stdlib/lapack/base/dlapy3","2ID":"@stdlib/lapack-base-dlapy3","2V0":"@stdlib/lapack/base/dlarf1f","2V1":"@stdlib/lapack-base-dlarf1f","2OE":"@stdlib/lapack/base/dlaset","2OF":"@stdlib/lapack-base-dlaset","1yq":"@stdlib/lapack/base/dlassq","1yr":"@stdlib/lapack-base-dlassq","1xg":"@stdlib/lapack/base/dlaswp","1xh":"@stdlib/lapack-base-dlaswp","1ys":"@stdlib/lapack/base/dpttrf","1yt":"@stdlib/lapack-base-dpttrf","2IE":"@stdlib/lapack/base/iladlc","2IF":"@stdlib/lapack-base-iladlc","2IG":"@stdlib/lapack/base/iladlr","2IH":"@stdlib/lapack-base-iladlr","1xi":"@stdlib/lapack/base","1xj":"@stdlib/lapack-base","1zM":"@stdlib/lapack/base/sge-trans","1zN":"@stdlib/lapack-base-sge-trans","2OG":"@stdlib/lapack/base/shared","2OH":"@stdlib/lapack-base-shared","1yu":"@stdlib/lapack/base/slacpy","1yv":"@stdlib/lapack-base-slacpy","1zO":"@stdlib/lapack/base/slaswp","1zP":"@stdlib/lapack-base-slaswp","1yw":"@stdlib/lapack/base/spttrf","1yx":"@stdlib/lapack-base-spttrf","2OI":"@stdlib/lapack/base/xerbla","2OJ":"@stdlib/lapack-base-xerbla","26A":"@stdlib/lapack/base/zlacpy","26B":"@stdlib/lapack-base-zlacpy","27k":"@stdlib/lapack/base/zlaset","27l":"@stdlib/lapack-base-zlaset","2GG":"@stdlib/lapack/base/zlaswp","2GH":"@stdlib/lapack-base-zlaswp","26C":"@stdlib/lapack/base/zrot","26D":"@stdlib/lapack-base-zrot","1xl":"@stdlib/lapack","27m":"@stdlib/math/array","27n":"@stdlib/math-array","27o":"@stdlib/math/array/special/abs","27p":"@stdlib/math-array-special-abs","27q":"@stdlib/math/array/special","27r":"@stdlib/math-array-special","27s":"@stdlib/math/array/tools","27t":"@stdlib/math-array-tools","27u":"@stdlib/math/array/tools/unary-factory","27v":"@stdlib/math-array-tools-unary-factory","27w":"@stdlib/math/array/tools/unary","27x":"@stdlib/math-array-tools-unary","0QE":"@stdlib/math/base/assert/int32-is-even","0QF":"@stdlib/math-base-assert-int32-is-even","0QG":"@stdlib/math/base/assert/int32-is-odd","0QH":"@stdlib/math-base-assert-int32-is-odd","0QI":"@stdlib/math/base/assert/is-composite","0QJ":"@stdlib/math-base-assert-is-composite","0QK":"@stdlib/math/base/assert/is-coprime","0QL":"@stdlib/math-base-assert-is-coprime","0QM":"@stdlib/math/base/assert/is-even","0QN":"@stdlib/math-base-assert-is-even","23S":"@stdlib/math/base/assert/is-evenf","23T":"@stdlib/math-base-assert-is-evenf","0QO":"@stdlib/math/base/assert/is-finite","0QP":"@stdlib/math-base-assert-is-finite","0QQ":"@stdlib/math/base/assert/is-finitef","0QR":"@stdlib/math-base-assert-is-finitef","0QS":"@stdlib/math/base/assert/is-infinite","0QT":"@stdlib/math-base-assert-is-infinite","0QU":"@stdlib/math/base/assert/is-infinitef","0QV":"@stdlib/math-base-assert-is-infinitef","0QW":"@stdlib/math/base/assert/is-integer","0QX":"@stdlib/math-base-assert-is-integer","1zQ":"@stdlib/math/base/assert/is-integerf","1zR":"@stdlib/math-base-assert-is-integerf","0QY":"@stdlib/math/base/assert/is-nan","0QZ":"@stdlib/math-base-assert-is-nan","0Qa":"@stdlib/math/base/assert/is-nanf","0Qb":"@stdlib/math-base-assert-is-nanf","1aw":"@stdlib/math/base/assert/is-negative-finite","1ax":"@stdlib/math-base-assert-is-negative-finite","0Qc":"@stdlib/math/base/assert/is-negative-integer","0Qd":"@stdlib/math-base-assert-is-negative-integer","2TI":"@stdlib/math/base/assert/is-negative-integerf","2TJ":"@stdlib/math-base-assert-is-negative-integerf","0Qe":"@stdlib/math/base/assert/is-negative-zero","0Qf":"@stdlib/math-base-assert-is-negative-zero","0Qg":"@stdlib/math/base/assert/is-negative-zerof","0Qh":"@stdlib/math-base-assert-is-negative-zerof","1ay":"@stdlib/math/base/assert/is-nonnegative-finite","1az":"@stdlib/math-base-assert-is-nonnegative-finite","0Qi":"@stdlib/math/base/assert/is-nonnegative-integer","0Qj":"@stdlib/math-base-assert-is-nonnegative-integer","20E":"@stdlib/math/base/assert/is-nonnegative-integerf","20F":"@stdlib/math-base-assert-is-nonnegative-integerf","1b0":"@stdlib/math/base/assert/is-nonpositive-finite","1b1":"@stdlib/math-base-assert-is-nonpositive-finite","0Qk":"@stdlib/math/base/assert/is-nonpositive-integer","0Ql":"@stdlib/math-base-assert-is-nonpositive-integer","0Qm":"@stdlib/math/base/assert/is-odd","0Qn":"@stdlib/math-base-assert-is-odd","24e":"@stdlib/math/base/assert/is-oddf","24f":"@stdlib/math-base-assert-is-oddf","1b2":"@stdlib/math/base/assert/is-positive-finite","1b3":"@stdlib/math-base-assert-is-positive-finite","0Qo":"@stdlib/math/base/assert/is-positive-integer","0Qp":"@stdlib/math-base-assert-is-positive-integer","0Qq":"@stdlib/math/base/assert/is-positive-zero","0Qr":"@stdlib/math-base-assert-is-positive-zero","0Qs":"@stdlib/math/base/assert/is-positive-zerof","0Qt":"@stdlib/math-base-assert-is-positive-zerof","0Qu":"@stdlib/math/base/assert/is-prime","0Qv":"@stdlib/math-base-assert-is-prime","0Qw":"@stdlib/math/base/assert/is-probability","0Qx":"@stdlib/math-base-assert-is-probability","25q":"@stdlib/math/base/assert/is-probabilityf","25r":"@stdlib/math-base-assert-is-probabilityf","0Qy":"@stdlib/math/base/assert/is-safe-integer","0Qz":"@stdlib/math-base-assert-is-safe-integer","0R0":"@stdlib/math/base/assert","0R1":"@stdlib/math-base-assert","0R2":"@stdlib/math/base/assert/uint32-is-pow2","0R3":"@stdlib/math-base-assert-uint32-is-pow2","0R4":"@stdlib/math/base/napi/binary","0R5":"@stdlib/math-base-napi-binary","0R6":"@stdlib/math/base/napi","0R7":"@stdlib/math-base-napi","1m2":"@stdlib/math/base/napi/quaternary","1m3":"@stdlib/math-base-napi-quaternary","1m4":"@stdlib/math/base/napi/quinary","1m5":"@stdlib/math-base-napi-quinary","0R8":"@stdlib/math/base/napi/ternary","0R9":"@stdlib/math-base-napi-ternary","0RA":"@stdlib/math/base/napi/unary","0RB":"@stdlib/math-base-napi-unary","0Ro":"@stdlib/math/base","0Rp":"@stdlib/math-base","0Rq":"@stdlib/math/base/special/abs","0Rr":"@stdlib/math-base-special-abs","0Rs":"@stdlib/math/base/special/abs2","0Rt":"@stdlib/math-base-special-abs2","0Ru":"@stdlib/math/base/special/abs2f","0Rv":"@stdlib/math-base-special-abs2f","0Rw":"@stdlib/math/base/special/absf","0Rx":"@stdlib/math-base-special-absf","2TK":"@stdlib/math/base/special/absgammalnf","2TL":"@stdlib/math-base-special-absgammalnf","0Ry":"@stdlib/math/base/special/acos","0Rz":"@stdlib/math-base-special-acos","1tM":"@stdlib/math/base/special/acosd","1tN":"@stdlib/math-base-special-acosd","23U":"@stdlib/math/base/special/acosdf","23V":"@stdlib/math-base-special-acosdf","1tO":"@stdlib/math/base/special/acosf","1tP":"@stdlib/math-base-special-acosf","0S0":"@stdlib/math/base/special/acosh","0S1":"@stdlib/math-base-special-acosh","2kK":"@stdlib/math/base/special/acoshf","2kL":"@stdlib/math-base-special-acoshf","0S2":"@stdlib/math/base/special/acot","0S3":"@stdlib/math-base-special-acot","1tQ":"@stdlib/math/base/special/acotd","1tR":"@stdlib/math-base-special-acotd","20G":"@stdlib/math/base/special/acotdf","20H":"@stdlib/math-base-special-acotdf","1tS":"@stdlib/math/base/special/acotf","1tT":"@stdlib/math-base-special-acotf","0S4":"@stdlib/math/base/special/acoth","0S5":"@stdlib/math-base-special-acoth","2kM":"@stdlib/math/base/special/acothf","2kN":"@stdlib/math-base-special-acothf","0S6":"@stdlib/math/base/special/acovercos","0S7":"@stdlib/math-base-special-acovercos","20I":"@stdlib/math/base/special/acovercosf","20J":"@stdlib/math-base-special-acovercosf","0S8":"@stdlib/math/base/special/acoversin","0S9":"@stdlib/math-base-special-acoversin","20K":"@stdlib/math/base/special/acoversinf","20L":"@stdlib/math-base-special-acoversinf","0SA":"@stdlib/math/base/special/acsc","0SB":"@stdlib/math-base-special-acsc","1tU":"@stdlib/math/base/special/acscd","1tV":"@stdlib/math-base-special-acscd","1v4":"@stdlib/math/base/special/acscdf","1v5":"@stdlib/math-base-special-acscdf","1tW":"@stdlib/math/base/special/acscf","1tX":"@stdlib/math-base-special-acscf","0SC":"@stdlib/math/base/special/acsch","0SD":"@stdlib/math-base-special-acsch","0SE":"@stdlib/math/base/special/ahavercos","0SF":"@stdlib/math-base-special-ahavercos","23W":"@stdlib/math/base/special/ahavercosf","23X":"@stdlib/math-base-special-ahavercosf","0SG":"@stdlib/math/base/special/ahaversin","0SH":"@stdlib/math-base-special-ahaversin","23Y":"@stdlib/math/base/special/ahaversinf","23Z":"@stdlib/math-base-special-ahaversinf","1b6":"@stdlib/math/base/special/asec","1b7":"@stdlib/math-base-special-asec","1tY":"@stdlib/math/base/special/asecd","1tZ":"@stdlib/math-base-special-asecd","1v6":"@stdlib/math/base/special/asecdf","1v7":"@stdlib/math-base-special-asecdf","1ta":"@stdlib/math/base/special/asecf","1tb":"@stdlib/math-base-special-asecf","0SI":"@stdlib/math/base/special/asech","0SJ":"@stdlib/math-base-special-asech","0SK":"@stdlib/math/base/special/asin","0SL":"@stdlib/math-base-special-asin","1tc":"@stdlib/math/base/special/asind","1td":"@stdlib/math-base-special-asind","1v8":"@stdlib/math/base/special/asindf","1v9":"@stdlib/math-base-special-asindf","1te":"@stdlib/math/base/special/asinf","1tf":"@stdlib/math-base-special-asinf","0SM":"@stdlib/math/base/special/asinh","0SN":"@stdlib/math-base-special-asinh","2kO":"@stdlib/math/base/special/asinhf","2kP":"@stdlib/math-base-special-asinhf","0SO":"@stdlib/math/base/special/atan","0SP":"@stdlib/math-base-special-atan","0SQ":"@stdlib/math/base/special/atan2","0SR":"@stdlib/math-base-special-atan2","2Ds":"@stdlib/math/base/special/atan2d","2Dt":"@stdlib/math-base-special-atan2d","2II":"@stdlib/math/base/special/atan2f","2IJ":"@stdlib/math-base-special-atan2f","1tg":"@stdlib/math/base/special/atand","1th":"@stdlib/math-base-special-atand","20M":"@stdlib/math/base/special/atandf","20N":"@stdlib/math-base-special-atandf","1ti":"@stdlib/math/base/special/atanf","1tj":"@stdlib/math-base-special-atanf","0SS":"@stdlib/math/base/special/atanh","0ST":"@stdlib/math-base-special-atanh","2kQ":"@stdlib/math/base/special/atanhf","2kR":"@stdlib/math-base-special-atanhf","0SU":"@stdlib/math/base/special/avercos","0SV":"@stdlib/math-base-special-avercos","20O":"@stdlib/math/base/special/avercosf","20P":"@stdlib/math-base-special-avercosf","0SW":"@stdlib/math/base/special/aversin","0SX":"@stdlib/math-base-special-aversin","20Q":"@stdlib/math/base/special/aversinf","20R":"@stdlib/math-base-special-aversinf","0SY":"@stdlib/math/base/special/bernoulli","0SZ":"@stdlib/math-base-special-bernoulli","2H2":"@stdlib/math/base/special/bernoullif","2H3":"@stdlib/math-base-special-bernoullif","0Sa":"@stdlib/math/base/special/besselj0","0Sb":"@stdlib/math-base-special-besselj0","0Sc":"@stdlib/math/base/special/besselj1","0Sd":"@stdlib/math-base-special-besselj1","0Se":"@stdlib/math/base/special/bessely0","0Sf":"@stdlib/math-base-special-bessely0","0Sg":"@stdlib/math/base/special/bessely1","0Sh":"@stdlib/math-base-special-bessely1","0Si":"@stdlib/math/base/special/beta","0Sj":"@stdlib/math-base-special-beta","0Sk":"@stdlib/math/base/special/betainc","0Sl":"@stdlib/math-base-special-betainc","0Sm":"@stdlib/math/base/special/betaincinv","0Sn":"@stdlib/math-base-special-betaincinv","0So":"@stdlib/math/base/special/betaln","0Sp":"@stdlib/math-base-special-betaln","0Sq":"@stdlib/math/base/special/binet","0Sr":"@stdlib/math-base-special-binet","0Ss":"@stdlib/math/base/special/binomcoef","0St":"@stdlib/math-base-special-binomcoef","2IK":"@stdlib/math/base/special/binomcoeff","2IL":"@stdlib/math-base-special-binomcoeff","0Su":"@stdlib/math/base/special/binomcoefln","0Sv":"@stdlib/math-base-special-binomcoefln","0Sw":"@stdlib/math/base/special/boxcox","0Sx":"@stdlib/math-base-special-boxcox","0Sy":"@stdlib/math/base/special/boxcox1p","0Sz":"@stdlib/math-base-special-boxcox1p","0T0":"@stdlib/math/base/special/boxcox1pinv","0T1":"@stdlib/math-base-special-boxcox1pinv","0T2":"@stdlib/math/base/special/boxcoxinv","0T3":"@stdlib/math-base-special-boxcoxinv","0T4":"@stdlib/math/base/special/cabs","0T5":"@stdlib/math-base-special-cabs","0T6":"@stdlib/math/base/special/cabs2","0T7":"@stdlib/math-base-special-cabs2","0T8":"@stdlib/math/base/special/cabs2f","0T9":"@stdlib/math-base-special-cabs2f","0TA":"@stdlib/math/base/special/cabsf","0TB":"@stdlib/math-base-special-cabsf","0TC":"@stdlib/math/base/special/cbrt","0TD":"@stdlib/math-base-special-cbrt","0TE":"@stdlib/math/base/special/cbrtf","0TF":"@stdlib/math-base-special-cbrtf","0TG":"@stdlib/math/base/special/cceil","0TH":"@stdlib/math-base-special-cceil","0TI":"@stdlib/math/base/special/cceilf","0TJ":"@stdlib/math-base-special-cceilf","0TK":"@stdlib/math/base/special/cceiln","0TL":"@stdlib/math-base-special-cceiln","0TM":"@stdlib/math/base/special/ccis","0TN":"@stdlib/math-base-special-ccis","0TO":"@stdlib/math/base/special/ceil","0TP":"@stdlib/math-base-special-ceil","0TQ":"@stdlib/math/base/special/ceil10","0TR":"@stdlib/math-base-special-ceil10","0TS":"@stdlib/math/base/special/ceil2","0TT":"@stdlib/math-base-special-ceil2","0TU":"@stdlib/math/base/special/ceilb","0TV":"@stdlib/math-base-special-ceilb","0TW":"@stdlib/math/base/special/ceilf","0TX":"@stdlib/math-base-special-ceilf","0TY":"@stdlib/math/base/special/ceiln","0TZ":"@stdlib/math-base-special-ceiln","0Ta":"@stdlib/math/base/special/ceilsd","0Tb":"@stdlib/math-base-special-ceilsd","0Tc":"@stdlib/math/base/special/cexp","0Td":"@stdlib/math-base-special-cexp","0Te":"@stdlib/math/base/special/cflipsign","0Tf":"@stdlib/math-base-special-cflipsign","0Tg":"@stdlib/math/base/special/cflipsignf","0Th":"@stdlib/math-base-special-cflipsignf","0Ti":"@stdlib/math/base/special/cfloor","0Tj":"@stdlib/math-base-special-cfloor","23a":"@stdlib/math/base/special/cfloorf","23b":"@stdlib/math-base-special-cfloorf","0Tk":"@stdlib/math/base/special/cfloorn","0Tl":"@stdlib/math-base-special-cfloorn","0Tq":"@stdlib/math/base/special/cinv","0Tr":"@stdlib/math-base-special-cinv","2IM":"@stdlib/math/base/special/cinvf","2IN":"@stdlib/math-base-special-cinvf","0Ts":"@stdlib/math/base/special/clamp","0Tt":"@stdlib/math-base-special-clamp","0Tu":"@stdlib/math/base/special/clampf","0Tv":"@stdlib/math-base-special-clampf","0Tw":"@stdlib/math/base/special/copysign","0Tx":"@stdlib/math-base-special-copysign","0Ty":"@stdlib/math/base/special/copysignf","0Tz":"@stdlib/math-base-special-copysignf","0U0":"@stdlib/math/base/special/cos","0U1":"@stdlib/math-base-special-cos","1tk":"@stdlib/math/base/special/cosd","1tl":"@stdlib/math-base-special-cosd","2TM":"@stdlib/math/base/special/cosdf","2TN":"@stdlib/math-base-special-cosdf","2KK":"@stdlib/math/base/special/cosf","2KL":"@stdlib/math-base-special-cosf","0U2":"@stdlib/math/base/special/cosh","0U3":"@stdlib/math-base-special-cosh","2kS":"@stdlib/math/base/special/coshf","2kT":"@stdlib/math-base-special-coshf","0U4":"@stdlib/math/base/special/cosm1","0U5":"@stdlib/math-base-special-cosm1","2KM":"@stdlib/math/base/special/cosm1f","2KN":"@stdlib/math-base-special-cosm1f","0U6":"@stdlib/math/base/special/cospi","0U7":"@stdlib/math-base-special-cospi","2Rq":"@stdlib/math/base/special/cospif","2Rr":"@stdlib/math-base-special-cospif","0U8":"@stdlib/math/base/special/cot","0U9":"@stdlib/math-base-special-cot","1tm":"@stdlib/math/base/special/cotd","1tn":"@stdlib/math-base-special-cotd","2TO":"@stdlib/math/base/special/cotdf","2TP":"@stdlib/math-base-special-cotdf","2TQ":"@stdlib/math/base/special/cotf","2TR":"@stdlib/math-base-special-cotf","0UA":"@stdlib/math/base/special/coth","0UB":"@stdlib/math-base-special-coth","0UC":"@stdlib/math/base/special/covercos","0UD":"@stdlib/math-base-special-covercos","2KO":"@stdlib/math/base/special/covercosf","2KP":"@stdlib/math-base-special-covercosf","0UE":"@stdlib/math/base/special/coversin","0UF":"@stdlib/math-base-special-coversin","2KQ":"@stdlib/math/base/special/coversinf","2KR":"@stdlib/math-base-special-coversinf","0UG":"@stdlib/math/base/special/cphase","0UH":"@stdlib/math-base-special-cphase","2KS":"@stdlib/math/base/special/cphasef","2KT":"@stdlib/math-base-special-cphasef","0UI":"@stdlib/math/base/special/cpolar","0UJ":"@stdlib/math-base-special-cpolar","2Rs":"@stdlib/math/base/special/cpolarf","2Rt":"@stdlib/math-base-special-cpolarf","0UK":"@stdlib/math/base/special/cround","0UL":"@stdlib/math-base-special-cround","23c":"@stdlib/math/base/special/croundf","23d":"@stdlib/math-base-special-croundf","0UM":"@stdlib/math/base/special/croundn","0UN":"@stdlib/math-base-special-croundn","1si":"@stdlib/math/base/special/csc","1sj":"@stdlib/math-base-special-csc","1to":"@stdlib/math/base/special/cscd","1tp":"@stdlib/math-base-special-cscd","2TS":"@stdlib/math/base/special/cscdf","2TT":"@stdlib/math-base-special-cscdf","2KU":"@stdlib/math/base/special/cscf","2KV":"@stdlib/math-base-special-cscf","0UO":"@stdlib/math/base/special/csch","0UP":"@stdlib/math-base-special-csch","0UQ":"@stdlib/math/base/special/csignum","0UR":"@stdlib/math-base-special-csignum","2Du":"@stdlib/math/base/special/csignumf","2Dv":"@stdlib/math-base-special-csignumf","0US":"@stdlib/math/base/special/deg2rad","0UT":"@stdlib/math-base-special-deg2rad","0UU":"@stdlib/math/base/special/deg2radf","0UV":"@stdlib/math-base-special-deg2radf","0UW":"@stdlib/math/base/special/digamma","0UX":"@stdlib/math-base-special-digamma","0UY":"@stdlib/math/base/special/dirac-delta","0UZ":"@stdlib/math-base-special-dirac-delta","25s":"@stdlib/math/base/special/dirac-deltaf","25t":"@stdlib/math-base-special-dirac-deltaf","0Ua":"@stdlib/math/base/special/dirichlet-eta","0Ub":"@stdlib/math-base-special-dirichlet-eta","0Uc":"@stdlib/math/base/special/ellipe","0Ud":"@stdlib/math-base-special-ellipe","1b8":"@stdlib/math/base/special/ellipj","1b9":"@stdlib/math-base-special-ellipj","0Ue":"@stdlib/math/base/special/ellipk","0Uf":"@stdlib/math-base-special-ellipk","0Ug":"@stdlib/math/base/special/erf","0Uh":"@stdlib/math-base-special-erf","0Ui":"@stdlib/math/base/special/erfc","0Uj":"@stdlib/math-base-special-erfc","0Uk":"@stdlib/math/base/special/erfcinv","0Ul":"@stdlib/math-base-special-erfcinv","1bA":"@stdlib/math/base/special/erfcx","1bB":"@stdlib/math-base-special-erfcx","0Um":"@stdlib/math/base/special/erfinv","0Un":"@stdlib/math-base-special-erfinv","0Uo":"@stdlib/math/base/special/exp","0Up":"@stdlib/math-base-special-exp","0Uq":"@stdlib/math/base/special/exp10","0Ur":"@stdlib/math-base-special-exp10","0Us":"@stdlib/math/base/special/exp2","0Ut":"@stdlib/math-base-special-exp2","0Uu":"@stdlib/math/base/special/expit","0Uv":"@stdlib/math-base-special-expit","0Uw":"@stdlib/math/base/special/expm1","0Ux":"@stdlib/math-base-special-expm1","0Uy":"@stdlib/math/base/special/expm1rel","0Uz":"@stdlib/math-base-special-expm1rel","0V0":"@stdlib/math/base/special/factorial","0V1":"@stdlib/math-base-special-factorial","1mG":"@stdlib/math/base/special/factorial2","1mH":"@stdlib/math-base-special-factorial2","2IO":"@stdlib/math/base/special/factorial2f","2IP":"@stdlib/math-base-special-factorial2f","0V2":"@stdlib/math/base/special/factorialln","0V3":"@stdlib/math-base-special-factorialln","2TU":"@stdlib/math/base/special/factoriallnf","2TV":"@stdlib/math-base-special-factoriallnf","0V4":"@stdlib/math/base/special/falling-factorial","0V5":"@stdlib/math-base-special-falling-factorial","0V6":"@stdlib/math/base/special/fast/abs","0V7":"@stdlib/math-base-special-fast-abs","2V2":"@stdlib/math/base/special/fast/absf","2V3":"@stdlib/math-base-special-fast-absf","0V8":"@stdlib/math/base/special/fast/acosh","0V9":"@stdlib/math-base-special-fast-acosh","0VA":"@stdlib/math/base/special/fast/alpha-max-plus-beta-min","0VB":"@stdlib/math-base-special-fast-alpha-max-plus-beta-min","0VC":"@stdlib/math/base/special/fast/asinh","0VD":"@stdlib/math-base-special-fast-asinh","0VE":"@stdlib/math/base/special/fast/atanh","0VF":"@stdlib/math-base-special-fast-atanh","2kU":"@stdlib/math/base/special/fast/atanhf","2kV":"@stdlib/math-base-special-fast-atanhf","0VG":"@stdlib/math/base/special/fast/hypot","0VH":"@stdlib/math-base-special-fast-hypot","2VO":"@stdlib/math/base/special/fast/hypotf","2VP":"@stdlib/math-base-special-fast-hypotf","0VI":"@stdlib/math/base/special/fast/max","0VJ":"@stdlib/math-base-special-fast-max","2W4":"@stdlib/math/base/special/fast/maxf","2W5":"@stdlib/math-base-special-fast-maxf","0VK":"@stdlib/math/base/special/fast/min","0VL":"@stdlib/math-base-special-fast-min","2WO":"@stdlib/math/base/special/fast/minf","2WP":"@stdlib/math-base-special-fast-minf","0VM":"@stdlib/math/base/special/fast","0VN":"@stdlib/math-base-special-fast","0VO":"@stdlib/math/base/special/fast/pow-int","0VP":"@stdlib/math-base-special-fast-pow-int","0VQ":"@stdlib/math/base/special/fast/uint32-log2","0VR":"@stdlib/math-base-special-fast-uint32-log2","0VS":"@stdlib/math/base/special/fast/uint32-sqrt","0VT":"@stdlib/math-base-special-fast-uint32-sqrt","0VU":"@stdlib/math/base/special/fibonacci-index","0VV":"@stdlib/math-base-special-fibonacci-index","2EW":"@stdlib/math/base/special/fibonacci-indexf","2EX":"@stdlib/math-base-special-fibonacci-indexf","0VW":"@stdlib/math/base/special/fibonacci","0VX":"@stdlib/math-base-special-fibonacci","2Dw":"@stdlib/math/base/special/fibonaccif","2Dx":"@stdlib/math-base-special-fibonaccif","0VY":"@stdlib/math/base/special/flipsign","0VZ":"@stdlib/math-base-special-flipsign","0Va":"@stdlib/math/base/special/flipsignf","0Vb":"@stdlib/math-base-special-flipsignf","0Vc":"@stdlib/math/base/special/floor","0Vd":"@stdlib/math-base-special-floor","0Ve":"@stdlib/math/base/special/floor10","0Vf":"@stdlib/math-base-special-floor10","0Vg":"@stdlib/math/base/special/floor2","0Vh":"@stdlib/math-base-special-floor2","2kW":"@stdlib/math/base/special/floor2f","2kX":"@stdlib/math-base-special-floor2f","0Vi":"@stdlib/math/base/special/floorb","0Vj":"@stdlib/math-base-special-floorb","0Vk":"@stdlib/math/base/special/floorf","0Vl":"@stdlib/math-base-special-floorf","0Vm":"@stdlib/math/base/special/floorn","0Vn":"@stdlib/math-base-special-floorn","2kY":"@stdlib/math/base/special/floornf","2kZ":"@stdlib/math-base-special-floornf","0Vo":"@stdlib/math/base/special/floorsd","0Vp":"@stdlib/math-base-special-floorsd","1yQ":"@stdlib/math/base/special/fmod","1yR":"@stdlib/math-base-special-fmod","23e":"@stdlib/math/base/special/fmodf","23f":"@stdlib/math-base-special-fmodf","0Vq":"@stdlib/math/base/special/fresnel","0Vr":"@stdlib/math-base-special-fresnel","0Vs":"@stdlib/math/base/special/fresnelc","0Vt":"@stdlib/math-base-special-fresnelc","0Vu":"@stdlib/math/base/special/fresnels","0Vv":"@stdlib/math-base-special-fresnels","0Vw":"@stdlib/math/base/special/frexp","0Vx":"@stdlib/math-base-special-frexp","2KW":"@stdlib/math/base/special/frexpf","2KX":"@stdlib/math-base-special-frexpf","0Vy":"@stdlib/math/base/special/gamma-delta-ratio","0Vz":"@stdlib/math-base-special-gamma-delta-ratio","0W0":"@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled","0W1":"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled","2KY":"@stdlib/math/base/special/gamma-lanczos-sum-expg-scaledf","2KZ":"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaledf","0W2":"@stdlib/math/base/special/gamma-lanczos-sum","0W3":"@stdlib/math-base-special-gamma-lanczos-sum","0W4":"@stdlib/math/base/special/gamma","0W5":"@stdlib/math-base-special-gamma","0W6":"@stdlib/math/base/special/gamma1pm1","0W7":"@stdlib/math-base-special-gamma1pm1","0W8":"@stdlib/math/base/special/gammainc","0W9":"@stdlib/math-base-special-gammainc","0WA":"@stdlib/math/base/special/gammaincinv","0WB":"@stdlib/math-base-special-gammaincinv","0WC":"@stdlib/math/base/special/gammaln","0WD":"@stdlib/math-base-special-gammaln","1bC":"@stdlib/math/base/special/gammasgn","1bD":"@stdlib/math-base-special-gammasgn","2H4":"@stdlib/math/base/special/gammasgnf","2H5":"@stdlib/math-base-special-gammasgnf","0WE":"@stdlib/math/base/special/gcd","0WF":"@stdlib/math-base-special-gcd","23g":"@stdlib/math/base/special/gcdf","23h":"@stdlib/math-base-special-gcdf","0WG":"@stdlib/math/base/special/hacovercos","0WH":"@stdlib/math-base-special-hacovercos","2Ka":"@stdlib/math/base/special/hacovercosf","2Kb":"@stdlib/math-base-special-hacovercosf","0WI":"@stdlib/math/base/special/hacoversin","0WJ":"@stdlib/math-base-special-hacoversin","2Kc":"@stdlib/math/base/special/hacoversinf","2Kd":"@stdlib/math-base-special-hacoversinf","0WK":"@stdlib/math/base/special/havercos","0WL":"@stdlib/math-base-special-havercos","2Ke":"@stdlib/math/base/special/havercosf","2Kf":"@stdlib/math-base-special-havercosf","0WM":"@stdlib/math/base/special/haversin","0WN":"@stdlib/math-base-special-haversin","2Kg":"@stdlib/math/base/special/haversinf","2Kh":"@stdlib/math-base-special-haversinf","0WO":"@stdlib/math/base/special/heaviside","0WP":"@stdlib/math-base-special-heaviside","26E":"@stdlib/math/base/special/heavisidef","26F":"@stdlib/math-base-special-heavisidef","27y":"@stdlib/math/base/special/hyp2f1","27z":"@stdlib/math-base-special-hyp2f1","0WQ":"@stdlib/math/base/special/hypot","0WR":"@stdlib/math-base-special-hypot","0WS":"@stdlib/math/base/special/hypotf","0WT":"@stdlib/math-base-special-hypotf","0WY":"@stdlib/math/base/special/inv","0WZ":"@stdlib/math-base-special-inv","0Wa":"@stdlib/math/base/special/invf","0Wb":"@stdlib/math-base-special-invf","0Wc":"@stdlib/math/base/special/kernel-betainc","0Wd":"@stdlib/math-base-special-kernel-betainc","0We":"@stdlib/math/base/special/kernel-betaincinv","0Wf":"@stdlib/math-base-special-kernel-betaincinv","0Wg":"@stdlib/math/base/special/kernel-cos","0Wh":"@stdlib/math-base-special-kernel-cos","2IQ":"@stdlib/math/base/special/kernel-cosf","2IR":"@stdlib/math-base-special-kernel-cosf","1vA":"@stdlib/math/base/special/kernel-log1p","1vB":"@stdlib/math-base-special-kernel-log1p","2OK":"@stdlib/math/base/special/kernel-log1pf","2OL":"@stdlib/math-base-special-kernel-log1pf","0Wi":"@stdlib/math/base/special/kernel-sin","0Wj":"@stdlib/math-base-special-kernel-sin","2Ru":"@stdlib/math/base/special/kernel-sincos","2Rv":"@stdlib/math-base-special-kernel-sincos","2TW":"@stdlib/math/base/special/kernel-sincosf","2TX":"@stdlib/math-base-special-kernel-sincosf","2IS":"@stdlib/math/base/special/kernel-sinf","2IT":"@stdlib/math-base-special-kernel-sinf","0Wk":"@stdlib/math/base/special/kernel-tan","0Wl":"@stdlib/math-base-special-kernel-tan","2Ki":"@stdlib/math/base/special/kernel-tanf","2Kj":"@stdlib/math-base-special-kernel-tanf","0Wm":"@stdlib/math/base/special/kronecker-delta","0Wn":"@stdlib/math-base-special-kronecker-delta","0Wo":"@stdlib/math/base/special/kronecker-deltaf","0Wp":"@stdlib/math-base-special-kronecker-deltaf","0Wq":"@stdlib/math/base/special/labs","0Wr":"@stdlib/math-base-special-labs","0Ws":"@stdlib/math/base/special/lcm","0Wt":"@stdlib/math-base-special-lcm","24g":"@stdlib/math/base/special/lcmf","24h":"@stdlib/math-base-special-lcmf","0Wu":"@stdlib/math/base/special/ldexp","0Wv":"@stdlib/math-base-special-ldexp","20S":"@stdlib/math/base/special/ldexpf","20T":"@stdlib/math-base-special-ldexpf","0Ww":"@stdlib/math/base/special/ln","0Wx":"@stdlib/math-base-special-ln","1wq":"@stdlib/math/base/special/lnf","1wr":"@stdlib/math-base-special-lnf","0Wy":"@stdlib/math/base/special/log","0Wz":"@stdlib/math-base-special-log","0X0":"@stdlib/math/base/special/log10","0X1":"@stdlib/math-base-special-log10","0X2":"@stdlib/math/base/special/log1mexp","0X3":"@stdlib/math-base-special-log1mexp","0X4":"@stdlib/math/base/special/log1p","0X5":"@stdlib/math-base-special-log1p","0X6":"@stdlib/math/base/special/log1pexp","0X7":"@stdlib/math-base-special-log1pexp","2a4":"@stdlib/math/base/special/log1pf","2a5":"@stdlib/math-base-special-log1pf","1im":"@stdlib/math/base/special/log1pmx","1in":"@stdlib/math-base-special-log1pmx","0X8":"@stdlib/math/base/special/log2","0X9":"@stdlib/math-base-special-log2","0XA":"@stdlib/math/base/special/logaddexp","0XB":"@stdlib/math-base-special-logaddexp","20U":"@stdlib/math/base/special/logf","20V":"@stdlib/math-base-special-logf","0XC":"@stdlib/math/base/special/logit","0XD":"@stdlib/math-base-special-logit","2GI":"@stdlib/math/base/special/logitf","2GJ":"@stdlib/math-base-special-logitf","0XE":"@stdlib/math/base/special/lucas","0XF":"@stdlib/math-base-special-lucas","2Eo":"@stdlib/math/base/special/lucasf","2Ep":"@stdlib/math-base-special-lucasf","0XG":"@stdlib/math/base/special/max","0XH":"@stdlib/math-base-special-max","0XI":"@stdlib/math/base/special/maxabs","0XJ":"@stdlib/math-base-special-maxabs","20W":"@stdlib/math/base/special/maxabsf","20X":"@stdlib/math-base-special-maxabsf","1bE":"@stdlib/math/base/special/maxabsn","1bF":"@stdlib/math-base-special-maxabsn","20Y":"@stdlib/math/base/special/maxf","20Z":"@stdlib/math-base-special-maxf","1bG":"@stdlib/math/base/special/maxn","1bH":"@stdlib/math-base-special-maxn","0XK":"@stdlib/math/base/special/min","0XL":"@stdlib/math-base-special-min","0XM":"@stdlib/math/base/special/minabs","0XN":"@stdlib/math-base-special-minabs","20a":"@stdlib/math/base/special/minabsf","20b":"@stdlib/math-base-special-minabsf","1bI":"@stdlib/math/base/special/minabsn","1bJ":"@stdlib/math-base-special-minabsn","20c":"@stdlib/math/base/special/minf","20d":"@stdlib/math-base-special-minf","0XO":"@stdlib/math/base/special/minmax","0XP":"@stdlib/math-base-special-minmax","0XQ":"@stdlib/math/base/special/minmaxabs","0XR":"@stdlib/math-base-special-minmaxabs","2Kk":"@stdlib/math/base/special/minmaxabsf","2Kl":"@stdlib/math-base-special-minmaxabsf","1bK":"@stdlib/math/base/special/minmaxabsn","1bL":"@stdlib/math-base-special-minmaxabsn","2Km":"@stdlib/math/base/special/minmaxf","2Kn":"@stdlib/math-base-special-minmaxf","1bM":"@stdlib/math/base/special/minmaxn","1bN":"@stdlib/math-base-special-minmaxn","1bO":"@stdlib/math/base/special/minn","1bP":"@stdlib/math-base-special-minn","0XS":"@stdlib/math/base/special/modf","0XT":"@stdlib/math-base-special-modf","2Ko":"@stdlib/math/base/special/modff","2Kp":"@stdlib/math-base-special-modff","1ws":"@stdlib/math/base/special/nanmax","1wt":"@stdlib/math-base-special-nanmax","23i":"@stdlib/math/base/special/nanmaxf","23j":"@stdlib/math-base-special-nanmaxf","1wu":"@stdlib/math/base/special/nanmin","1wv":"@stdlib/math-base-special-nanmin","23k":"@stdlib/math/base/special/nanminf","23l":"@stdlib/math-base-special-nanminf","0XU":"@stdlib/math/base/special/negafibonacci","0XV":"@stdlib/math-base-special-negafibonacci","2IU":"@stdlib/math/base/special/negafibonaccif","2IV":"@stdlib/math-base-special-negafibonaccif","0XW":"@stdlib/math/base/special/negalucas","0XX":"@stdlib/math-base-special-negalucas","24i":"@stdlib/math/base/special/negalucasf","24j":"@stdlib/math-base-special-negalucasf","0XY":"@stdlib/math/base/special/nonfibonacci","0XZ":"@stdlib/math-base-special-nonfibonacci","24k":"@stdlib/math/base/special/nonfibonaccif","24l":"@stdlib/math-base-special-nonfibonaccif","0Xa":"@stdlib/math/base/special","0Xb":"@stdlib/math-base-special","0Xc":"@stdlib/math/base/special/pdiff","0Xd":"@stdlib/math-base-special-pdiff","0Xe":"@stdlib/math/base/special/pdifff","0Xf":"@stdlib/math-base-special-pdifff","0Xg":"@stdlib/math/base/special/polygamma","0Xh":"@stdlib/math-base-special-polygamma","0Xi":"@stdlib/math/base/special/pow","0Xj":"@stdlib/math-base-special-pow","2a6":"@stdlib/math/base/special/powf","2a7":"@stdlib/math-base-special-powf","0Xk":"@stdlib/math/base/special/powm1","0Xl":"@stdlib/math-base-special-powm1","0Xm":"@stdlib/math/base/special/rad2deg","0Xn":"@stdlib/math-base-special-rad2deg","1tq":"@stdlib/math/base/special/rad2degf","1tr":"@stdlib/math-base-special-rad2degf","0Xo":"@stdlib/math/base/special/ramp","0Xp":"@stdlib/math-base-special-ramp","0Xq":"@stdlib/math/base/special/rampf","0Xr":"@stdlib/math-base-special-rampf","1bQ":"@stdlib/math/base/special/rcbrt","1bR":"@stdlib/math-base-special-rcbrt","1vC":"@stdlib/math/base/special/rcbrtf","1vD":"@stdlib/math-base-special-rcbrtf","0Xs":"@stdlib/math/base/special/rempio2","0Xt":"@stdlib/math-base-special-rempio2","2IW":"@stdlib/math/base/special/rempio2f","2IX":"@stdlib/math-base-special-rempio2f","0Xu":"@stdlib/math/base/special/riemann-zeta","0Xv":"@stdlib/math-base-special-riemann-zeta","0Xw":"@stdlib/math/base/special/rising-factorial","0Xx":"@stdlib/math-base-special-rising-factorial","2OM":"@stdlib/math/base/special/round-nearest-even","2ON":"@stdlib/math-base-special-round-nearest-even","0Xy":"@stdlib/math/base/special/round","0Xz":"@stdlib/math-base-special-round","0Y0":"@stdlib/math/base/special/round10","0Y1":"@stdlib/math-base-special-round10","0Y2":"@stdlib/math/base/special/round2","0Y3":"@stdlib/math-base-special-round2","0Y4":"@stdlib/math/base/special/roundb","0Y5":"@stdlib/math-base-special-roundb","1zS":"@stdlib/math/base/special/roundf","1zT":"@stdlib/math-base-special-roundf","0Y6":"@stdlib/math/base/special/roundn","0Y7":"@stdlib/math-base-special-roundn","2ka":"@stdlib/math/base/special/roundnf","2kb":"@stdlib/math-base-special-roundnf","0Y8":"@stdlib/math/base/special/roundsd","0Y9":"@stdlib/math-base-special-roundsd","0YA":"@stdlib/math/base/special/rsqrt","0YB":"@stdlib/math-base-special-rsqrt","0YC":"@stdlib/math/base/special/rsqrtf","0YD":"@stdlib/math-base-special-rsqrtf","23m":"@stdlib/math/base/special/sec","23n":"@stdlib/math-base-special-sec","1ts":"@stdlib/math/base/special/secd","1tt":"@stdlib/math-base-special-secd","2TY":"@stdlib/math/base/special/secdf","2TZ":"@stdlib/math-base-special-secdf","2Kq":"@stdlib/math/base/special/secf","2Kr":"@stdlib/math-base-special-secf","2OO":"@stdlib/math/base/special/sech","2OP":"@stdlib/math-base-special-sech","0YE":"@stdlib/math/base/special/sici","0YF":"@stdlib/math-base-special-sici","0YG":"@stdlib/math/base/special/signum","0YH":"@stdlib/math-base-special-signum","0YI":"@stdlib/math/base/special/signumf","0YJ":"@stdlib/math-base-special-signumf","0YK":"@stdlib/math/base/special/sin","0YL":"@stdlib/math-base-special-sin","0YM":"@stdlib/math/base/special/sinc","0YN":"@stdlib/math-base-special-sinc","2Ta":"@stdlib/math/base/special/sincf","2Tb":"@stdlib/math-base-special-sincf","0YO":"@stdlib/math/base/special/sincos","0YP":"@stdlib/math-base-special-sincos","2AO":"@stdlib/math/base/special/sincosd","2AP":"@stdlib/math-base-special-sincosd","2kc":"@stdlib/math/base/special/sincosdf","2kd":"@stdlib/math-base-special-sincosdf","2Tc":"@stdlib/math/base/special/sincosf","2Td":"@stdlib/math-base-special-sincosf","0YQ":"@stdlib/math/base/special/sincospi","0YR":"@stdlib/math-base-special-sincospi","2AQ":"@stdlib/math/base/special/sind","2AR":"@stdlib/math-base-special-sind","2Te":"@stdlib/math/base/special/sindf","2Tf":"@stdlib/math-base-special-sindf","2Ks":"@stdlib/math/base/special/sinf","2Kt":"@stdlib/math-base-special-sinf","0YS":"@stdlib/math/base/special/sinh","0YT":"@stdlib/math-base-special-sinh","0YU":"@stdlib/math/base/special/sinpi","0YV":"@stdlib/math-base-special-sinpi","2Rw":"@stdlib/math/base/special/sinpif","2Rx":"@stdlib/math-base-special-sinpif","0YW":"@stdlib/math/base/special/spence","0YX":"@stdlib/math-base-special-spence","2IY":"@stdlib/math/base/special/spencef","2IZ":"@stdlib/math-base-special-spencef","0YY":"@stdlib/math/base/special/sqrt","0YZ":"@stdlib/math-base-special-sqrt","0Ya":"@stdlib/math/base/special/sqrt1pm1","0Yb":"@stdlib/math-base-special-sqrt1pm1","0Yc":"@stdlib/math/base/special/sqrtf","0Yd":"@stdlib/math-base-special-sqrtf","1bS":"@stdlib/math/base/special/sqrtpi","1bT":"@stdlib/math-base-special-sqrtpi","24m":"@stdlib/math/base/special/sqrtpif","24n":"@stdlib/math-base-special-sqrtpif","0Ye":"@stdlib/math/base/special/tan","0Yf":"@stdlib/math-base-special-tan","1tu":"@stdlib/math/base/special/tand","1tv":"@stdlib/math-base-special-tand","2Tg":"@stdlib/math/base/special/tandf","2Th":"@stdlib/math-base-special-tandf","2Ku":"@stdlib/math/base/special/tanf","2Kv":"@stdlib/math-base-special-tanf","0Yg":"@stdlib/math/base/special/tanh","0Yh":"@stdlib/math-base-special-tanh","0Yi":"@stdlib/math/base/special/tribonacci","0Yj":"@stdlib/math-base-special-tribonacci","2Ia":"@stdlib/math/base/special/tribonaccif","2Ib":"@stdlib/math-base-special-tribonaccif","0Yk":"@stdlib/math/base/special/trigamma","0Yl":"@stdlib/math-base-special-trigamma","2Ti":"@stdlib/math/base/special/trigammaf","2Tj":"@stdlib/math-base-special-trigammaf","0Ym":"@stdlib/math/base/special/trunc","0Yn":"@stdlib/math-base-special-trunc","0Yo":"@stdlib/math/base/special/trunc10","0Yp":"@stdlib/math-base-special-trunc10","0Yq":"@stdlib/math/base/special/trunc2","0Yr":"@stdlib/math-base-special-trunc2","0Ys":"@stdlib/math/base/special/truncb","0Yt":"@stdlib/math-base-special-truncb","0Yu":"@stdlib/math/base/special/truncf","0Yv":"@stdlib/math-base-special-truncf","0Yw":"@stdlib/math/base/special/truncn","0Yx":"@stdlib/math-base-special-truncn","0Yy":"@stdlib/math/base/special/truncsd","0Yz":"@stdlib/math-base-special-truncsd","0Z0":"@stdlib/math/base/special/vercos","0Z1":"@stdlib/math-base-special-vercos","2Kw":"@stdlib/math/base/special/vercosf","2Kx":"@stdlib/math-base-special-vercosf","0Z2":"@stdlib/math/base/special/versin","0Z3":"@stdlib/math-base-special-versin","2Ky":"@stdlib/math/base/special/versinf","2Kz":"@stdlib/math-base-special-versinf","0Z4":"@stdlib/math/base/special/wrap","0Z5":"@stdlib/math-base-special-wrap","2Ic":"@stdlib/math/base/special/wrapf","2Id":"@stdlib/math-base-special-wrapf","0Z6":"@stdlib/math/base/special/xlog1py","0Z7":"@stdlib/math-base-special-xlog1py","0Z8":"@stdlib/math/base/special/xlogy","0Z9":"@stdlib/math-base-special-xlogy","20e":"@stdlib/math/base/special/xlogyf","20f":"@stdlib/math-base-special-xlogyf","2ke":"@stdlib/math/base/tools/chebyshev-series","2kf":"@stdlib/math-base-tools-chebyshev-series","2kg":"@stdlib/math/base/tools/chebyshev-seriesf","2kh":"@stdlib/math-base-tools-chebyshev-seriesf","0ZA":"@stdlib/math/base/tools/continued-fraction","0ZB":"@stdlib/math-base-tools-continued-fraction","1bU":"@stdlib/math/base/tools/evalpoly-compile-c","1bV":"@stdlib/math-base-tools-evalpoly-compile-c","0ZC":"@stdlib/math/base/tools/evalpoly-compile","0ZD":"@stdlib/math-base-tools-evalpoly-compile","0ZE":"@stdlib/math/base/tools/evalpoly","0ZF":"@stdlib/math-base-tools-evalpoly","1tw":"@stdlib/math/base/tools/evalpolyf","1tx":"@stdlib/math-base-tools-evalpolyf","1bW":"@stdlib/math/base/tools/evalrational-compile-c","1bX":"@stdlib/math-base-tools-evalrational-compile-c","0ZG":"@stdlib/math/base/tools/evalrational-compile","0ZH":"@stdlib/math-base-tools-evalrational-compile","0ZI":"@stdlib/math/base/tools/evalrational","0ZJ":"@stdlib/math-base-tools-evalrational","1ty":"@stdlib/math/base/tools/evalrationalf","1tz":"@stdlib/math-base-tools-evalrationalf","0ZK":"@stdlib/math/base/tools/fibpoly","0ZL":"@stdlib/math-base-tools-fibpoly","0ZM":"@stdlib/math/base/tools/hermitepoly","0ZN":"@stdlib/math-base-tools-hermitepoly","0ZO":"@stdlib/math/base/tools/lucaspoly","0ZP":"@stdlib/math-base-tools-lucaspoly","0ZQ":"@stdlib/math/base/tools/normhermitepoly","0ZR":"@stdlib/math-base-tools-normhermitepoly","1vE":"@stdlib/math/base/tools/normhermitepolyf","1vF":"@stdlib/math-base-tools-normhermitepolyf","0ZS":"@stdlib/math/base/tools","0ZT":"@stdlib/math-base-tools","0ZU":"@stdlib/math/base/tools/sum-series","0ZV":"@stdlib/math-base-tools-sum-series","0ZW":"@stdlib/math/base/utils/absolute-difference","0ZX":"@stdlib/math-base-utils-absolute-difference","0ZY":"@stdlib/math/base/utils/float64-epsilon-difference","0ZZ":"@stdlib/math-base-utils-float64-epsilon-difference","0Za":"@stdlib/math/base/utils","0Zb":"@stdlib/math-base-utils","0Zc":"@stdlib/math/base/utils/relative-difference","0Zd":"@stdlib/math-base-utils-relative-difference","0Ze":"@stdlib/math/iter/ops/add","0Zf":"@stdlib/math-iter-ops-add","0Zg":"@stdlib/math/iter/ops/divide","0Zh":"@stdlib/math-iter-ops-divide","0Zi":"@stdlib/math/iter/ops/mod","0Zj":"@stdlib/math-iter-ops-mod","0Zk":"@stdlib/math/iter/ops/multiply","0Zl":"@stdlib/math-iter-ops-multiply","0Zm":"@stdlib/math/iter/ops","0Zn":"@stdlib/math-iter-ops","0Zo":"@stdlib/math/iter/ops/subtract","0Zp":"@stdlib/math-iter-ops-subtract","0Zq":"@stdlib/math/iter","0Zr":"@stdlib/math-iter","0Zs":"@stdlib/math/iter/sequences/composites","0Zt":"@stdlib/math-iter-sequences-composites","0Zu":"@stdlib/math/iter/sequences/continued-fraction","0Zv":"@stdlib/math-iter-sequences-continued-fraction","0Zw":"@stdlib/math/iter/sequences/cubes","0Zx":"@stdlib/math-iter-sequences-cubes","0Zy":"@stdlib/math/iter/sequences/even-integers","0Zz":"@stdlib/math-iter-sequences-even-integers","0a0":"@stdlib/math/iter/sequences/factorials","0a1":"@stdlib/math-iter-sequences-factorials","0a2":"@stdlib/math/iter/sequences/fibonacci","0a3":"@stdlib/math-iter-sequences-fibonacci","0a4":"@stdlib/math/iter/sequences/fifth-powers","0a5":"@stdlib/math-iter-sequences-fifth-powers","0a6":"@stdlib/math/iter/sequences/fourth-powers","0a7":"@stdlib/math-iter-sequences-fourth-powers","0a8":"@stdlib/math/iter/sequences/integers","0a9":"@stdlib/math-iter-sequences-integers","0aA":"@stdlib/math/iter/sequences/lucas","0aB":"@stdlib/math-iter-sequences-lucas","0aC":"@stdlib/math/iter/sequences/negafibonacci","0aD":"@stdlib/math-iter-sequences-negafibonacci","0aE":"@stdlib/math/iter/sequences/negalucas","0aF":"@stdlib/math-iter-sequences-negalucas","0aG":"@stdlib/math/iter/sequences/negative-even-integers","0aH":"@stdlib/math-iter-sequences-negative-even-integers","0aI":"@stdlib/math/iter/sequences/negative-integers","0aJ":"@stdlib/math-iter-sequences-negative-integers","0aK":"@stdlib/math/iter/sequences/negative-odd-integers","0aL":"@stdlib/math-iter-sequences-negative-odd-integers","0aM":"@stdlib/math/iter/sequences/nonfibonacci","0aN":"@stdlib/math-iter-sequences-nonfibonacci","0aO":"@stdlib/math/iter/sequences/nonnegative-even-integers","0aP":"@stdlib/math-iter-sequences-nonnegative-even-integers","0aQ":"@stdlib/math/iter/sequences/nonnegative-integers","0aR":"@stdlib/math-iter-sequences-nonnegative-integers","0aS":"@stdlib/math/iter/sequences/nonpositive-even-integers","0aT":"@stdlib/math-iter-sequences-nonpositive-even-integers","0aU":"@stdlib/math/iter/sequences/nonpositive-integers","0aV":"@stdlib/math-iter-sequences-nonpositive-integers","0aW":"@stdlib/math/iter/sequences/nonsquares","0aX":"@stdlib/math-iter-sequences-nonsquares","0aY":"@stdlib/math/iter/sequences/odd-integers","0aZ":"@stdlib/math-iter-sequences-odd-integers","0aa":"@stdlib/math/iter/sequences","0ab":"@stdlib/math-iter-sequences","0ac":"@stdlib/math/iter/sequences/positive-even-integers","0ad":"@stdlib/math-iter-sequences-positive-even-integers","0ae":"@stdlib/math/iter/sequences/positive-integers","0af":"@stdlib/math-iter-sequences-positive-integers","0ag":"@stdlib/math/iter/sequences/positive-odd-integers","0ah":"@stdlib/math-iter-sequences-positive-odd-integers","0ai":"@stdlib/math/iter/sequences/primes","0aj":"@stdlib/math-iter-sequences-primes","0ak":"@stdlib/math/iter/sequences/squared-triangular","0al":"@stdlib/math-iter-sequences-squared-triangular","0am":"@stdlib/math/iter/sequences/squares","0an":"@stdlib/math-iter-sequences-squares","0ao":"@stdlib/math/iter/sequences/triangular","0ap":"@stdlib/math-iter-sequences-triangular","1sk":"@stdlib/math/iter/sequences/tribonacci","1sl":"@stdlib/math-iter-sequences-tribonacci","0aq":"@stdlib/math/iter/special/abs","0ar":"@stdlib/math-iter-special-abs","0as":"@stdlib/math/iter/special/abs2","0at":"@stdlib/math-iter-special-abs2","0au":"@stdlib/math/iter/special/acos","0av":"@stdlib/math-iter-special-acos","0aw":"@stdlib/math/iter/special/acosh","0ax":"@stdlib/math-iter-special-acosh","0ay":"@stdlib/math/iter/special/acot","0az":"@stdlib/math-iter-special-acot","0b0":"@stdlib/math/iter/special/acoth","0b1":"@stdlib/math-iter-special-acoth","0b2":"@stdlib/math/iter/special/acovercos","0b3":"@stdlib/math-iter-special-acovercos","0b4":"@stdlib/math/iter/special/acoversin","0b5":"@stdlib/math-iter-special-acoversin","0b6":"@stdlib/math/iter/special/ahavercos","0b7":"@stdlib/math-iter-special-ahavercos","0b8":"@stdlib/math/iter/special/ahaversin","0b9":"@stdlib/math-iter-special-ahaversin","0bA":"@stdlib/math/iter/special/asin","0bB":"@stdlib/math-iter-special-asin","0bC":"@stdlib/math/iter/special/asinh","0bD":"@stdlib/math-iter-special-asinh","0bE":"@stdlib/math/iter/special/atan","0bF":"@stdlib/math-iter-special-atan","0bG":"@stdlib/math/iter/special/atan2","0bH":"@stdlib/math-iter-special-atan2","0bI":"@stdlib/math/iter/special/atanh","0bJ":"@stdlib/math-iter-special-atanh","0bK":"@stdlib/math/iter/special/avercos","0bL":"@stdlib/math-iter-special-avercos","0bM":"@stdlib/math/iter/special/aversin","0bN":"@stdlib/math-iter-special-aversin","0bO":"@stdlib/math/iter/special/besselj0","0bP":"@stdlib/math-iter-special-besselj0","0bQ":"@stdlib/math/iter/special/besselj1","0bR":"@stdlib/math-iter-special-besselj1","0bS":"@stdlib/math/iter/special/bessely0","0bT":"@stdlib/math-iter-special-bessely0","0bU":"@stdlib/math/iter/special/bessely1","0bV":"@stdlib/math-iter-special-bessely1","0bW":"@stdlib/math/iter/special/beta","0bX":"@stdlib/math-iter-special-beta","0bY":"@stdlib/math/iter/special/betaln","0bZ":"@stdlib/math-iter-special-betaln","0ba":"@stdlib/math/iter/special/binet","0bb":"@stdlib/math-iter-special-binet","0bc":"@stdlib/math/iter/special/cbrt","0bd":"@stdlib/math-iter-special-cbrt","0be":"@stdlib/math/iter/special/ceil","0bf":"@stdlib/math-iter-special-ceil","0bg":"@stdlib/math/iter/special/ceil10","0bh":"@stdlib/math-iter-special-ceil10","0bi":"@stdlib/math/iter/special/ceil2","0bj":"@stdlib/math-iter-special-ceil2","0bk":"@stdlib/math/iter/special/cos","0bl":"@stdlib/math-iter-special-cos","0bm":"@stdlib/math/iter/special/cosh","0bn":"@stdlib/math-iter-special-cosh","0bo":"@stdlib/math/iter/special/cosm1","0bp":"@stdlib/math-iter-special-cosm1","0bq":"@stdlib/math/iter/special/cospi","0br":"@stdlib/math-iter-special-cospi","0bs":"@stdlib/math/iter/special/covercos","0bt":"@stdlib/math-iter-special-covercos","0bu":"@stdlib/math/iter/special/coversin","0bv":"@stdlib/math-iter-special-coversin","0bw":"@stdlib/math/iter/special/deg2rad","0bx":"@stdlib/math-iter-special-deg2rad","0by":"@stdlib/math/iter/special/digamma","0bz":"@stdlib/math-iter-special-digamma","0c0":"@stdlib/math/iter/special/dirac-delta","0c1":"@stdlib/math-iter-special-dirac-delta","0c2":"@stdlib/math/iter/special/dirichlet-eta","0c3":"@stdlib/math-iter-special-dirichlet-eta","0c4":"@stdlib/math/iter/special/ellipe","0c5":"@stdlib/math-iter-special-ellipe","0c6":"@stdlib/math/iter/special/ellipk","0c7":"@stdlib/math-iter-special-ellipk","0c8":"@stdlib/math/iter/special/erf","0c9":"@stdlib/math-iter-special-erf","0cA":"@stdlib/math/iter/special/erfc","0cB":"@stdlib/math-iter-special-erfc","0cC":"@stdlib/math/iter/special/erfcinv","0cD":"@stdlib/math-iter-special-erfcinv","0cE":"@stdlib/math/iter/special/erfinv","0cF":"@stdlib/math-iter-special-erfinv","0cG":"@stdlib/math/iter/special/exp","0cH":"@stdlib/math-iter-special-exp","0cI":"@stdlib/math/iter/special/exp10","0cJ":"@stdlib/math-iter-special-exp10","0cK":"@stdlib/math/iter/special/exp2","0cL":"@stdlib/math-iter-special-exp2","0cM":"@stdlib/math/iter/special/expit","0cN":"@stdlib/math-iter-special-expit","0cO":"@stdlib/math/iter/special/expm1","0cP":"@stdlib/math-iter-special-expm1","0cQ":"@stdlib/math/iter/special/expm1rel","0cR":"@stdlib/math-iter-special-expm1rel","0cS":"@stdlib/math/iter/special/factorial","0cT":"@stdlib/math-iter-special-factorial","0cU":"@stdlib/math/iter/special/factorialln","0cV":"@stdlib/math-iter-special-factorialln","0cW":"@stdlib/math/iter/special/floor","0cX":"@stdlib/math-iter-special-floor","0cY":"@stdlib/math/iter/special/floor10","0cZ":"@stdlib/math-iter-special-floor10","0ca":"@stdlib/math/iter/special/floor2","0cb":"@stdlib/math-iter-special-floor2","0cc":"@stdlib/math/iter/special/fresnelc","0cd":"@stdlib/math-iter-special-fresnelc","0ce":"@stdlib/math/iter/special/fresnels","0cf":"@stdlib/math-iter-special-fresnels","0cg":"@stdlib/math/iter/special/gamma","0ch":"@stdlib/math-iter-special-gamma","0ci":"@stdlib/math/iter/special/gamma1pm1","0cj":"@stdlib/math-iter-special-gamma1pm1","0ck":"@stdlib/math/iter/special/gammaln","0cl":"@stdlib/math-iter-special-gammaln","0cm":"@stdlib/math/iter/special/hacovercos","0cn":"@stdlib/math-iter-special-hacovercos","0co":"@stdlib/math/iter/special/hacoversin","0cp":"@stdlib/math-iter-special-hacoversin","0cq":"@stdlib/math/iter/special/havercos","0cr":"@stdlib/math-iter-special-havercos","0cs":"@stdlib/math/iter/special/haversin","0ct":"@stdlib/math-iter-special-haversin","0cu":"@stdlib/math/iter/special/inv","0cv":"@stdlib/math-iter-special-inv","0cw":"@stdlib/math/iter/special/ln","0cx":"@stdlib/math-iter-special-ln","0cy":"@stdlib/math/iter/special/log","0cz":"@stdlib/math-iter-special-log","0d0":"@stdlib/math/iter/special/log10","0d1":"@stdlib/math-iter-special-log10","0d2":"@stdlib/math/iter/special/log1mexp","0d3":"@stdlib/math-iter-special-log1mexp","0d4":"@stdlib/math/iter/special/log1p","0d5":"@stdlib/math-iter-special-log1p","0d6":"@stdlib/math/iter/special/log1pexp","0d7":"@stdlib/math-iter-special-log1pexp","0d8":"@stdlib/math/iter/special/log2","0d9":"@stdlib/math-iter-special-log2","0dA":"@stdlib/math/iter/special/logit","0dB":"@stdlib/math-iter-special-logit","0dC":"@stdlib/math/iter/special","0dD":"@stdlib/math-iter-special","0dE":"@stdlib/math/iter/special/pow","0dF":"@stdlib/math-iter-special-pow","0dG":"@stdlib/math/iter/special/rad2deg","0dH":"@stdlib/math-iter-special-rad2deg","0dI":"@stdlib/math/iter/special/ramp","0dJ":"@stdlib/math-iter-special-ramp","0dK":"@stdlib/math/iter/special/riemann-zeta","0dL":"@stdlib/math-iter-special-riemann-zeta","0dM":"@stdlib/math/iter/special/round","0dN":"@stdlib/math-iter-special-round","0dO":"@stdlib/math/iter/special/round10","0dP":"@stdlib/math-iter-special-round10","0dQ":"@stdlib/math/iter/special/round2","0dR":"@stdlib/math-iter-special-round2","0dS":"@stdlib/math/iter/special/rsqrt","0dT":"@stdlib/math-iter-special-rsqrt","0dU":"@stdlib/math/iter/special/signum","0dV":"@stdlib/math-iter-special-signum","0dW":"@stdlib/math/iter/special/sin","0dX":"@stdlib/math-iter-special-sin","0dY":"@stdlib/math/iter/special/sinc","0dZ":"@stdlib/math-iter-special-sinc","0da":"@stdlib/math/iter/special/sinh","0db":"@stdlib/math-iter-special-sinh","0dc":"@stdlib/math/iter/special/sinpi","0dd":"@stdlib/math-iter-special-sinpi","0de":"@stdlib/math/iter/special/spence","0df":"@stdlib/math-iter-special-spence","0dg":"@stdlib/math/iter/special/sqrt","0dh":"@stdlib/math-iter-special-sqrt","0di":"@stdlib/math/iter/special/sqrt1pm1","0dj":"@stdlib/math-iter-special-sqrt1pm1","0dk":"@stdlib/math/iter/special/tan","0dl":"@stdlib/math-iter-special-tan","0dm":"@stdlib/math/iter/special/tanh","0dn":"@stdlib/math-iter-special-tanh","0do":"@stdlib/math/iter/special/trigamma","0dp":"@stdlib/math-iter-special-trigamma","0dq":"@stdlib/math/iter/special/trunc","0dr":"@stdlib/math-iter-special-trunc","0ds":"@stdlib/math/iter/special/trunc10","0dt":"@stdlib/math-iter-special-trunc10","0du":"@stdlib/math/iter/special/trunc2","0dv":"@stdlib/math-iter-special-trunc2","0dw":"@stdlib/math/iter/special/vercos","0dx":"@stdlib/math-iter-special-vercos","0dy":"@stdlib/math/iter/special/versin","0dz":"@stdlib/math-iter-special-versin","0e0":"@stdlib/math/iter/tools/map","0e1":"@stdlib/math-iter-tools-map","0e2":"@stdlib/math/iter/tools/map2","0e3":"@stdlib/math-iter-tools-map2","0e4":"@stdlib/math/iter/tools/map3","0e5":"@stdlib/math-iter-tools-map3","0e6":"@stdlib/math/iter/tools","0e7":"@stdlib/math-iter-tools","0e8":"@stdlib/math/iter/utils/continued-fraction","0e9":"@stdlib/math-iter-utils-continued-fraction","0eA":"@stdlib/math/iter/utils","0eB":"@stdlib/math-iter-utils","0eD":"@stdlib/math","0eE":"@stdlib/math/special/abs","0eF":"@stdlib/math-special-abs","0eG":"@stdlib/math/special","0eH":"@stdlib/math-special","1bY":"@stdlib/math/strided/ops/add-by","1bZ":"@stdlib/math-strided-ops-add-by","0eI":"@stdlib/math/strided/ops/add","0eJ":"@stdlib/math-strided-ops-add","1ba":"@stdlib/math/strided/ops/mul-by","1bb":"@stdlib/math-strided-ops-mul-by","0eK":"@stdlib/math/strided/ops/mul","0eL":"@stdlib/math-strided-ops-mul","0eM":"@stdlib/math/strided/ops","0eN":"@stdlib/math-strided-ops","1bc":"@stdlib/math/strided/ops/sub-by","1bd":"@stdlib/math-strided-ops-sub-by","0eO":"@stdlib/math/strided/ops/sub","0eP":"@stdlib/math-strided-ops-sub","0eQ":"@stdlib/math/strided","0eR":"@stdlib/math-strided","0eS":"@stdlib/math/strided/special/abs-by","0eT":"@stdlib/math-strided-special-abs-by","0eU":"@stdlib/math/strided/special/abs","0eV":"@stdlib/math-strided-special-abs","0eW":"@stdlib/math/strided/special/abs2-by","0eX":"@stdlib/math-strided-special-abs2-by","0eY":"@stdlib/math/strided/special/abs2","0eZ":"@stdlib/math-strided-special-abs2","0ea":"@stdlib/math/strided/special/acos-by","0eb":"@stdlib/math-strided-special-acos-by","0ec":"@stdlib/math/strided/special/acosh-by","0ed":"@stdlib/math-strided-special-acosh-by","0ee":"@stdlib/math/strided/special/acot-by","0ef":"@stdlib/math-strided-special-acot-by","0eg":"@stdlib/math/strided/special/acoth-by","0eh":"@stdlib/math-strided-special-acoth-by","0ei":"@stdlib/math/strided/special/acovercos-by","0ej":"@stdlib/math-strided-special-acovercos-by","0ek":"@stdlib/math/strided/special/acoversin-by","0el":"@stdlib/math-strided-special-acoversin-by","0em":"@stdlib/math/strided/special/ahavercos-by","0en":"@stdlib/math-strided-special-ahavercos-by","0eo":"@stdlib/math/strided/special/ahaversin-by","0ep":"@stdlib/math-strided-special-ahaversin-by","0eq":"@stdlib/math/strided/special/asin-by","0er":"@stdlib/math-strided-special-asin-by","0es":"@stdlib/math/strided/special/asinh-by","0et":"@stdlib/math-strided-special-asinh-by","0eu":"@stdlib/math/strided/special/atan-by","0ev":"@stdlib/math-strided-special-atan-by","0ew":"@stdlib/math/strided/special/atanh-by","0ex":"@stdlib/math-strided-special-atanh-by","0ey":"@stdlib/math/strided/special/avercos-by","0ez":"@stdlib/math-strided-special-avercos-by","0f0":"@stdlib/math/strided/special/aversin-by","0f1":"@stdlib/math-strided-special-aversin-by","0f2":"@stdlib/math/strided/special/besselj0-by","0f3":"@stdlib/math-strided-special-besselj0-by","0f4":"@stdlib/math/strided/special/besselj1-by","0f5":"@stdlib/math-strided-special-besselj1-by","0f6":"@stdlib/math/strided/special/bessely0-by","0f7":"@stdlib/math-strided-special-bessely0-by","0f8":"@stdlib/math/strided/special/bessely1-by","0f9":"@stdlib/math-strided-special-bessely1-by","0fA":"@stdlib/math/strided/special/binet-by","0fB":"@stdlib/math-strided-special-binet-by","1be":"@stdlib/math/strided/special/cbrt-by","1bf":"@stdlib/math-strided-special-cbrt-by","0fC":"@stdlib/math/strided/special/cbrt","0fD":"@stdlib/math-strided-special-cbrt","0fE":"@stdlib/math/strided/special/ceil","0fF":"@stdlib/math-strided-special-ceil","1bg":"@stdlib/math/strided/special/cos-by","1bh":"@stdlib/math-strided-special-cos-by","0fG":"@stdlib/math/strided/special/dabs","0fH":"@stdlib/math-strided-special-dabs","0fI":"@stdlib/math/strided/special/dabs2","0fJ":"@stdlib/math-strided-special-dabs2","1bi":"@stdlib/math/strided/special/dcbrt-by","1bj":"@stdlib/math-strided-special-dcbrt-by","0fK":"@stdlib/math/strided/special/dcbrt","0fL":"@stdlib/math-strided-special-dcbrt","0fM":"@stdlib/math/strided/special/dceil","0fN":"@stdlib/math-strided-special-dceil","0fO":"@stdlib/math/strided/special/ddeg2rad","0fP":"@stdlib/math-strided-special-ddeg2rad","0fQ":"@stdlib/math/strided/special/deg2rad","0fR":"@stdlib/math-strided-special-deg2rad","0fS":"@stdlib/math/strided/special/dfloor","0fT":"@stdlib/math-strided-special-dfloor","0fU":"@stdlib/math/strided/special/dinv","0fV":"@stdlib/math-strided-special-dinv","0fW":"@stdlib/math/strided/special/dmskabs","0fX":"@stdlib/math-strided-special-dmskabs","0fY":"@stdlib/math/strided/special/dmskabs2","0fZ":"@stdlib/math-strided-special-dmskabs2","0fa":"@stdlib/math/strided/special/dmskcbrt","0fb":"@stdlib/math-strided-special-dmskcbrt","0fc":"@stdlib/math/strided/special/dmskceil","0fd":"@stdlib/math-strided-special-dmskceil","0fe":"@stdlib/math/strided/special/dmskdeg2rad","0ff":"@stdlib/math-strided-special-dmskdeg2rad","0fg":"@stdlib/math/strided/special/dmskfloor","0fh":"@stdlib/math-strided-special-dmskfloor","0fi":"@stdlib/math/strided/special/dmskinv","0fj":"@stdlib/math-strided-special-dmskinv","0fk":"@stdlib/math/strided/special/dmskramp","0fl":"@stdlib/math-strided-special-dmskramp","0fm":"@stdlib/math/strided/special/dmskrsqrt","0fn":"@stdlib/math-strided-special-dmskrsqrt","0fo":"@stdlib/math/strided/special/dmsksqrt","0fp":"@stdlib/math-strided-special-dmsksqrt","0fq":"@stdlib/math/strided/special/dmsktrunc","0fr":"@stdlib/math-strided-special-dmsktrunc","0fs":"@stdlib/math/strided/special/dramp","0ft":"@stdlib/math-strided-special-dramp","0fu":"@stdlib/math/strided/special/drsqrt","0fv":"@stdlib/math-strided-special-drsqrt","0fw":"@stdlib/math/strided/special/dsqrt","0fx":"@stdlib/math-strided-special-dsqrt","0fy":"@stdlib/math/strided/special/dtrunc","0fz":"@stdlib/math-strided-special-dtrunc","0g0":"@stdlib/math/strided/special/floor","0g1":"@stdlib/math-strided-special-floor","0g2":"@stdlib/math/strided/special/inv","0g3":"@stdlib/math-strided-special-inv","0g4":"@stdlib/math/strided/special","0g5":"@stdlib/math-strided-special","0g6":"@stdlib/math/strided/special/ramp","0g7":"@stdlib/math-strided-special-ramp","0g8":"@stdlib/math/strided/special/rsqrt","0g9":"@stdlib/math-strided-special-rsqrt","0gA":"@stdlib/math/strided/special/sabs","0gB":"@stdlib/math-strided-special-sabs","0gC":"@stdlib/math/strided/special/sabs2","0gD":"@stdlib/math-strided-special-sabs2","0gE":"@stdlib/math/strided/special/scbrt","0gF":"@stdlib/math-strided-special-scbrt","0gG":"@stdlib/math/strided/special/sceil","0gH":"@stdlib/math-strided-special-sceil","0gI":"@stdlib/math/strided/special/sdeg2rad","0gJ":"@stdlib/math-strided-special-sdeg2rad","0gK":"@stdlib/math/strided/special/sfloor","0gL":"@stdlib/math-strided-special-sfloor","1bk":"@stdlib/math/strided/special/sin-by","1bl":"@stdlib/math-strided-special-sin-by","0gM":"@stdlib/math/strided/special/sinv","0gN":"@stdlib/math-strided-special-sinv","0gO":"@stdlib/math/strided/special/smskabs","0gP":"@stdlib/math-strided-special-smskabs","0gQ":"@stdlib/math/strided/special/smskabs2","0gR":"@stdlib/math-strided-special-smskabs2","0gS":"@stdlib/math/strided/special/smskcbrt","0gT":"@stdlib/math-strided-special-smskcbrt","0gU":"@stdlib/math/strided/special/smskceil","0gV":"@stdlib/math-strided-special-smskceil","0gW":"@stdlib/math/strided/special/smskdeg2rad","0gX":"@stdlib/math-strided-special-smskdeg2rad","0gY":"@stdlib/math/strided/special/smskfloor","0gZ":"@stdlib/math-strided-special-smskfloor","0ga":"@stdlib/math/strided/special/smskinv","0gb":"@stdlib/math-strided-special-smskinv","0gc":"@stdlib/math/strided/special/smskramp","0gd":"@stdlib/math-strided-special-smskramp","0ge":"@stdlib/math/strided/special/smskrsqrt","0gf":"@stdlib/math-strided-special-smskrsqrt","0gg":"@stdlib/math/strided/special/smsksqrt","0gh":"@stdlib/math-strided-special-smsksqrt","0gi":"@stdlib/math/strided/special/smsktrunc","0gj":"@stdlib/math-strided-special-smsktrunc","1bm":"@stdlib/math/strided/special/sqrt-by","1bn":"@stdlib/math-strided-special-sqrt-by","0gk":"@stdlib/math/strided/special/sqrt","0gl":"@stdlib/math-strided-special-sqrt","0gm":"@stdlib/math/strided/special/sramp","0gn":"@stdlib/math-strided-special-sramp","0go":"@stdlib/math/strided/special/srsqrt","0gp":"@stdlib/math-strided-special-srsqrt","0gq":"@stdlib/math/strided/special/ssqrt","0gr":"@stdlib/math-strided-special-ssqrt","0gs":"@stdlib/math/strided/special/strunc","0gt":"@stdlib/math-strided-special-strunc","0gu":"@stdlib/math/strided/special/trunc","0gv":"@stdlib/math-strided-special-trunc","0gw":"@stdlib/math/tools","0gx":"@stdlib/math-tools","0gy":"@stdlib/math/tools/unary","0gz":"@stdlib/math-tools-unary","2ki":"@stdlib/ml/base/kmeans/algorithm-enum2str","2kj":"@stdlib/ml-base-kmeans-algorithm-enum2str","2kk":"@stdlib/ml/base/kmeans/algorithm-resolve-enum","2kl":"@stdlib/ml-base-kmeans-algorithm-resolve-enum","2km":"@stdlib/ml/base/kmeans/algorithm-resolve-str","2kn":"@stdlib/ml-base-kmeans-algorithm-resolve-str","2ko":"@stdlib/ml/base/kmeans/algorithm-str2enum","2kp":"@stdlib/ml-base-kmeans-algorithm-str2enum","2kq":"@stdlib/ml/base/kmeans/algorithms","2kr":"@stdlib/ml-base-kmeans-algorithms","2ks":"@stdlib/ml/base/kmeans/metric-enum2str","2kt":"@stdlib/ml-base-kmeans-metric-enum2str","2ku":"@stdlib/ml/base/kmeans/metric-resolve-enum","2kv":"@stdlib/ml-base-kmeans-metric-resolve-enum","2kw":"@stdlib/ml/base/kmeans/metric-resolve-str","2kx":"@stdlib/ml-base-kmeans-metric-resolve-str","2ky":"@stdlib/ml/base/kmeans/metric-str2enum","2kz":"@stdlib/ml-base-kmeans-metric-str2enum","2l0":"@stdlib/ml/base/kmeans/metrics","2l1":"@stdlib/ml-base-kmeans-metrics","0h0":"@stdlib/ml/incr/binary-classification","0h1":"@stdlib/ml-incr-binary-classification","0h2":"@stdlib/ml/incr/kmeans","0h3":"@stdlib/ml-incr-kmeans","0h4":"@stdlib/ml/incr","0h5":"@stdlib/ml-incr","0h6":"@stdlib/ml/incr/sgd-regression","0h7":"@stdlib/ml-incr-sgd-regression","0h9":"@stdlib/ml","0hA":"@stdlib/namespace/alias2pkg","0hB":"@stdlib/namespace-alias2pkg","0hC":"@stdlib/namespace/alias2related","0hD":"@stdlib/namespace-alias2related","0hE":"@stdlib/namespace/alias2standalone","0hF":"@stdlib/namespace-alias2standalone","0hG":"@stdlib/namespace/aliases","0hH":"@stdlib/namespace-aliases","0hJ":"@stdlib/namespace","0hK":"@stdlib/namespace/pkg2alias","0hL":"@stdlib/namespace-pkg2alias","0hM":"@stdlib/namespace/pkg2related","0hN":"@stdlib/namespace-pkg2related","0hO":"@stdlib/namespace/pkg2standalone","0hP":"@stdlib/namespace-pkg2standalone","0hQ":"@stdlib/namespace/standalone2pkg","0hR":"@stdlib/namespace-standalone2pkg","2l2":"@stdlib/napi/argv-booleanarray","2l3":"@stdlib/napi-argv-booleanarray","1vG":"@stdlib/napi/argv-complex128","1vH":"@stdlib/napi-argv-complex128","1bo":"@stdlib/napi/argv-complex128array","1bp":"@stdlib/napi-argv-complex128array","1vI":"@stdlib/napi/argv-complex64","1vJ":"@stdlib/napi-argv-complex64","1bq":"@stdlib/napi/argv-complex64array","1br":"@stdlib/napi-argv-complex64array","2L0":"@stdlib/napi/argv-dataview-cast","2L1":"@stdlib/napi-argv-dataview-cast","2L2":"@stdlib/napi/argv-dataview","2L3":"@stdlib/napi-argv-dataview","1bs":"@stdlib/napi/argv-double","1bt":"@stdlib/napi-argv-double","1bu":"@stdlib/napi/argv-float","1bv":"@stdlib/napi-argv-float","1bw":"@stdlib/napi/argv-float32array","1bx":"@stdlib/napi-argv-float32array","1by":"@stdlib/napi/argv-float64array","1bz":"@stdlib/napi-argv-float64array","1c0":"@stdlib/napi/argv-int16array","1c1":"@stdlib/napi-argv-int16array","1c2":"@stdlib/napi/argv-int32","1c3":"@stdlib/napi-argv-int32","1c4":"@stdlib/napi/argv-int32array","1c5":"@stdlib/napi-argv-int32array","1c6":"@stdlib/napi/argv-int64","1c7":"@stdlib/napi-argv-int64","1c8":"@stdlib/napi/argv-int8array","1c9":"@stdlib/napi-argv-int8array","2l4":"@stdlib/napi/argv-strided-booleanarray","2l5":"@stdlib/napi-argv-strided-booleanarray","2l6":"@stdlib/napi/argv-strided-booleanarray2d","2l7":"@stdlib/napi-argv-strided-booleanarray2d","1cA":"@stdlib/napi/argv-strided-complex128array","1cB":"@stdlib/napi-argv-strided-complex128array","20g":"@stdlib/napi/argv-strided-complex128array2d","20h":"@stdlib/napi-argv-strided-complex128array2d","1cC":"@stdlib/napi/argv-strided-complex64array","1cD":"@stdlib/napi-argv-strided-complex64array","20i":"@stdlib/napi/argv-strided-complex64array2d","20j":"@stdlib/napi-argv-strided-complex64array2d","1cE":"@stdlib/napi/argv-strided-float32array","1cF":"@stdlib/napi-argv-strided-float32array","20k":"@stdlib/napi/argv-strided-float32array2d","20l":"@stdlib/napi-argv-strided-float32array2d","1cG":"@stdlib/napi/argv-strided-float64array","1cH":"@stdlib/napi-argv-strided-float64array","20m":"@stdlib/napi/argv-strided-float64array2d","20n":"@stdlib/napi-argv-strided-float64array2d","1cI":"@stdlib/napi/argv-strided-int16array","1cJ":"@stdlib/napi-argv-strided-int16array","20o":"@stdlib/napi/argv-strided-int16array2d","20p":"@stdlib/napi-argv-strided-int16array2d","1cK":"@stdlib/napi/argv-strided-int32array","1cL":"@stdlib/napi-argv-strided-int32array","20q":"@stdlib/napi/argv-strided-int32array2d","20r":"@stdlib/napi-argv-strided-int32array2d","1cM":"@stdlib/napi/argv-strided-int8array","1cN":"@stdlib/napi-argv-strided-int8array","20s":"@stdlib/napi/argv-strided-int8array2d","20t":"@stdlib/napi-argv-strided-int8array2d","1cO":"@stdlib/napi/argv-strided-uint16array","1cP":"@stdlib/napi-argv-strided-uint16array","20u":"@stdlib/napi/argv-strided-uint16array2d","20v":"@stdlib/napi-argv-strided-uint16array2d","1cQ":"@stdlib/napi/argv-strided-uint32array","1cR":"@stdlib/napi-argv-strided-uint32array","20w":"@stdlib/napi/argv-strided-uint32array2d","20x":"@stdlib/napi-argv-strided-uint32array2d","1cS":"@stdlib/napi/argv-strided-uint8array","1cT":"@stdlib/napi-argv-strided-uint8array","20y":"@stdlib/napi/argv-strided-uint8array2d","20z":"@stdlib/napi-argv-strided-uint8array2d","1cU":"@stdlib/napi/argv-uint16array","1cV":"@stdlib/napi-argv-uint16array","1cW":"@stdlib/napi/argv-uint32","1cX":"@stdlib/napi-argv-uint32","1cY":"@stdlib/napi/argv-uint32array","1cZ":"@stdlib/napi-argv-uint32array","2l8":"@stdlib/napi/argv-uint64","2l9":"@stdlib/napi-argv-uint64","1ca":"@stdlib/napi/argv-uint8array","1cb":"@stdlib/napi-argv-uint8array","1cc":"@stdlib/napi/argv","1cd":"@stdlib/napi-argv","1vK":"@stdlib/napi/create-complex-like","1vL":"@stdlib/napi-create-complex-like","1vM":"@stdlib/napi/create-double","1vN":"@stdlib/napi-create-double","1vO":"@stdlib/napi/create-int32","1vP":"@stdlib/napi-create-int32","2lA":"@stdlib/napi/create-int64","2lB":"@stdlib/napi-create-int64","1vQ":"@stdlib/napi/create-uint32","1vR":"@stdlib/napi-create-uint32","2lC":"@stdlib/napi/create-uint64","2lD":"@stdlib/napi-create-uint64","1ce":"@stdlib/napi/export","1cf":"@stdlib/napi-export","1ch":"@stdlib/napi","2WQ":"@stdlib/ndarray/any-by","2WR":"@stdlib/ndarray-any-by","2WS":"@stdlib/ndarray/any","2WT":"@stdlib/ndarray-any","0hS":"@stdlib/ndarray/array","0hT":"@stdlib/ndarray-array","1q2":"@stdlib/ndarray/at","1q3":"@stdlib/ndarray-at","2VQ":"@stdlib/ndarray/base/any-by","2VR":"@stdlib/ndarray-base-any-by","2V4":"@stdlib/ndarray/base/any","2V5":"@stdlib/ndarray-base-any","2lE":"@stdlib/ndarray/base/append-singleton-dimensions","2lF":"@stdlib/ndarray-base-append-singleton-dimensions","0hU":"@stdlib/ndarray/base/assert/is-allowed-data-type-cast","0hV":"@stdlib/ndarray-base-assert-is-allowed-data-type-cast","1xm":"@stdlib/ndarray/base/assert/is-boolean-data-type","1xn":"@stdlib/ndarray-base-assert-is-boolean-data-type","2Fe":"@stdlib/ndarray/base/assert/is-boolean-index-data-type","2Ff":"@stdlib/ndarray-base-assert-is-boolean-index-data-type","0hW":"@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape","0hX":"@stdlib/ndarray-base-assert-is-buffer-length-compatible-shape","0hY":"@stdlib/ndarray/base/assert/is-buffer-length-compatible","0hZ":"@stdlib/ndarray-base-assert-is-buffer-length-compatible","0ha":"@stdlib/ndarray/base/assert/is-casting-mode","0hb":"@stdlib/ndarray-base-assert-is-casting-mode","0hc":"@stdlib/ndarray/base/assert/is-column-major-contiguous","0hd":"@stdlib/ndarray-base-assert-is-column-major-contiguous","25u":"@stdlib/ndarray/base/assert/is-column-major-string","25v":"@stdlib/ndarray-base-assert-is-column-major-string","0he":"@stdlib/ndarray/base/assert/is-column-major","0hf":"@stdlib/ndarray-base-assert-is-column-major","2Wo":"@stdlib/ndarray/base/assert/is-complex-floating-point-data-type-char","2Wp":"@stdlib/ndarray-base-assert-is-complex-floating-point-data-type-char","1ci":"@stdlib/ndarray/base/assert/is-complex-floating-point-data-type","1cj":"@stdlib/ndarray-base-assert-is-complex-floating-point-data-type","0hg":"@stdlib/ndarray/base/assert/is-contiguous","0hh":"@stdlib/ndarray-base-assert-is-contiguous","2W6":"@stdlib/ndarray/base/assert/is-data-type-object","2W7":"@stdlib/ndarray-base-assert-is-data-type-object","2OQ":"@stdlib/ndarray/base/assert/is-data-type-string","2OR":"@stdlib/ndarray-base-assert-is-data-type-string","0hi":"@stdlib/ndarray/base/assert/is-data-type","0hj":"@stdlib/ndarray-base-assert-is-data-type","2W8":"@stdlib/ndarray/base/assert/is-equal-data-type","2W9":"@stdlib/ndarray-base-assert-is-equal-data-type","1ck":"@stdlib/ndarray/base/assert/is-floating-point-data-type","1cl":"@stdlib/ndarray-base-assert-is-floating-point-data-type","2Fg":"@stdlib/ndarray/base/assert/is-index-data-type","2Fh":"@stdlib/ndarray-base-assert-is-index-data-type","0hk":"@stdlib/ndarray/base/assert/is-index-mode","0hl":"@stdlib/ndarray-base-assert-is-index-mode","2Fi":"@stdlib/ndarray/base/assert/is-input-casting-policy","2Fj":"@stdlib/ndarray-base-assert-is-input-casting-policy","1cm":"@stdlib/ndarray/base/assert/is-integer-data-type","1cn":"@stdlib/ndarray-base-assert-is-integer-data-type","2Fk":"@stdlib/ndarray/base/assert/is-integer-index-data-type","2Fl":"@stdlib/ndarray-base-assert-is-integer-index-data-type","2Fm":"@stdlib/ndarray/base/assert/is-mask-index-data-type","2Fn":"@stdlib/ndarray-base-assert-is-mask-index-data-type","1kE":"@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast","1kF":"@stdlib/ndarray-base-assert-is-mostly-safe-data-type-cast","1co":"@stdlib/ndarray/base/assert/is-numeric-data-type","1cp":"@stdlib/ndarray-base-assert-is-numeric-data-type","0hm":"@stdlib/ndarray/base/assert/is-order","0hn":"@stdlib/ndarray-base-assert-is-order","0ho":"@stdlib/ndarray/base/assert/is-read-only","0hp":"@stdlib/ndarray-base-assert-is-read-only","1cq":"@stdlib/ndarray/base/assert/is-real-data-type","1cr":"@stdlib/ndarray-base-assert-is-real-data-type","1cs":"@stdlib/ndarray/base/assert/is-real-floating-point-data-type","1ct":"@stdlib/ndarray-base-assert-is-real-floating-point-data-type","0hq":"@stdlib/ndarray/base/assert/is-row-major-contiguous","0hr":"@stdlib/ndarray-base-assert-is-row-major-contiguous","25w":"@stdlib/ndarray/base/assert/is-row-major-string","25x":"@stdlib/ndarray-base-assert-is-row-major-string","0hs":"@stdlib/ndarray/base/assert/is-row-major","0ht":"@stdlib/ndarray-base-assert-is-row-major","0hu":"@stdlib/ndarray/base/assert/is-safe-data-type-cast","0hv":"@stdlib/ndarray-base-assert-is-safe-data-type-cast","0hw":"@stdlib/ndarray/base/assert/is-same-kind-data-type-cast","0hx":"@stdlib/ndarray-base-assert-is-same-kind-data-type-cast","2AS":"@stdlib/ndarray/base/assert/is-scalar-mostly-safe-compatible","2AT":"@stdlib/ndarray-base-assert-is-scalar-mostly-safe-compatible","1cu":"@stdlib/ndarray/base/assert/is-signed-integer-data-type","1cv":"@stdlib/ndarray-base-assert-is-signed-integer-data-type","0hy":"@stdlib/ndarray/base/assert/is-single-segment-compatible","0hz":"@stdlib/ndarray-base-assert-is-single-segment-compatible","2L4":"@stdlib/ndarray/base/assert/is-struct-data-type","2L5":"@stdlib/ndarray-base-assert-is-struct-data-type","1cw":"@stdlib/ndarray/base/assert/is-unsigned-integer-data-type","1cx":"@stdlib/ndarray-base-assert-is-unsigned-integer-data-type","0i0":"@stdlib/ndarray/base/assert","0i1":"@stdlib/ndarray-base-assert","2lG":"@stdlib/ndarray/base/assign-scalar","2lH":"@stdlib/ndarray-base-assign-scalar","1kG":"@stdlib/ndarray/base/assign","1kH":"@stdlib/ndarray-base-assign","2lI":"@stdlib/ndarray/base/atleast1d","2lJ":"@stdlib/ndarray-base-atleast1d","2lK":"@stdlib/ndarray/base/atleast2d","2lL":"@stdlib/ndarray-base-atleast2d","2lM":"@stdlib/ndarray/base/atleast3d","2lN":"@stdlib/ndarray-base-atleast3d","2lO":"@stdlib/ndarray/base/atleastnd","2lP":"@stdlib/ndarray-base-atleastnd","2VS":"@stdlib/ndarray/base/binary-input-casting-dtype","2VT":"@stdlib/ndarray-base-binary-input-casting-dtype","1cy":"@stdlib/ndarray/base/binary-loop-interchange-order","1cz":"@stdlib/ndarray-base-binary-loop-interchange-order","2Gi":"@stdlib/ndarray/base/binary-output-dtype","2Gj":"@stdlib/ndarray-base-binary-output-dtype","2VU":"@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory","2VV":"@stdlib/ndarray-base-binary-reduce-strided1d-dispatch-factory","2VW":"@stdlib/ndarray/base/binary-reduce-strided1d-dispatch","2VX":"@stdlib/ndarray-base-binary-reduce-strided1d-dispatch","2Tk":"@stdlib/ndarray/base/binary-reduce-strided1d","2Tl":"@stdlib/ndarray-base-binary-reduce-strided1d","1d0":"@stdlib/ndarray/base/binary-tiling-block-size","1d1":"@stdlib/ndarray-base-binary-tiling-block-size","2Gk":"@stdlib/ndarray/base/binary","2Gl":"@stdlib/ndarray-base-binary","0i2":"@stdlib/ndarray/base/bind2vind","0i3":"@stdlib/ndarray-base-bind2vind","2VY":"@stdlib/ndarray/base/broadcast-array-except-dimensions","2VZ":"@stdlib/ndarray-base-broadcast-array-except-dimensions","0i4":"@stdlib/ndarray/base/broadcast-array","0i5":"@stdlib/ndarray-base-broadcast-array","1nU":"@stdlib/ndarray/base/broadcast-arrays","1nV":"@stdlib/ndarray-base-broadcast-arrays","2lQ":"@stdlib/ndarray/base/broadcast-scalar-like","2lR":"@stdlib/ndarray-base-broadcast-scalar-like","1d2":"@stdlib/ndarray/base/broadcast-scalar","1d3":"@stdlib/ndarray-base-broadcast-scalar","0i6":"@stdlib/ndarray/base/broadcast-shapes","0i7":"@stdlib/ndarray-base-broadcast-shapes","0i8":"@stdlib/ndarray/base/buffer-ctors","0i9":"@stdlib/ndarray-base-buffer-ctors","0iA":"@stdlib/ndarray/base/buffer-dtype-enum","0iB":"@stdlib/ndarray-base-buffer-dtype-enum","0iC":"@stdlib/ndarray/base/buffer-dtype","0iD":"@stdlib/ndarray-base-buffer-dtype","0iE":"@stdlib/ndarray/base/buffer","0iF":"@stdlib/ndarray-base-buffer","0iG":"@stdlib/ndarray/base/bytes-per-element","0iH":"@stdlib/ndarray-base-bytes-per-element","0iI":"@stdlib/ndarray/base/char2dtype","0iJ":"@stdlib/ndarray-base-char2dtype","0iK":"@stdlib/ndarray/base/clamp-index","0iL":"@stdlib/ndarray-base-clamp-index","2Xw":"@stdlib/ndarray/base/complement-shape","2Xx":"@stdlib/ndarray-base-complement-shape","2lS":"@stdlib/ndarray/base/consensus-order","2lT":"@stdlib/ndarray-base-consensus-order","2Wq":"@stdlib/ndarray/base/copy","2Wr":"@stdlib/ndarray-base-copy","2Ie":"@stdlib/ndarray/base/count-falsy","2If":"@stdlib/ndarray-base-count-falsy","2Ig":"@stdlib/ndarray/base/count-if","2Ih":"@stdlib/ndarray-base-count-if","2Ii":"@stdlib/ndarray/base/count-truthy","2Ij":"@stdlib/ndarray-base-count-truthy","0iM":"@stdlib/ndarray/base/ctor","0iN":"@stdlib/ndarray-base-ctor","1kI":"@stdlib/ndarray/base/data-buffer","1kJ":"@stdlib/ndarray-base-data-buffer","2lU":"@stdlib/ndarray/base/descriptor","2lV":"@stdlib/ndarray-base-descriptor","2lW":"@stdlib/ndarray/base/diagonal","2lX":"@stdlib/ndarray-base-diagonal","2WA":"@stdlib/ndarray/base/dtype-alignment","2WB":"@stdlib/ndarray-base-dtype-alignment","0iO":"@stdlib/ndarray/base/dtype-char","0iP":"@stdlib/ndarray-base-dtype-char","2Ws":"@stdlib/ndarray/base/dtype-chars","2Wt":"@stdlib/ndarray-base-dtype-chars","0iQ":"@stdlib/ndarray/base/dtype-desc","0iR":"@stdlib/ndarray-base-dtype-desc","0iS":"@stdlib/ndarray/base/dtype-enum2str","0iT":"@stdlib/ndarray-base-dtype-enum2str","2WU":"@stdlib/ndarray/base/dtype-enums","2WV":"@stdlib/ndarray-base-dtype-enums","2WW":"@stdlib/ndarray/base/dtype-objects","2WX":"@stdlib/ndarray-base-dtype-objects","0iU":"@stdlib/ndarray/base/dtype-resolve-enum","0iV":"@stdlib/ndarray-base-dtype-resolve-enum","0iW":"@stdlib/ndarray/base/dtype-resolve-str","0iX":"@stdlib/ndarray-base-dtype-resolve-str","0iY":"@stdlib/ndarray/base/dtype-str2enum","0iZ":"@stdlib/ndarray-base-dtype-str2enum","2WY":"@stdlib/ndarray/base/dtype-strings","2WZ":"@stdlib/ndarray-base-dtype-strings","1kK":"@stdlib/ndarray/base/dtype","1kL":"@stdlib/ndarray-base-dtype","0ia":"@stdlib/ndarray/base/dtype2c","0ib":"@stdlib/ndarray-base-dtype2c","2WC":"@stdlib/ndarray/base/dtypes2enums","2WD":"@stdlib/ndarray-base-dtypes2enums","0ic":"@stdlib/ndarray/base/dtypes2signatures","0id":"@stdlib/ndarray-base-dtypes2signatures","2lY":"@stdlib/ndarray/base/dtypes2strings","2lZ":"@stdlib/ndarray-base-dtypes2strings","1d4":"@stdlib/ndarray/base/empty-like","1d5":"@stdlib/ndarray-base-empty-like","1d6":"@stdlib/ndarray/base/empty","1d7":"@stdlib/ndarray-base-empty","2Eq":"@stdlib/ndarray/base/every-by","2Er":"@stdlib/ndarray-base-every-by","2AU":"@stdlib/ndarray/base/every","2AV":"@stdlib/ndarray-base-every","0ie":"@stdlib/ndarray/base/expand-dimensions","0if":"@stdlib/ndarray-base-expand-dimensions","2la":"@stdlib/ndarray/base/falses-like","2lb":"@stdlib/ndarray-base-falses-like","2lc":"@stdlib/ndarray/base/falses","2ld":"@stdlib/ndarray-base-falses","2AW":"@stdlib/ndarray/base/fill-by","2AX":"@stdlib/ndarray-base-fill-by","2le":"@stdlib/ndarray/base/fill-diagonal","2lf":"@stdlib/ndarray-base-fill-diagonal","2Va":"@stdlib/ndarray/base/find","2Vb":"@stdlib/ndarray-base-find","1ns":"@stdlib/ndarray/base/flag","1nt":"@stdlib/ndarray-base-flag","1nW":"@stdlib/ndarray/base/flags","1nX":"@stdlib/ndarray-base-flags","2Wu":"@stdlib/ndarray/base/flatten-shape-from","2Wv":"@stdlib/ndarray-base-flatten-shape-from","2Vc":"@stdlib/ndarray/base/flatten-shape","2Vd":"@stdlib/ndarray-base-flatten-shape","1l4":"@stdlib/ndarray/base/fliplr","1l5":"@stdlib/ndarray-base-fliplr","1l6":"@stdlib/ndarray/base/flipud","1l7":"@stdlib/ndarray-base-flipud","1yW":"@stdlib/ndarray/base/for-each","1yX":"@stdlib/ndarray-base-for-each","2Tm":"@stdlib/ndarray/base/from-array","2Tn":"@stdlib/ndarray-base-from-array","24o":"@stdlib/ndarray/base/from-scalar-like","24p":"@stdlib/ndarray-base-from-scalar-like","0ig":"@stdlib/ndarray/base/from-scalar","0ih":"@stdlib/ndarray-base-from-scalar","2lg":"@stdlib/ndarray/base/full-by","2lh":"@stdlib/ndarray-base-full-by","2li":"@stdlib/ndarray/base/full","2lj":"@stdlib/ndarray-base-full","0ii":"@stdlib/ndarray/base/function-object","0ij":"@stdlib/ndarray-base-function-object","2Dy":"@stdlib/ndarray/base/includes","2Dz":"@stdlib/ndarray-base-includes","0ik":"@stdlib/ndarray/base/ind","0il":"@stdlib/ndarray-base-ind","0im":"@stdlib/ndarray/base/ind2sub","0in":"@stdlib/ndarray-base-ind2sub","0io":"@stdlib/ndarray/base/iteration-order","0ip":"@stdlib/ndarray-base-iteration-order","2H6":"@stdlib/ndarray/base/loop-interchange-order","2H7":"@stdlib/ndarray-base-loop-interchange-order","1zU":"@stdlib/ndarray/base/map","1zV":"@stdlib/ndarray-base-map","0iq":"@stdlib/ndarray/base/max-view-buffer-index","0ir":"@stdlib/ndarray-base-max-view-buffer-index","2lk":"@stdlib/ndarray/base/maybe-broadcast-array-except-dimensions","2ll":"@stdlib/ndarray-base-maybe-broadcast-array-except-dimensions","0is":"@stdlib/ndarray/base/maybe-broadcast-array","0it":"@stdlib/ndarray-base-maybe-broadcast-array","1nY":"@stdlib/ndarray/base/maybe-broadcast-arrays","1nZ":"@stdlib/ndarray-base-maybe-broadcast-arrays","0iu":"@stdlib/ndarray/base/meta-data-props","0iv":"@stdlib/ndarray-base-meta-data-props","24q":"@stdlib/ndarray/base/min-signed-integer-dtype","24r":"@stdlib/ndarray-base-min-signed-integer-dtype","24s":"@stdlib/ndarray/base/min-unsigned-integer-dtype","24t":"@stdlib/ndarray-base-min-unsigned-integer-dtype","0iw":"@stdlib/ndarray/base/min-view-buffer-index","0ix":"@stdlib/ndarray-base-min-view-buffer-index","0iy":"@stdlib/ndarray/base/minmax-view-buffer-index","0iz":"@stdlib/ndarray-base-minmax-view-buffer-index","2lm":"@stdlib/ndarray/base/nans-like","2ln":"@stdlib/ndarray-base-nans-like","2lo":"@stdlib/ndarray/base/nans","2lp":"@stdlib/ndarray-base-nans","0j0":"@stdlib/ndarray/base/napi/addon-arguments","0j1":"@stdlib/ndarray-base-napi-addon-arguments","0j2":"@stdlib/ndarray/base/napi/dtype-string-to-dtype","0j3":"@stdlib/ndarray-base-napi-dtype-string-to-dtype","0j4":"@stdlib/ndarray/base/napi","0j5":"@stdlib/ndarray-base-napi","0j6":"@stdlib/ndarray/base/napi/typedarray-type-to-dtype","0j7":"@stdlib/ndarray-base-napi-typedarray-type-to-dtype","0j8":"@stdlib/ndarray/base/napi/unary","0j9":"@stdlib/ndarray-base-napi-unary","2lq":"@stdlib/ndarray/base/ndarraylike2descriptor","2lr":"@stdlib/ndarray-base-ndarraylike2descriptor","1zW":"@stdlib/ndarray/base/ndarraylike2ndarray","1zX":"@stdlib/ndarray-base-ndarraylike2ndarray","0jA":"@stdlib/ndarray/base/ndarraylike2object","0jB":"@stdlib/ndarray-base-ndarraylike2object","2OS":"@stdlib/ndarray/base/ndarraylike2scalar","2OT":"@stdlib/ndarray-base-ndarraylike2scalar","1jc":"@stdlib/ndarray/base/ndims","1jd":"@stdlib/ndarray-base-ndims","1je":"@stdlib/ndarray/base/next-cartesian-index","1jf":"@stdlib/ndarray-base-next-cartesian-index","0jC":"@stdlib/ndarray/base/nonsingleton-dimensions","0jD":"@stdlib/ndarray-base-nonsingleton-dimensions","1l8":"@stdlib/ndarray/base/normalize-index","1l9":"@stdlib/ndarray-base-normalize-index","25y":"@stdlib/ndarray/base/normalize-indices","25z":"@stdlib/ndarray-base-normalize-indices","1d8":"@stdlib/ndarray/base/nullary-loop-interchange-order","1d9":"@stdlib/ndarray-base-nullary-loop-interchange-order","2WE":"@stdlib/ndarray/base/nullary-strided1d-dispatch-factory","2WF":"@stdlib/ndarray-base-nullary-strided1d-dispatch-factory","2Ve":"@stdlib/ndarray/base/nullary-strided1d-dispatch","2Vf":"@stdlib/ndarray-base-nullary-strided1d-dispatch","2V6":"@stdlib/ndarray/base/nullary-strided1d","2V7":"@stdlib/ndarray-base-nullary-strided1d","1dA":"@stdlib/ndarray/base/nullary-tiling-block-size","1dB":"@stdlib/ndarray-base-nullary-tiling-block-size","1dC":"@stdlib/ndarray/base/nullary","1dD":"@stdlib/ndarray-base-nullary","2ls":"@stdlib/ndarray/base/nulls-like","2lt":"@stdlib/ndarray-base-nulls-like","2lu":"@stdlib/ndarray/base/nulls","2lv":"@stdlib/ndarray-base-nulls","1nu":"@stdlib/ndarray/base/numel-dimension","1nv":"@stdlib/ndarray-base-numel-dimension","0jE":"@stdlib/ndarray/base/numel","0jF":"@stdlib/ndarray-base-numel","1jg":"@stdlib/ndarray/base/offset","1jh":"@stdlib/ndarray-base-offset","2lw":"@stdlib/ndarray/base/ones-like","2lx":"@stdlib/ndarray-base-ones-like","2ly":"@stdlib/ndarray/base/ones","2lz":"@stdlib/ndarray-base-ones","1kM":"@stdlib/ndarray/base/order","1kN":"@stdlib/ndarray-base-order","2Gm":"@stdlib/ndarray/base/output-dtype","2Gn":"@stdlib/ndarray-base-output-dtype","2m0":"@stdlib/ndarray/base/output-order","2m1":"@stdlib/ndarray-base-output-order","1dE":"@stdlib/ndarray/base/output-policy-enum2str","1dF":"@stdlib/ndarray-base-output-policy-enum2str","1dG":"@stdlib/ndarray/base/output-policy-resolve-enum","1dH":"@stdlib/ndarray-base-output-policy-resolve-enum","1dI":"@stdlib/ndarray/base/output-policy-resolve-str","1dJ":"@stdlib/ndarray-base-output-policy-resolve-str","1dK":"@stdlib/ndarray/base/output-policy-str2enum","1dL":"@stdlib/ndarray-base-output-policy-str2enum","0jG":"@stdlib/ndarray/base","0jH":"@stdlib/ndarray-base","2Wa":"@stdlib/ndarray/base/pop","2Wb":"@stdlib/ndarray-base-pop","0jI":"@stdlib/ndarray/base/prepend-singleton-dimensions","0jJ":"@stdlib/ndarray-base-prepend-singleton-dimensions","2Go":"@stdlib/ndarray/base/promote-dtypes","2Gp":"@stdlib/ndarray-base-promote-dtypes","2m2":"@stdlib/ndarray/base/quaternary-loop-interchange-order","2m3":"@stdlib/ndarray-base-quaternary-loop-interchange-order","2m4":"@stdlib/ndarray/base/quaternary-tiling-block-size","2m5":"@stdlib/ndarray-base-quaternary-tiling-block-size","2m6":"@stdlib/ndarray/base/quinary-loop-interchange-order","2m7":"@stdlib/ndarray-base-quinary-loop-interchange-order","2m8":"@stdlib/ndarray/base/quinary-tiling-block-size","2m9":"@stdlib/ndarray-base-quinary-tiling-block-size","2mA":"@stdlib/ndarray/base/reinterpret-boolean","2mB":"@stdlib/ndarray-base-reinterpret-boolean","2mC":"@stdlib/ndarray/base/reinterpret-complex","2mD":"@stdlib/ndarray-base-reinterpret-complex","2mE":"@stdlib/ndarray/base/reinterpret-complex128","2mF":"@stdlib/ndarray-base-reinterpret-complex128","2mG":"@stdlib/ndarray/base/reinterpret-complex64","2mH":"@stdlib/ndarray-base-reinterpret-complex64","0jK":"@stdlib/ndarray/base/remove-singleton-dimensions","0jL":"@stdlib/ndarray-base-remove-singleton-dimensions","1lA":"@stdlib/ndarray/base/reverse-dimension","1lB":"@stdlib/ndarray-base-reverse-dimension","2mI":"@stdlib/ndarray/base/reverse-dimensions","2mJ":"@stdlib/ndarray-base-reverse-dimensions","1kO":"@stdlib/ndarray/base/reverse","1kP":"@stdlib/ndarray-base-reverse","2mK":"@stdlib/ndarray/base/rot180","2mL":"@stdlib/ndarray-base-rot180","2mM":"@stdlib/ndarray/base/rot90","2mN":"@stdlib/ndarray-base-rot90","2mO":"@stdlib/ndarray/base/rotl90","2mP":"@stdlib/ndarray-base-rotl90","2mQ":"@stdlib/ndarray/base/rotr90","2mR":"@stdlib/ndarray-base-rotr90","0jM":"@stdlib/ndarray/base/serialize-meta-data","0jN":"@stdlib/ndarray-base-serialize-meta-data","1ji":"@stdlib/ndarray/base/shape","1jj":"@stdlib/ndarray-base-shape","0jO":"@stdlib/ndarray/base/shape2strides","0jP":"@stdlib/ndarray-base-shape2strides","2Wc":"@stdlib/ndarray/base/shift","2Wd":"@stdlib/ndarray-base-shift","0jQ":"@stdlib/ndarray/base/singleton-dimensions","0jR":"@stdlib/ndarray-base-singleton-dimensions","1jO":"@stdlib/ndarray/base/slice-assign","1jP":"@stdlib/ndarray-base-slice-assign","1lC":"@stdlib/ndarray/base/slice-dimension-from","1lD":"@stdlib/ndarray-base-slice-dimension-from","1lE":"@stdlib/ndarray/base/slice-dimension-to","1lF":"@stdlib/ndarray-base-slice-dimension-to","1kQ":"@stdlib/ndarray/base/slice-dimension","1kR":"@stdlib/ndarray-base-slice-dimension","1lG":"@stdlib/ndarray/base/slice-from","1lH":"@stdlib/ndarray-base-slice-from","1lI":"@stdlib/ndarray/base/slice-to","1lJ":"@stdlib/ndarray-base-slice-to","1jQ":"@stdlib/ndarray/base/slice","1jR":"@stdlib/ndarray-base-slice","2Ik":"@stdlib/ndarray/base/some-by","2Il":"@stdlib/ndarray-base-some-by","2Ww":"@stdlib/ndarray/base/some","2Wx":"@stdlib/ndarray-base-some","1mg":"@stdlib/ndarray/base/stride","1mh":"@stdlib/ndarray-base-stride","1jk":"@stdlib/ndarray/base/strides","1jl":"@stdlib/ndarray-base-strides","0jS":"@stdlib/ndarray/base/strides2offset","0jT":"@stdlib/ndarray-base-strides2offset","0jU":"@stdlib/ndarray/base/strides2order","0jV":"@stdlib/ndarray-base-strides2order","0jW":"@stdlib/ndarray/base/sub2ind","0jX":"@stdlib/ndarray-base-sub2ind","2mS":"@stdlib/ndarray/base/ternary-loop-interchange-order","2mT":"@stdlib/ndarray-base-ternary-loop-interchange-order","2mU":"@stdlib/ndarray/base/ternary-output-dtype","2mV":"@stdlib/ndarray-base-ternary-output-dtype","2mW":"@stdlib/ndarray/base/ternary-tiling-block-size","2mX":"@stdlib/ndarray-base-ternary-tiling-block-size","2mY":"@stdlib/ndarray/base/ternary","2mZ":"@stdlib/ndarray-base-ternary","2ma":"@stdlib/ndarray/base/tile","2mb":"@stdlib/ndarray-base-tile","2mc":"@stdlib/ndarray/base/tiling-block-size","2md":"@stdlib/ndarray-base-tiling-block-size","0jY":"@stdlib/ndarray/base/to-array","0jZ":"@stdlib/ndarray-base-to-array","2a8":"@stdlib/ndarray/base/to-flippedlr","2a9":"@stdlib/ndarray-base-to-flippedlr","2aA":"@stdlib/ndarray/base/to-flippedud","2aB":"@stdlib/ndarray-base-to-flippedud","2me":"@stdlib/ndarray/base/to-reversed-dimension","2mf":"@stdlib/ndarray-base-to-reversed-dimension","2mg":"@stdlib/ndarray/base/to-reversed-dimensions","2mh":"@stdlib/ndarray-base-to-reversed-dimensions","2mi":"@stdlib/ndarray/base/to-rot180","2mj":"@stdlib/ndarray-base-to-rot180","2mk":"@stdlib/ndarray/base/to-rot90","2ml":"@stdlib/ndarray-base-to-rot90","2mm":"@stdlib/ndarray/base/to-rotl90","2mn":"@stdlib/ndarray-base-to-rotl90","2mo":"@stdlib/ndarray/base/to-rotr90","2mp":"@stdlib/ndarray-base-to-rotr90","2mq":"@stdlib/ndarray/base/to-transposed","2mr":"@stdlib/ndarray-base-to-transposed","2ms":"@stdlib/ndarray/base/to-unflattened","2mt":"@stdlib/ndarray-base-to-unflattened","0ja":"@stdlib/ndarray/base/transpose","0jb":"@stdlib/ndarray-base-transpose","2mu":"@stdlib/ndarray/base/trues-like","2mv":"@stdlib/ndarray-base-trues-like","2mw":"@stdlib/ndarray/base/trues","2mx":"@stdlib/ndarray-base-trues","26G":"@stdlib/ndarray/base/unary-accumulate","26H":"@stdlib/ndarray-base-unary-accumulate","2Vg":"@stdlib/ndarray/base/unary-addon-dispatch","2Vh":"@stdlib/ndarray-base-unary-addon-dispatch","1dM":"@stdlib/ndarray/base/unary-by","1dN":"@stdlib/ndarray-base-unary-by","2Fo":"@stdlib/ndarray/base/unary-input-casting-dtype","2Fp":"@stdlib/ndarray-base-unary-input-casting-dtype","1dO":"@stdlib/ndarray/base/unary-loop-interchange-order","1dP":"@stdlib/ndarray-base-unary-loop-interchange-order","1dQ":"@stdlib/ndarray/base/unary-output-dtype","1dR":"@stdlib/ndarray-base-unary-output-dtype","2OU":"@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct","2OV":"@stdlib/ndarray-base-unary-reduce-strided1d-assign-struct","2Im":"@stdlib/ndarray/base/unary-reduce-strided1d-by","2In":"@stdlib/ndarray-base-unary-reduce-strided1d-by","2Io":"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory","2Ip":"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by-factory","2Iq":"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by","2Ir":"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by","2Fq":"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory","2Fr":"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-factory","2Fs":"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch","2Ft":"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch","2Es":"@stdlib/ndarray/base/unary-reduce-strided1d","2Et":"@stdlib/ndarray-base-unary-reduce-strided1d","2Is":"@stdlib/ndarray/base/unary-reduce-subarray-by","2It":"@stdlib/ndarray-base-unary-reduce-subarray-by","2AY":"@stdlib/ndarray/base/unary-reduce-subarray","2AZ":"@stdlib/ndarray-base-unary-reduce-subarray","2Fu":"@stdlib/ndarray/base/unary-strided1d-dispatch-factory","2Fv":"@stdlib/ndarray-base-unary-strided1d-dispatch-factory","2Fw":"@stdlib/ndarray/base/unary-strided1d-dispatch","2Fx":"@stdlib/ndarray-base-unary-strided1d-dispatch","2Fy":"@stdlib/ndarray/base/unary-strided1d","2Fz":"@stdlib/ndarray-base-unary-strided1d","1dS":"@stdlib/ndarray/base/unary-tiling-block-size","1dT":"@stdlib/ndarray-base-unary-tiling-block-size","0jc":"@stdlib/ndarray/base/unary","0jd":"@stdlib/ndarray-base-unary","2my":"@stdlib/ndarray/base/unflatten-shape","2mz":"@stdlib/ndarray-base-unflatten-shape","2n0":"@stdlib/ndarray/base/unflatten","2n1":"@stdlib/ndarray-base-unflatten","0je":"@stdlib/ndarray/base/vind2bind","0jf":"@stdlib/ndarray-base-vind2bind","0jg":"@stdlib/ndarray/base/wrap-index","0jh":"@stdlib/ndarray-base-wrap-index","0ji":"@stdlib/ndarray/base/zeros-like","0jj":"@stdlib/ndarray-base-zeros-like","0jk":"@stdlib/ndarray/base/zeros","0jl":"@stdlib/ndarray-base-zeros","2To":"@stdlib/ndarray/base/zip2views1d","2Tp":"@stdlib/ndarray-base-zip2views1d","1jm":"@stdlib/ndarray/broadcast-array","1jn":"@stdlib/ndarray-broadcast-array","1na":"@stdlib/ndarray/broadcast-arrays","1nb":"@stdlib/ndarray-broadcast-arrays","2n2":"@stdlib/ndarray/broadcast-scalar-like","2n3":"@stdlib/ndarray-broadcast-scalar-like","2n4":"@stdlib/ndarray/broadcast-scalar","2n5":"@stdlib/ndarray-broadcast-scalar","0jm":"@stdlib/ndarray/casting-modes","0jn":"@stdlib/ndarray-casting-modes","2n6":"@stdlib/ndarray/colcat","2n7":"@stdlib/ndarray-colcat","2Wy":"@stdlib/ndarray/concat","2Wz":"@stdlib/ndarray-concat","2aC":"@stdlib/ndarray/concat1d","2aD":"@stdlib/ndarray-concat1d","2Xy":"@stdlib/ndarray/copy","2Xz":"@stdlib/ndarray-copy","2Iu":"@stdlib/ndarray/count-falsy","2Iv":"@stdlib/ndarray-count-falsy","2Iw":"@stdlib/ndarray/count-if","2Ix":"@stdlib/ndarray-count-if","2Iy":"@stdlib/ndarray/count-truthy","2Iz":"@stdlib/ndarray-count-truthy","0jo":"@stdlib/ndarray/ctor","0jp":"@stdlib/ndarray-ctor","1kS":"@stdlib/ndarray/data-buffer","1kT":"@stdlib/ndarray-data-buffer","1dU":"@stdlib/ndarray/defaults","1dV":"@stdlib/ndarray-defaults","2n8":"@stdlib/ndarray/diagonal","2n9":"@stdlib/ndarray-diagonal","1dW":"@stdlib/ndarray/dispatch-by","1dX":"@stdlib/ndarray-dispatch-by","0jq":"@stdlib/ndarray/dispatch","0jr":"@stdlib/ndarray-dispatch","2WG":"@stdlib/ndarray/dtype-ctor","2WH":"@stdlib/ndarray-dtype-ctor","1kU":"@stdlib/ndarray/dtype","1kV":"@stdlib/ndarray-dtype","0js":"@stdlib/ndarray/dtypes","0jt":"@stdlib/ndarray-dtypes","1dY":"@stdlib/ndarray/empty-like","1dZ":"@stdlib/ndarray-empty-like","1da":"@stdlib/ndarray/empty","1db":"@stdlib/ndarray-empty","2nA":"@stdlib/ndarray/every-by","2nB":"@stdlib/ndarray-every-by","2E0":"@stdlib/ndarray/every","2E1":"@stdlib/ndarray-every","2nC":"@stdlib/ndarray/falses-like","2nD":"@stdlib/ndarray-falses-like","2nE":"@stdlib/ndarray/falses","2nF":"@stdlib/ndarray-falses","1j6":"@stdlib/ndarray/fancy","1j7":"@stdlib/ndarray-fancy","2Aa":"@stdlib/ndarray/fill-by","2Ab":"@stdlib/ndarray-fill-by","2Vi":"@stdlib/ndarray/fill-slice","2Vj":"@stdlib/ndarray-fill-slice","2Ac":"@stdlib/ndarray/fill","2Ad":"@stdlib/ndarray-fill","24u":"@stdlib/ndarray/filter-map","24v":"@stdlib/ndarray-filter-map","24w":"@stdlib/ndarray/filter","24x":"@stdlib/ndarray-filter","2nG":"@stdlib/ndarray/find-last","2nH":"@stdlib/ndarray-find-last","2X0":"@stdlib/ndarray/find","2X1":"@stdlib/ndarray-find","2nI":"@stdlib/ndarray/first","2nJ":"@stdlib/ndarray-first","1nw":"@stdlib/ndarray/flag","1nx":"@stdlib/ndarray-flag","1ny":"@stdlib/ndarray/flags","1nz":"@stdlib/ndarray-flags","2WI":"@stdlib/ndarray/flatten-by","2WJ":"@stdlib/ndarray-flatten-by","2nK":"@stdlib/ndarray/flatten-from-by","2nL":"@stdlib/ndarray-flatten-from-by","2X2":"@stdlib/ndarray/flatten-from","2X3":"@stdlib/ndarray-flatten-from","2Vk":"@stdlib/ndarray/flatten","2Vl":"@stdlib/ndarray-flatten","2aE":"@stdlib/ndarray/fliplr","2aF":"@stdlib/ndarray-fliplr","2aG":"@stdlib/ndarray/flipud","2aH":"@stdlib/ndarray-flipud","24y":"@stdlib/ndarray/for-each","24z":"@stdlib/ndarray-for-each","2nM":"@stdlib/ndarray/from-scalar-like","2nN":"@stdlib/ndarray-from-scalar-like","0ju":"@stdlib/ndarray/from-scalar","0jv":"@stdlib/ndarray-from-scalar","2nO":"@stdlib/ndarray/hconcat","2nP":"@stdlib/ndarray-hconcat","2E2":"@stdlib/ndarray/includes","2E3":"@stdlib/ndarray-includes","0jw":"@stdlib/ndarray/ind2sub","0jx":"@stdlib/ndarray-ind2sub","0jy":"@stdlib/ndarray/index-modes","0jz":"@stdlib/ndarray-index-modes","2G0":"@stdlib/ndarray/input-casting-policies","2G1":"@stdlib/ndarray-input-casting-policies","1lK":"@stdlib/ndarray/iter/column-entries","1lL":"@stdlib/ndarray-iter-column-entries","1jo":"@stdlib/ndarray/iter/columns","1jp":"@stdlib/ndarray-iter-columns","1jq":"@stdlib/ndarray/iter/entries","1jr":"@stdlib/ndarray-iter-entries","1js":"@stdlib/ndarray/iter/indices","1jt":"@stdlib/ndarray-iter-indices","1zY":"@stdlib/ndarray/iter/interleave-subarrays","1zZ":"@stdlib/ndarray-iter-interleave-subarrays","1lM":"@stdlib/ndarray/iter/matrices","1lN":"@stdlib/ndarray-iter-matrices","1lO":"@stdlib/ndarray/iter/matrix-entries","1lP":"@stdlib/ndarray-iter-matrix-entries","1ju":"@stdlib/ndarray/iter","1jv":"@stdlib/ndarray-iter","1lQ":"@stdlib/ndarray/iter/row-entries","1lR":"@stdlib/ndarray-iter-row-entries","1jw":"@stdlib/ndarray/iter/rows","1jx":"@stdlib/ndarray-iter-rows","1za":"@stdlib/ndarray/iter/select-dimension","1zb":"@stdlib/ndarray-iter-select-dimension","1zc":"@stdlib/ndarray/iter/stacks","1zd":"@stdlib/ndarray-iter-stacks","1ze":"@stdlib/ndarray/iter/subarrays","1zf":"@stdlib/ndarray-iter-subarrays","1jy":"@stdlib/ndarray/iter/to-array-each","1jz":"@stdlib/ndarray-iter-to-array-each","1k0":"@stdlib/ndarray/iter/values","1k1":"@stdlib/ndarray-iter-values","2nQ":"@stdlib/ndarray/last","2nR":"@stdlib/ndarray-last","1k2":"@stdlib/ndarray/maybe-broadcast-array","1k3":"@stdlib/ndarray-maybe-broadcast-array","1nc":"@stdlib/ndarray/maybe-broadcast-arrays","1nd":"@stdlib/ndarray-maybe-broadcast-arrays","0k0":"@stdlib/ndarray/min-dtype","0k1":"@stdlib/ndarray-min-dtype","1kW":"@stdlib/ndarray/mostly-safe-casts","1kX":"@stdlib/ndarray-mostly-safe-casts","2nS":"@stdlib/ndarray/nans-like","2nT":"@stdlib/ndarray-nans-like","2nU":"@stdlib/ndarray/nans","2nV":"@stdlib/ndarray-nans","1zg":"@stdlib/ndarray/ndarraylike2ndarray","1zh":"@stdlib/ndarray-ndarraylike2ndarray","2nW":"@stdlib/ndarray/ndarraylike2scalar","2nX":"@stdlib/ndarray-ndarraylike2scalar","1k4":"@stdlib/ndarray/ndims","1k5":"@stdlib/ndarray-ndims","0k2":"@stdlib/ndarray/next-dtype","0k3":"@stdlib/ndarray-next-dtype","1o0":"@stdlib/ndarray/numel-dimension","1o1":"@stdlib/ndarray-numel-dimension","1k6":"@stdlib/ndarray/numel","1k7":"@stdlib/ndarray-numel","1k8":"@stdlib/ndarray/offset","1k9":"@stdlib/ndarray-offset","2nY":"@stdlib/ndarray/ones-like","2nZ":"@stdlib/ndarray-ones-like","2na":"@stdlib/ndarray/ones","2nb":"@stdlib/ndarray-ones","1kY":"@stdlib/ndarray/order","1kZ":"@stdlib/ndarray-order","0k4":"@stdlib/ndarray/orders","0k5":"@stdlib/ndarray-orders","1dc":"@stdlib/ndarray/output-dtype-policies","1dd":"@stdlib/ndarray-output-dtype-policies","0k7":"@stdlib/ndarray","2X4":"@stdlib/ndarray/pop","2X5":"@stdlib/ndarray-pop","2nc":"@stdlib/ndarray/prepend-singleton-dimensions","2nd":"@stdlib/ndarray-prepend-singleton-dimensions","0k8":"@stdlib/ndarray/promotion-rules","0k9":"@stdlib/ndarray-promotion-rules","2ne":"@stdlib/ndarray/push","2nf":"@stdlib/ndarray-push","2ng":"@stdlib/ndarray/remove-singleton-dimensions","2nh":"@stdlib/ndarray-remove-singleton-dimensions","2X6":"@stdlib/ndarray/reverse-dimension","2X7":"@stdlib/ndarray-reverse-dimension","2ni":"@stdlib/ndarray/reverse-dimensions","2nj":"@stdlib/ndarray-reverse-dimensions","2X8":"@stdlib/ndarray/reverse","2X9":"@stdlib/ndarray-reverse","2nk":"@stdlib/ndarray/rot180","2nl":"@stdlib/ndarray-rot180","2nm":"@stdlib/ndarray/rot90","2nn":"@stdlib/ndarray-rot90","2no":"@stdlib/ndarray/rotl90","2np":"@stdlib/ndarray-rotl90","2nq":"@stdlib/ndarray/rotr90","2nr":"@stdlib/ndarray-rotr90","2ns":"@stdlib/ndarray/rowcat","2nt":"@stdlib/ndarray-rowcat","0kA":"@stdlib/ndarray/safe-casts","0kB":"@stdlib/ndarray-safe-casts","0kC":"@stdlib/ndarray/same-kind-casts","0kD":"@stdlib/ndarray-same-kind-casts","1kA":"@stdlib/ndarray/shape","1kB":"@stdlib/ndarray-shape","2XA":"@stdlib/ndarray/shift","2XB":"@stdlib/ndarray-shift","1jS":"@stdlib/ndarray/slice-assign","1jT":"@stdlib/ndarray-slice-assign","1lS":"@stdlib/ndarray/slice-dimension-from","1lT":"@stdlib/ndarray-slice-dimension-from","1lU":"@stdlib/ndarray/slice-dimension-to","1lV":"@stdlib/ndarray-slice-dimension-to","1ka":"@stdlib/ndarray/slice-dimension","1kb":"@stdlib/ndarray-slice-dimension","1mw":"@stdlib/ndarray/slice-from","1mx":"@stdlib/ndarray-slice-from","1mi":"@stdlib/ndarray/slice-to","1mj":"@stdlib/ndarray-slice-to","1jU":"@stdlib/ndarray/slice","1jV":"@stdlib/ndarray-slice","2J0":"@stdlib/ndarray/some-by","2J1":"@stdlib/ndarray-some-by","2YU":"@stdlib/ndarray/some","2YV":"@stdlib/ndarray-some","2nu":"@stdlib/ndarray/spread-dimensions","2nv":"@stdlib/ndarray-spread-dimensions","1mk":"@stdlib/ndarray/stride","1ml":"@stdlib/ndarray-stride","1kC":"@stdlib/ndarray/strides","1kD":"@stdlib/ndarray-strides","0kE":"@stdlib/ndarray/sub2ind","0kF":"@stdlib/ndarray-sub2ind","1de":"@stdlib/ndarray/to-array","1df":"@stdlib/ndarray-to-array","2nw":"@stdlib/ndarray/to-flippedlr","2nx":"@stdlib/ndarray-to-flippedlr","2ny":"@stdlib/ndarray/to-flippedud","2nz":"@stdlib/ndarray-to-flippedud","2o0":"@stdlib/ndarray/to-locale-string","2o1":"@stdlib/ndarray-to-locale-string","2o2":"@stdlib/ndarray/to-reversed-dimension","2o3":"@stdlib/ndarray-to-reversed-dimension","2o4":"@stdlib/ndarray/to-reversed-dimensions","2o5":"@stdlib/ndarray-to-reversed-dimensions","2XC":"@stdlib/ndarray/to-reversed","2XD":"@stdlib/ndarray-to-reversed","2o6":"@stdlib/ndarray/to-rot180","2o7":"@stdlib/ndarray-to-rot180","2o8":"@stdlib/ndarray/to-rot90","2o9":"@stdlib/ndarray-to-rot90","2oA":"@stdlib/ndarray/to-rotl90","2oB":"@stdlib/ndarray-to-rotl90","2oC":"@stdlib/ndarray/to-rotr90","2oD":"@stdlib/ndarray-to-rotr90","2oE":"@stdlib/ndarray/to-string","2oF":"@stdlib/ndarray-to-string","2oG":"@stdlib/ndarray/to-transposed","2oH":"@stdlib/ndarray-to-transposed","2oI":"@stdlib/ndarray/to-unflattened","2oJ":"@stdlib/ndarray-to-unflattened","2oK":"@stdlib/ndarray/transpose","2oL":"@stdlib/ndarray-transpose","2oM":"@stdlib/ndarray/trues-like","2oN":"@stdlib/ndarray-trues-like","2oO":"@stdlib/ndarray/trues","2oP":"@stdlib/ndarray-trues","2oQ":"@stdlib/ndarray/unflatten","2oR":"@stdlib/ndarray-unflatten","2oS":"@stdlib/ndarray/unshift","2oT":"@stdlib/ndarray-unshift","2oU":"@stdlib/ndarray/vconcat","2oV":"@stdlib/ndarray-vconcat","2J2":"@stdlib/ndarray/vector/bool","2J3":"@stdlib/ndarray-vector-bool","2J4":"@stdlib/ndarray/vector/complex128","2J5":"@stdlib/ndarray-vector-complex128","2J6":"@stdlib/ndarray/vector/complex64","2J7":"@stdlib/ndarray-vector-complex64","2H8":"@stdlib/ndarray/vector/ctor","2H9":"@stdlib/ndarray-vector-ctor","2HA":"@stdlib/ndarray/vector/float32","2HB":"@stdlib/ndarray-vector-float32","2HC":"@stdlib/ndarray/vector/float64","2HD":"@stdlib/ndarray-vector-float64","2J8":"@stdlib/ndarray/vector/int16","2J9":"@stdlib/ndarray-vector-int16","2JA":"@stdlib/ndarray/vector/int32","2JB":"@stdlib/ndarray-vector-int32","2JC":"@stdlib/ndarray/vector/int8","2JD":"@stdlib/ndarray-vector-int8","2JE":"@stdlib/ndarray/vector","2JF":"@stdlib/ndarray-vector","2JG":"@stdlib/ndarray/vector/uint16","2JH":"@stdlib/ndarray-vector-uint16","2JI":"@stdlib/ndarray/vector/uint32","2JJ":"@stdlib/ndarray-vector-uint32","2JK":"@stdlib/ndarray/vector/uint8","2JL":"@stdlib/ndarray-vector-uint8","2JM":"@stdlib/ndarray/vector/uint8c","2JN":"@stdlib/ndarray-vector-uint8c","2V8":"@stdlib/ndarray/with","2V9":"@stdlib/ndarray-with","0kG":"@stdlib/ndarray/zeros-like","0kH":"@stdlib/ndarray-zeros-like","0kI":"@stdlib/ndarray/zeros","0kJ":"@stdlib/ndarray-zeros","0kK":"@stdlib/net/disposable-http-server","0kL":"@stdlib/net-disposable-http-server","0kM":"@stdlib/net/http-server","0kN":"@stdlib/net-http-server","2Tq":"@stdlib/net/http2-secure-server","2Tr":"@stdlib/net-http2-secure-server","0kP":"@stdlib/net","0kQ":"@stdlib/net/simple-http-server","0kR":"@stdlib/net-simple-http-server","1dg":"@stdlib/nlp/expand-acronyms","1dh":"@stdlib/nlp-expand-acronyms","0kS":"@stdlib/nlp/expand-contractions","0kT":"@stdlib/nlp-expand-contractions","0kU":"@stdlib/nlp/lda","0kV":"@stdlib/nlp-lda","0kW":"@stdlib/nlp/ordinalize","0kX":"@stdlib/nlp-ordinalize","0kZ":"@stdlib/nlp","0ka":"@stdlib/nlp/porter-stemmer","0kb":"@stdlib/nlp-porter-stemmer","1di":"@stdlib/nlp/sentencize","1dj":"@stdlib/nlp-sentencize","0kc":"@stdlib/nlp/tokenize","0kd":"@stdlib/nlp-tokenize","0ke":"@stdlib/number/ctor","0kf":"@stdlib/number-ctor","2oW":"@stdlib/number/float16/base/assert/is-almost-equal","2oX":"@stdlib/number-float16-base-assert-is-almost-equal","2oY":"@stdlib/number/float16/base/assert/is-nan","2oZ":"@stdlib/number-float16-base-assert-is-nan","2oa":"@stdlib/number/float16/base/assert/is-negative-zero","2ob":"@stdlib/number-float16-base-assert-is-negative-zero","2oc":"@stdlib/number/float16/base/assert/is-positive-zero","2od":"@stdlib/number-float16-base-assert-is-positive-zero","2aI":"@stdlib/number/float16/base/exponent","2aJ":"@stdlib/number-float16-base-exponent","2oe":"@stdlib/number/float16/base/from-binary-string","2of":"@stdlib/number-float16-base-from-binary-string","2aK":"@stdlib/number/float16/base/from-word","2aL":"@stdlib/number-float16-base-from-word","2og":"@stdlib/number/float16/base/mul","2oh":"@stdlib/number-float16-base-mul","2oi":"@stdlib/number/float16/base/signbit","2oj":"@stdlib/number-float16-base-signbit","2ok":"@stdlib/number/float16/base/significand","2ol":"@stdlib/number-float16-base-significand","2om":"@stdlib/number/float16/base/sub","2on":"@stdlib/number-float16-base-sub","2aM":"@stdlib/number/float16/base/to-binary-string","2aN":"@stdlib/number-float16-base-to-binary-string","2oo":"@stdlib/number/float16/base/to-float32","2op":"@stdlib/number-float16-base-to-float32","2oq":"@stdlib/number/float16/base/to-float64","2or":"@stdlib/number-float16-base-to-float64","2aO":"@stdlib/number/float16/base/to-word","2aP":"@stdlib/number-float16-base-to-word","2os":"@stdlib/number/float16/base/ulp-difference","2ot":"@stdlib/number-float16-base-ulp-difference","2ou":"@stdlib/number/float16/ctor","2ov":"@stdlib/number-float16-ctor","2OW":"@stdlib/number/float32/base/assert/is-almost-equal","2OX":"@stdlib/number-float32-base-assert-is-almost-equal","2ow":"@stdlib/number/float32/base/assert/is-almost-same-value","2ox":"@stdlib/number-float32-base-assert-is-almost-same-value","1q4":"@stdlib/number/float32/base/assert/is-same-value-zero","1q5":"@stdlib/number-float32-base-assert-is-same-value-zero","1q6":"@stdlib/number/float32/base/assert/is-same-value","1q7":"@stdlib/number-float32-base-assert-is-same-value","1q8":"@stdlib/number/float32/base/assert","1q9":"@stdlib/number-float32-base-assert","0kg":"@stdlib/number/float32/base/exponent","0kh":"@stdlib/number-float32-base-exponent","0ki":"@stdlib/number/float32/base/from-binary-string","0kj":"@stdlib/number-float32-base-from-binary-string","0kk":"@stdlib/number/float32/base/from-word","0kl":"@stdlib/number-float32-base-from-word","2Ae":"@stdlib/number/float32/base/identity","2Af":"@stdlib/number-float32-base-identity","0km":"@stdlib/number/float32/base/normalize","0kn":"@stdlib/number-float32-base-normalize","0ko":"@stdlib/number/float32/base","0kp":"@stdlib/number-float32-base","0kq":"@stdlib/number/float32/base/signbit","0kr":"@stdlib/number-float32-base-signbit","0ks":"@stdlib/number/float32/base/significand","0kt":"@stdlib/number-float32-base-significand","28A":"@stdlib/number/float32/base/sub","28B":"@stdlib/number-float32-base-sub","0ku":"@stdlib/number/float32/base/to-binary-string","0kv":"@stdlib/number-float32-base-to-binary-string","2oy":"@stdlib/number/float32/base/to-float16","2oz":"@stdlib/number-float32-base-to-float16","0kw":"@stdlib/number/float32/base/to-int32","0kx":"@stdlib/number-float32-base-to-int32","0ky":"@stdlib/number/float32/base/to-uint32","0kz":"@stdlib/number-float32-base-to-uint32","0l0":"@stdlib/number/float32/base/to-word","0l1":"@stdlib/number-float32-base-to-word","2OY":"@stdlib/number/float32/base/ulp-difference","2OZ":"@stdlib/number-float32-base-ulp-difference","0l2":"@stdlib/number/float32","0l3":"@stdlib/number-float32","28C":"@stdlib/number/float64/base/add","28D":"@stdlib/number-float64-base-add","28E":"@stdlib/number/float64/base/add3","28F":"@stdlib/number-float64-base-add3","28G":"@stdlib/number/float64/base/add4","28H":"@stdlib/number-float64-base-add4","28I":"@stdlib/number/float64/base/add5","28J":"@stdlib/number-float64-base-add5","2Oa":"@stdlib/number/float64/base/assert/is-almost-equal","2Ob":"@stdlib/number-float64-base-assert-is-almost-equal","2p0":"@stdlib/number/float64/base/assert/is-almost-same-value","2p1":"@stdlib/number-float64-base-assert-is-almost-same-value","1qA":"@stdlib/number/float64/base/assert/is-same-value-zero","1qB":"@stdlib/number-float64-base-assert-is-same-value-zero","1qC":"@stdlib/number/float64/base/assert/is-same-value","1qD":"@stdlib/number-float64-base-assert-is-same-value","1qE":"@stdlib/number/float64/base/assert","1qF":"@stdlib/number-float64-base-assert","28K":"@stdlib/number/float64/base/div","28L":"@stdlib/number-float64-base-div","0l4":"@stdlib/number/float64/base/exponent","0l5":"@stdlib/number-float64-base-exponent","0l6":"@stdlib/number/float64/base/from-binary-string","0l7":"@stdlib/number-float64-base-from-binary-string","0l8":"@stdlib/number/float64/base/from-int64-bytes","0l9":"@stdlib/number-float64-base-from-int64-bytes","0lA":"@stdlib/number/float64/base/from-words","0lB":"@stdlib/number-float64-base-from-words","0lC":"@stdlib/number/float64/base/get-high-word","0lD":"@stdlib/number-float64-base-get-high-word","0lE":"@stdlib/number/float64/base/get-low-word","0lF":"@stdlib/number-float64-base-get-low-word","2Ag":"@stdlib/number/float64/base/identity","2Ah":"@stdlib/number-float64-base-identity","28M":"@stdlib/number/float64/base/mul","28N":"@stdlib/number-float64-base-mul","0lG":"@stdlib/number/float64/base/normalize","0lH":"@stdlib/number-float64-base-normalize","0lI":"@stdlib/number/float64/base","0lJ":"@stdlib/number-float64-base","0lK":"@stdlib/number/float64/base/set-high-word","0lL":"@stdlib/number-float64-base-set-high-word","0lM":"@stdlib/number/float64/base/set-low-word","0lN":"@stdlib/number-float64-base-set-low-word","0lO":"@stdlib/number/float64/base/signbit","0lP":"@stdlib/number-float64-base-signbit","28O":"@stdlib/number/float64/base/sub","28P":"@stdlib/number-float64-base-sub","2p2":"@stdlib/number/float64/base/sub3","2p3":"@stdlib/number-float64-base-sub3","0lQ":"@stdlib/number/float64/base/to-binary-string","0lR":"@stdlib/number-float64-base-to-binary-string","2YW":"@stdlib/number/float64/base/to-float16","2YX":"@stdlib/number-float64-base-to-float16","0lS":"@stdlib/number/float64/base/to-float32","0lT":"@stdlib/number-float64-base-to-float32","0lU":"@stdlib/number/float64/base/to-int32","0lV":"@stdlib/number-float64-base-to-int32","0lW":"@stdlib/number/float64/base/to-int64-bytes","0lX":"@stdlib/number-float64-base-to-int64-bytes","0lY":"@stdlib/number/float64/base/to-uint32","0lZ":"@stdlib/number-float64-base-to-uint32","0la":"@stdlib/number/float64/base/to-words","0lb":"@stdlib/number-float64-base-to-words","2L6":"@stdlib/number/float64/base/ulp-difference","2L7":"@stdlib/number-float64-base-ulp-difference","0lc":"@stdlib/number/float64","0ld":"@stdlib/number-float64","1dk":"@stdlib/number/float64/reviver","1dl":"@stdlib/number-float64-reviver","1dm":"@stdlib/number/float64/to-json","1dn":"@stdlib/number-float64-to-json","2Ts":"@stdlib/number/int16/base/identity","2Tt":"@stdlib/number-int16-base-identity","2YY":"@stdlib/number/int16/base","2YZ":"@stdlib/number-int16-base","2Tu":"@stdlib/number/int32/base/identity","2Tv":"@stdlib/number-int32-base-identity","2Ai":"@stdlib/number/int32/base/mul","2Aj":"@stdlib/number-int32-base-mul","2Ak":"@stdlib/number/int32/base/muldw","2Al":"@stdlib/number-int32-base-muldw","0le":"@stdlib/number/int32/base","0lf":"@stdlib/number-int32-base","0lg":"@stdlib/number/int32/base/to-uint32","0lh":"@stdlib/number-int32-base-to-uint32","0li":"@stdlib/number/int32","0lj":"@stdlib/number-int32","2Tw":"@stdlib/number/int8/base/identity","2Tx":"@stdlib/number-int8-base-identity","2Ya":"@stdlib/number/int8/base","2Yb":"@stdlib/number-int8-base","0ll":"@stdlib/number","2L8":"@stdlib/number/uint16/base/add","2L9":"@stdlib/number-uint16-base-add","0lm":"@stdlib/number/uint16/base/from-binary-string","0ln":"@stdlib/number-uint16-base-from-binary-string","2Ty":"@stdlib/number/uint16/base/identity","2Tz":"@stdlib/number-uint16-base-identity","2LA":"@stdlib/number/uint16/base/mul","2LB":"@stdlib/number-uint16-base-mul","0lo":"@stdlib/number/uint16/base","0lp":"@stdlib/number-uint16-base","2LC":"@stdlib/number/uint16/base/sub","2LD":"@stdlib/number-uint16-base-sub","0lq":"@stdlib/number/uint16/base/to-binary-string","0lr":"@stdlib/number-uint16-base-to-binary-string","0ls":"@stdlib/number/uint16","0lt":"@stdlib/number-uint16","2LE":"@stdlib/number/uint32/base/add","2LF":"@stdlib/number-uint32-base-add","0lu":"@stdlib/number/uint32/base/from-binary-string","0lv":"@stdlib/number-uint32-base-from-binary-string","2U0":"@stdlib/number/uint32/base/identity","2U1":"@stdlib/number-uint32-base-identity","28Q":"@stdlib/number/uint32/base/mul","28R":"@stdlib/number-uint32-base-mul","2Am":"@stdlib/number/uint32/base/muldw","2An":"@stdlib/number-uint32-base-muldw","0lw":"@stdlib/number/uint32/base","0lx":"@stdlib/number-uint32-base","0ly":"@stdlib/number/uint32/base/rotl","0lz":"@stdlib/number-uint32-base-rotl","0m0":"@stdlib/number/uint32/base/rotr","0m1":"@stdlib/number-uint32-base-rotr","2LG":"@stdlib/number/uint32/base/sub","2LH":"@stdlib/number-uint32-base-sub","0m2":"@stdlib/number/uint32/base/to-binary-string","0m3":"@stdlib/number-uint32-base-to-binary-string","0m4":"@stdlib/number/uint32/base/to-int32","0m5":"@stdlib/number-uint32-base-to-int32","0m6":"@stdlib/number/uint32","0m7":"@stdlib/number-uint32","2p4":"@stdlib/number/uint64/ctor","2p5":"@stdlib/number-uint64-ctor","2LI":"@stdlib/number/uint8/base/add","2LJ":"@stdlib/number-uint8-base-add","0m8":"@stdlib/number/uint8/base/from-binary-string","0m9":"@stdlib/number-uint8-base-from-binary-string","2U2":"@stdlib/number/uint8/base/identity","2U3":"@stdlib/number-uint8-base-identity","2LK":"@stdlib/number/uint8/base/mul","2LL":"@stdlib/number-uint8-base-mul","0mA":"@stdlib/number/uint8/base","0mB":"@stdlib/number-uint8-base","2LM":"@stdlib/number/uint8/base/sub","2LN":"@stdlib/number-uint8-base-sub","0mC":"@stdlib/number/uint8/base/to-binary-string","0mD":"@stdlib/number-uint8-base-to-binary-string","0mE":"@stdlib/number/uint8","0mF":"@stdlib/number-uint8","2aQ":"@stdlib/object/any-in-by","2aR":"@stdlib/object-any-in-by","2aS":"@stdlib/object/any-own-by","2aT":"@stdlib/object-any-own-by","2Ry":"@stdlib/object/assign-in","2Rz":"@stdlib/object-assign-in","1do":"@stdlib/object/assign","1dp":"@stdlib/object-assign","2p6":"@stdlib/object/bifurcate-in","2p7":"@stdlib/object-bifurcate-in","2p8":"@stdlib/object/bifurcate-own","2p9":"@stdlib/object-bifurcate-own","2pA":"@stdlib/object/capitalize-keys","2pB":"@stdlib/object-capitalize-keys","2pC":"@stdlib/object/common-keys-in","2pD":"@stdlib/object-common-keys-in","2pE":"@stdlib/object/common-keys","2pF":"@stdlib/object-common-keys","1dq":"@stdlib/object/ctor","1dr":"@stdlib/object-ctor","2pG":"@stdlib/object/deep-get","2pH":"@stdlib/object-deep-get","2pI":"@stdlib/object/deep-set","2pJ":"@stdlib/object-deep-set","2Eu":"@stdlib/object/every-in-by","2Ev":"@stdlib/object-every-in-by","2Oc":"@stdlib/object/every-own-by","2Od":"@stdlib/object-every-own-by","2pK":"@stdlib/object/for-in","2pL":"@stdlib/object-for-in","2pM":"@stdlib/object/for-own","2pN":"@stdlib/object-for-own","2pO":"@stdlib/object/inverse-by","2pP":"@stdlib/object-inverse-by","2pQ":"@stdlib/object/inverse","2pR":"@stdlib/object-inverse","2pS":"@stdlib/object/lowercase-keys","2pT":"@stdlib/object-lowercase-keys","2aU":"@stdlib/object/move-property","2aV":"@stdlib/object-move-property","2Oe":"@stdlib/object/none-in-by","2Of":"@stdlib/object-none-in-by","2aW":"@stdlib/object/none-own-by","2aX":"@stdlib/object-none-own-by","1dt":"@stdlib/object","2Og":"@stdlib/object/some-in-by","2Oh":"@stdlib/object-some-in-by","2aY":"@stdlib/object/some-own-by","2aZ":"@stdlib/object-some-own-by","2pU":"@stdlib/object/uncapitalize-keys","2pV":"@stdlib/object-uncapitalize-keys","2pW":"@stdlib/object/uppercase-keys","2pX":"@stdlib/object-uppercase-keys","0mG":"@stdlib/os/arch","0mH":"@stdlib/os-arch","0mI":"@stdlib/os/byte-order","0mJ":"@stdlib/os-byte-order","0mK":"@stdlib/os/configdir","0mL":"@stdlib/os-configdir","0mM":"@stdlib/os/float-word-order","0mN":"@stdlib/os-float-word-order","0mO":"@stdlib/os/homedir","0mP":"@stdlib/os-homedir","0mQ":"@stdlib/os/num-cpus","0mR":"@stdlib/os-num-cpus","0mT":"@stdlib/os","0mU":"@stdlib/os/platform","0mV":"@stdlib/os-platform","0mW":"@stdlib/os/tmpdir","0mX":"@stdlib/os-tmpdir","0mY":"@stdlib/plot/base/ctor","0mZ":"@stdlib/plot-base-ctor","0ma":"@stdlib/plot/components/svg/annotations","0mb":"@stdlib/plot-components-svg-annotations","0mc":"@stdlib/plot/components/svg/axis","0md":"@stdlib/plot-components-svg-axis","0me":"@stdlib/plot/components/svg/background","0mf":"@stdlib/plot-components-svg-background","0mg":"@stdlib/plot/components/svg/canvas","0mh":"@stdlib/plot-components-svg-canvas","0mi":"@stdlib/plot/components/svg/clip-path","0mj":"@stdlib/plot-components-svg-clip-path","0mk":"@stdlib/plot/components/svg/defs","0ml":"@stdlib/plot-components-svg-defs","0mm":"@stdlib/plot/components/svg/graph","0mn":"@stdlib/plot-components-svg-graph","0mo":"@stdlib/plot/components/svg/marks","0mp":"@stdlib/plot-components-svg-marks","0mq":"@stdlib/plot/components/svg/path","0mr":"@stdlib/plot-components-svg-path","0ms":"@stdlib/plot/components/svg/rug","0mt":"@stdlib/plot-components-svg-rug","0mu":"@stdlib/plot/components/svg/symbols","0mv":"@stdlib/plot-components-svg-symbols","0mw":"@stdlib/plot/components/svg/title","0mx":"@stdlib/plot-components-svg-title","0my":"@stdlib/plot/ctor","0mz":"@stdlib/plot-ctor","0n1":"@stdlib/plot","0n2":"@stdlib/plot/sparklines/base/ctor","0n3":"@stdlib/plot-sparklines-base-ctor","0n4":"@stdlib/plot/sparklines/base","0n5":"@stdlib/plot-sparklines-base","0n6":"@stdlib/plot/sparklines","0n7":"@stdlib/plot-sparklines","0n8":"@stdlib/plot/sparklines/unicode/column","0n9":"@stdlib/plot-sparklines-unicode-column","0nA":"@stdlib/plot/sparklines/unicode/line","0nB":"@stdlib/plot-sparklines-unicode-line","0nC":"@stdlib/plot/sparklines/unicode","0nD":"@stdlib/plot-sparklines-unicode","0nE":"@stdlib/plot/sparklines/unicode/tristate","0nF":"@stdlib/plot-sparklines-unicode-tristate","0nG":"@stdlib/plot/sparklines/unicode/up-down","0nH":"@stdlib/plot-sparklines-unicode-up-down","0nI":"@stdlib/plot/sparklines/unicode/win-loss","0nJ":"@stdlib/plot-sparklines-unicode-win-loss","0nK":"@stdlib/plot/unicode/stemleaf","0nL":"@stdlib/plot-unicode-stemleaf","0nM":"@stdlib/process/argv","0nN":"@stdlib/process-argv","0nO":"@stdlib/process/chdir","0nP":"@stdlib/process-chdir","0nQ":"@stdlib/process/cwd","0nR":"@stdlib/process-cwd","0nS":"@stdlib/process/env","0nT":"@stdlib/process-env","0nU":"@stdlib/process/exec-path","0nV":"@stdlib/process-exec-path","0nW":"@stdlib/process/getegid","0nX":"@stdlib/process-getegid","0nY":"@stdlib/process/geteuid","0nZ":"@stdlib/process-geteuid","0na":"@stdlib/process/getgid","0nb":"@stdlib/process-getgid","0nc":"@stdlib/process/getuid","0nd":"@stdlib/process-getuid","0ne":"@stdlib/process/node-version","0nf":"@stdlib/process-node-version","0nh":"@stdlib/process","0ni":"@stdlib/process/read-stdin","0nj":"@stdlib/process-read-stdin","0nk":"@stdlib/process/umask","0nl":"@stdlib/process-umask","0nm":"@stdlib/proxy/ctor","0nn":"@stdlib/proxy-ctor","0np":"@stdlib/proxy","2pY":"@stdlib/random/arcsine","2pZ":"@stdlib/random-arcsine","1du":"@stdlib/random/array/arcsine","1dv":"@stdlib/random-array-arcsine","1o2":"@stdlib/random/array/bernoulli","1o3":"@stdlib/random-array-bernoulli","1dw":"@stdlib/random/array/beta","1dx":"@stdlib/random-array-beta","1dy":"@stdlib/random/array/betaprime","1dz":"@stdlib/random-array-betaprime","1qG":"@stdlib/random/array/binomial","1qH":"@stdlib/random-array-binomial","1qI":"@stdlib/random/array/cauchy","1qJ":"@stdlib/random-array-cauchy","1o4":"@stdlib/random/array/chi","1o5":"@stdlib/random-array-chi","1o6":"@stdlib/random/array/chisquare","1o7":"@stdlib/random-array-chisquare","1e0":"@stdlib/random/array/cosine","1e1":"@stdlib/random-array-cosine","1e2":"@stdlib/random/array/discrete-uniform","1e3":"@stdlib/random-array-discrete-uniform","1qK":"@stdlib/random/array/erlang","1qL":"@stdlib/random-array-erlang","1e4":"@stdlib/random/array/exponential","1e5":"@stdlib/random-array-exponential","1qM":"@stdlib/random/array/f","1qN":"@stdlib/random-array-f","1qO":"@stdlib/random/array/frechet","1qP":"@stdlib/random-array-frechet","1e6":"@stdlib/random/array/gamma","1e7":"@stdlib/random-array-gamma","1e8":"@stdlib/random/array/geometric","1e9":"@stdlib/random-array-geometric","1qQ":"@stdlib/random/array/gumbel","1qR":"@stdlib/random-array-gumbel","1qS":"@stdlib/random/array/hypergeometric","1qT":"@stdlib/random-array-hypergeometric","1eA":"@stdlib/random/array/invgamma","1eB":"@stdlib/random-array-invgamma","1qU":"@stdlib/random/array/kumaraswamy","1qV":"@stdlib/random-array-kumaraswamy","1qW":"@stdlib/random/array/laplace","1qX":"@stdlib/random-array-laplace","1qY":"@stdlib/random/array/levy","1qZ":"@stdlib/random-array-levy","1qa":"@stdlib/random/array/logistic","1qb":"@stdlib/random-array-logistic","1eC":"@stdlib/random/array/lognormal","1eD":"@stdlib/random-array-lognormal","1eE":"@stdlib/random/array/minstd-shuffle","1eF":"@stdlib/random-array-minstd-shuffle","1eG":"@stdlib/random/array/minstd","1eH":"@stdlib/random-array-minstd","1eI":"@stdlib/random/array/mt19937","1eJ":"@stdlib/random-array-mt19937","1qc":"@stdlib/random/array/negative-binomial","1qd":"@stdlib/random-array-negative-binomial","1eK":"@stdlib/random/array/normal","1eL":"@stdlib/random-array-normal","1eM":"@stdlib/random/array","1eN":"@stdlib/random-array","1qe":"@stdlib/random/array/pareto-type1","1qf":"@stdlib/random-array-pareto-type1","1o8":"@stdlib/random/array/poisson","1o9":"@stdlib/random-array-poisson","1eO":"@stdlib/random/array/randu","1eP":"@stdlib/random-array-randu","1oA":"@stdlib/random/array/rayleigh","1oB":"@stdlib/random-array-rayleigh","1oC":"@stdlib/random/array/t","1oD":"@stdlib/random-array-t","1qg":"@stdlib/random/array/tools/binary-factory","1qh":"@stdlib/random-array-tools-binary-factory","1qi":"@stdlib/random/array/tools/binary","1qj":"@stdlib/random-array-tools-binary","1oE":"@stdlib/random/array/tools/nullary","1oF":"@stdlib/random-array-tools-nullary","1rY":"@stdlib/random/array/tools","1rZ":"@stdlib/random-array-tools","1qk":"@stdlib/random/array/tools/ternary-factory","1ql":"@stdlib/random-array-tools-ternary-factory","1qm":"@stdlib/random/array/tools/ternary","1qn":"@stdlib/random-array-tools-ternary","1oG":"@stdlib/random/array/tools/unary-factory","1oH":"@stdlib/random-array-tools-unary-factory","1oI":"@stdlib/random/array/tools/unary","1oJ":"@stdlib/random-array-tools-unary","1qo":"@stdlib/random/array/triangular","1qp":"@stdlib/random-array-triangular","1eQ":"@stdlib/random/array/uniform","1eR":"@stdlib/random-array-uniform","1qq":"@stdlib/random/array/weibull","1qr":"@stdlib/random-array-weibull","0nq":"@stdlib/random/base/arcsine","0nr":"@stdlib/random-base-arcsine","0ns":"@stdlib/random/base/bernoulli","0nt":"@stdlib/random-base-bernoulli","0nu":"@stdlib/random/base/beta","0nv":"@stdlib/random-base-beta","0nw":"@stdlib/random/base/betaprime","0nx":"@stdlib/random-base-betaprime","0ny":"@stdlib/random/base/binomial","0nz":"@stdlib/random-base-binomial","0o0":"@stdlib/random/base/box-muller","0o1":"@stdlib/random-base-box-muller","0o2":"@stdlib/random/base/cauchy","0o3":"@stdlib/random-base-cauchy","0o4":"@stdlib/random/base/chi","0o5":"@stdlib/random-base-chi","0o6":"@stdlib/random/base/chisquare","0o7":"@stdlib/random-base-chisquare","0o8":"@stdlib/random/base/cosine","0o9":"@stdlib/random-base-cosine","0oA":"@stdlib/random/base/discrete-uniform","0oB":"@stdlib/random-base-discrete-uniform","0oC":"@stdlib/random/base/erlang","0oD":"@stdlib/random-base-erlang","0oE":"@stdlib/random/base/exponential","0oF":"@stdlib/random-base-exponential","0oG":"@stdlib/random/base/f","0oH":"@stdlib/random-base-f","0oI":"@stdlib/random/base/frechet","0oJ":"@stdlib/random-base-frechet","0oK":"@stdlib/random/base/gamma","0oL":"@stdlib/random-base-gamma","0oM":"@stdlib/random/base/geometric","0oN":"@stdlib/random-base-geometric","0oO":"@stdlib/random/base/gumbel","0oP":"@stdlib/random-base-gumbel","0oQ":"@stdlib/random/base/hypergeometric","0oR":"@stdlib/random-base-hypergeometric","0oS":"@stdlib/random/base/improved-ziggurat","0oT":"@stdlib/random-base-improved-ziggurat","0oU":"@stdlib/random/base/invgamma","0oV":"@stdlib/random-base-invgamma","0oW":"@stdlib/random/base/kumaraswamy","0oX":"@stdlib/random-base-kumaraswamy","0oY":"@stdlib/random/base/laplace","0oZ":"@stdlib/random-base-laplace","0oa":"@stdlib/random/base/levy","0ob":"@stdlib/random-base-levy","0oc":"@stdlib/random/base/logistic","0od":"@stdlib/random-base-logistic","0oe":"@stdlib/random/base/lognormal","0of":"@stdlib/random-base-lognormal","0og":"@stdlib/random/base/minstd-shuffle","0oh":"@stdlib/random-base-minstd-shuffle","0oi":"@stdlib/random/base/minstd","0oj":"@stdlib/random-base-minstd","0ok":"@stdlib/random/base/mt19937","0ol":"@stdlib/random-base-mt19937","0om":"@stdlib/random/base/negative-binomial","0on":"@stdlib/random-base-negative-binomial","0oo":"@stdlib/random/base/normal","0op":"@stdlib/random-base-normal","0oq":"@stdlib/random/base","0or":"@stdlib/random-base","0os":"@stdlib/random/base/pareto-type1","0ot":"@stdlib/random-base-pareto-type1","0ou":"@stdlib/random/base/poisson","0ov":"@stdlib/random-base-poisson","0ow":"@stdlib/random/base/randi","0ox":"@stdlib/random-base-randi","0oy":"@stdlib/random/base/randn","0oz":"@stdlib/random-base-randn","0p0":"@stdlib/random/base/randu","0p1":"@stdlib/random-base-randu","0p2":"@stdlib/random/base/rayleigh","0p3":"@stdlib/random-base-rayleigh","0p4":"@stdlib/random/base/reviver","0p5":"@stdlib/random-base-reviver","1sM":"@stdlib/random/base/shared","1sN":"@stdlib/random-base-shared","0p6":"@stdlib/random/base/t","0p7":"@stdlib/random-base-t","0p8":"@stdlib/random/base/triangular","0p9":"@stdlib/random-base-triangular","0pA":"@stdlib/random/base/uniform","0pB":"@stdlib/random-base-uniform","0pC":"@stdlib/random/base/weibull","0pD":"@stdlib/random-base-weibull","2pa":"@stdlib/random/bernoulli","2pb":"@stdlib/random-bernoulli","2pc":"@stdlib/random/beta","2pd":"@stdlib/random-beta","2pe":"@stdlib/random/betaprime","2pf":"@stdlib/random-betaprime","2pg":"@stdlib/random/binomial","2ph":"@stdlib/random-binomial","2pi":"@stdlib/random/cauchy","2pj":"@stdlib/random-cauchy","2pk":"@stdlib/random/chi","2pl":"@stdlib/random-chi","2pm":"@stdlib/random/chisquare","2pn":"@stdlib/random-chisquare","2po":"@stdlib/random/cosine","2pp":"@stdlib/random-cosine","2pq":"@stdlib/random/discrete-uniform","2pr":"@stdlib/random-discrete-uniform","2ps":"@stdlib/random/erlang","2pt":"@stdlib/random-erlang","1eS":"@stdlib/random/exponential","1eT":"@stdlib/random-exponential","2pu":"@stdlib/random/f","2pv":"@stdlib/random-f","2pw":"@stdlib/random/frechet","2px":"@stdlib/random-frechet","2py":"@stdlib/random/gamma","2pz":"@stdlib/random-gamma","2q0":"@stdlib/random/geometric","2q1":"@stdlib/random-geometric","2q2":"@stdlib/random/gumbel","2q3":"@stdlib/random-gumbel","2q4":"@stdlib/random/hypergeometric","2q5":"@stdlib/random-hypergeometric","2q6":"@stdlib/random/invgamma","2q7":"@stdlib/random-invgamma","0pE":"@stdlib/random/iter/arcsine","0pF":"@stdlib/random-iter-arcsine","0pG":"@stdlib/random/iter/bernoulli","0pH":"@stdlib/random-iter-bernoulli","0pI":"@stdlib/random/iter/beta","0pJ":"@stdlib/random-iter-beta","0pK":"@stdlib/random/iter/betaprime","0pL":"@stdlib/random-iter-betaprime","0pM":"@stdlib/random/iter/binomial","0pN":"@stdlib/random-iter-binomial","0pO":"@stdlib/random/iter/box-muller","0pP":"@stdlib/random-iter-box-muller","0pQ":"@stdlib/random/iter/cauchy","0pR":"@stdlib/random-iter-cauchy","0pS":"@stdlib/random/iter/chi","0pT":"@stdlib/random-iter-chi","0pU":"@stdlib/random/iter/chisquare","0pV":"@stdlib/random-iter-chisquare","0pW":"@stdlib/random/iter/cosine","0pX":"@stdlib/random-iter-cosine","0pY":"@stdlib/random/iter/discrete-uniform","0pZ":"@stdlib/random-iter-discrete-uniform","0pa":"@stdlib/random/iter/erlang","0pb":"@stdlib/random-iter-erlang","0pc":"@stdlib/random/iter/exponential","0pd":"@stdlib/random-iter-exponential","0pe":"@stdlib/random/iter/f","0pf":"@stdlib/random-iter-f","0pg":"@stdlib/random/iter/frechet","0ph":"@stdlib/random-iter-frechet","0pi":"@stdlib/random/iter/gamma","0pj":"@stdlib/random-iter-gamma","0pk":"@stdlib/random/iter/geometric","0pl":"@stdlib/random-iter-geometric","0pm":"@stdlib/random/iter/gumbel","0pn":"@stdlib/random-iter-gumbel","0po":"@stdlib/random/iter/hypergeometric","0pp":"@stdlib/random-iter-hypergeometric","0pq":"@stdlib/random/iter/improved-ziggurat","0pr":"@stdlib/random-iter-improved-ziggurat","0ps":"@stdlib/random/iter/invgamma","0pt":"@stdlib/random-iter-invgamma","0pu":"@stdlib/random/iter/kumaraswamy","0pv":"@stdlib/random-iter-kumaraswamy","0pw":"@stdlib/random/iter/laplace","0px":"@stdlib/random-iter-laplace","0py":"@stdlib/random/iter/levy","0pz":"@stdlib/random-iter-levy","0q0":"@stdlib/random/iter/logistic","0q1":"@stdlib/random-iter-logistic","0q2":"@stdlib/random/iter/lognormal","0q3":"@stdlib/random-iter-lognormal","0q4":"@stdlib/random/iter/minstd-shuffle","0q5":"@stdlib/random-iter-minstd-shuffle","0q6":"@stdlib/random/iter/minstd","0q7":"@stdlib/random-iter-minstd","0q8":"@stdlib/random/iter/mt19937","0q9":"@stdlib/random-iter-mt19937","0qA":"@stdlib/random/iter/negative-binomial","0qB":"@stdlib/random-iter-negative-binomial","0qC":"@stdlib/random/iter/normal","0qD":"@stdlib/random-iter-normal","0qE":"@stdlib/random/iter","0qF":"@stdlib/random-iter","0qG":"@stdlib/random/iter/pareto-type1","0qH":"@stdlib/random-iter-pareto-type1","0qI":"@stdlib/random/iter/poisson","0qJ":"@stdlib/random-iter-poisson","0qK":"@stdlib/random/iter/randi","0qL":"@stdlib/random-iter-randi","0qM":"@stdlib/random/iter/randn","0qN":"@stdlib/random-iter-randn","0qO":"@stdlib/random/iter/randu","0qP":"@stdlib/random-iter-randu","0qQ":"@stdlib/random/iter/rayleigh","0qR":"@stdlib/random-iter-rayleigh","0qS":"@stdlib/random/iter/t","0qT":"@stdlib/random-iter-t","0qU":"@stdlib/random/iter/triangular","0qV":"@stdlib/random-iter-triangular","0qW":"@stdlib/random/iter/uniform","0qX":"@stdlib/random-iter-uniform","0qY":"@stdlib/random/iter/weibull","0qZ":"@stdlib/random-iter-weibull","2q8":"@stdlib/random/kumaraswamy","2q9":"@stdlib/random-kumaraswamy","2qA":"@stdlib/random/laplace","2qB":"@stdlib/random-laplace","2qC":"@stdlib/random/levy","2qD":"@stdlib/random-levy","2qE":"@stdlib/random/logistic","2qF":"@stdlib/random-logistic","2qG":"@stdlib/random/lognormal","2qH":"@stdlib/random-lognormal","2qI":"@stdlib/random/negative-binomial","2qJ":"@stdlib/random-negative-binomial","2qK":"@stdlib/random/normal","2qL":"@stdlib/random-normal","0qb":"@stdlib/random","2qM":"@stdlib/random/pareto-type1","2qN":"@stdlib/random-pareto-type1","2qO":"@stdlib/random/poisson","2qP":"@stdlib/random-poisson","2qQ":"@stdlib/random/rayleigh","2qR":"@stdlib/random-rayleigh","0qc":"@stdlib/random/sample","0qd":"@stdlib/random-sample","0qe":"@stdlib/random/shuffle","0qf":"@stdlib/random-shuffle","0qg":"@stdlib/random/streams/arcsine","0qh":"@stdlib/random-streams-arcsine","0qi":"@stdlib/random/streams/bernoulli","0qj":"@stdlib/random-streams-bernoulli","0qk":"@stdlib/random/streams/beta","0ql":"@stdlib/random-streams-beta","0qm":"@stdlib/random/streams/betaprime","0qn":"@stdlib/random-streams-betaprime","0qo":"@stdlib/random/streams/binomial","0qp":"@stdlib/random-streams-binomial","0qq":"@stdlib/random/streams/box-muller","0qr":"@stdlib/random-streams-box-muller","0qs":"@stdlib/random/streams/cauchy","0qt":"@stdlib/random-streams-cauchy","0qu":"@stdlib/random/streams/chi","0qv":"@stdlib/random-streams-chi","0qw":"@stdlib/random/streams/chisquare","0qx":"@stdlib/random-streams-chisquare","0qy":"@stdlib/random/streams/cosine","0qz":"@stdlib/random-streams-cosine","0r0":"@stdlib/random/streams/discrete-uniform","0r1":"@stdlib/random-streams-discrete-uniform","0r2":"@stdlib/random/streams/erlang","0r3":"@stdlib/random-streams-erlang","0r4":"@stdlib/random/streams/exponential","0r5":"@stdlib/random-streams-exponential","0r6":"@stdlib/random/streams/f","0r7":"@stdlib/random-streams-f","0r8":"@stdlib/random/streams/frechet","0r9":"@stdlib/random-streams-frechet","0rA":"@stdlib/random/streams/gamma","0rB":"@stdlib/random-streams-gamma","0rC":"@stdlib/random/streams/geometric","0rD":"@stdlib/random-streams-geometric","0rE":"@stdlib/random/streams/gumbel","0rF":"@stdlib/random-streams-gumbel","0rG":"@stdlib/random/streams/hypergeometric","0rH":"@stdlib/random-streams-hypergeometric","0rI":"@stdlib/random/streams/improved-ziggurat","0rJ":"@stdlib/random-streams-improved-ziggurat","0rK":"@stdlib/random/streams/invgamma","0rL":"@stdlib/random-streams-invgamma","0rM":"@stdlib/random/streams/kumaraswamy","0rN":"@stdlib/random-streams-kumaraswamy","0rO":"@stdlib/random/streams/laplace","0rP":"@stdlib/random-streams-laplace","0rQ":"@stdlib/random/streams/levy","0rR":"@stdlib/random-streams-levy","0rS":"@stdlib/random/streams/logistic","0rT":"@stdlib/random-streams-logistic","0rU":"@stdlib/random/streams/lognormal","0rV":"@stdlib/random-streams-lognormal","0rW":"@stdlib/random/streams/minstd-shuffle","0rX":"@stdlib/random-streams-minstd-shuffle","0rY":"@stdlib/random/streams/minstd","0rZ":"@stdlib/random-streams-minstd","0ra":"@stdlib/random/streams/mt19937","0rb":"@stdlib/random-streams-mt19937","0rc":"@stdlib/random/streams/negative-binomial","0rd":"@stdlib/random-streams-negative-binomial","0re":"@stdlib/random/streams/normal","0rf":"@stdlib/random-streams-normal","0rg":"@stdlib/random/streams","0rh":"@stdlib/random-streams","0ri":"@stdlib/random/streams/pareto-type1","0rj":"@stdlib/random-streams-pareto-type1","0rk":"@stdlib/random/streams/poisson","0rl":"@stdlib/random-streams-poisson","0rm":"@stdlib/random/streams/randi","0rn":"@stdlib/random-streams-randi","0ro":"@stdlib/random/streams/randn","0rp":"@stdlib/random-streams-randn","0rq":"@stdlib/random/streams/randu","0rr":"@stdlib/random-streams-randu","0rs":"@stdlib/random/streams/rayleigh","0rt":"@stdlib/random-streams-rayleigh","0ru":"@stdlib/random/streams/t","0rv":"@stdlib/random-streams-t","0rw":"@stdlib/random/streams/triangular","0rx":"@stdlib/random-streams-triangular","0ry":"@stdlib/random/streams/uniform","0rz":"@stdlib/random-streams-uniform","0s0":"@stdlib/random/streams/weibull","0s1":"@stdlib/random-streams-weibull","1eU":"@stdlib/random/strided/arcsine","1eV":"@stdlib/random-strided-arcsine","1ra":"@stdlib/random/strided/bernoulli","1rb":"@stdlib/random-strided-bernoulli","1eW":"@stdlib/random/strided/beta","1eX":"@stdlib/random-strided-beta","1eY":"@stdlib/random/strided/betaprime","1eZ":"@stdlib/random-strided-betaprime","1rc":"@stdlib/random/strided/chi","1rd":"@stdlib/random-strided-chi","1re":"@stdlib/random/strided/chisquare","1rf":"@stdlib/random-strided-chisquare","1ea":"@stdlib/random/strided/cosine","1eb":"@stdlib/random-strided-cosine","1ec":"@stdlib/random/strided/discrete-uniform","1ed":"@stdlib/random-strided-discrete-uniform","1ee":"@stdlib/random/strided/exponential","1ef":"@stdlib/random-strided-exponential","1eg":"@stdlib/random/strided/gamma","1eh":"@stdlib/random-strided-gamma","1rg":"@stdlib/random/strided/geometric","1rh":"@stdlib/random-strided-geometric","1ei":"@stdlib/random/strided/invgamma","1ej":"@stdlib/random-strided-invgamma","1ek":"@stdlib/random/strided/lognormal","1el":"@stdlib/random-strided-lognormal","1em":"@stdlib/random/strided/minstd-shuffle","1en":"@stdlib/random-strided-minstd-shuffle","1eo":"@stdlib/random/strided/minstd","1ep":"@stdlib/random-strided-minstd","1eq":"@stdlib/random/strided/mt19937","1er":"@stdlib/random-strided-mt19937","1es":"@stdlib/random/strided/normal","1et":"@stdlib/random-strided-normal","1eu":"@stdlib/random/strided","1ev":"@stdlib/random-strided","1ri":"@stdlib/random/strided/poisson","1rj":"@stdlib/random-strided-poisson","1ew":"@stdlib/random/strided/randu","1ex":"@stdlib/random-strided-randu","1rk":"@stdlib/random/strided/rayleigh","1rl":"@stdlib/random-strided-rayleigh","1rm":"@stdlib/random/strided/t","1rn":"@stdlib/random-strided-t","1ro":"@stdlib/random/strided/tools/binary-factory","1rp":"@stdlib/random-strided-tools-binary-factory","1rq":"@stdlib/random/strided/tools","1rr":"@stdlib/random-strided-tools","1rs":"@stdlib/random/strided/tools/ternary-factory","1rt":"@stdlib/random-strided-tools-ternary-factory","1ru":"@stdlib/random/strided/tools/unary-factory","1rv":"@stdlib/random-strided-tools-unary-factory","1ey":"@stdlib/random/strided/uniform","1ez":"@stdlib/random-strided-uniform","1f0":"@stdlib/random/strided/weibull","1f1":"@stdlib/random-strided-weibull","2qS":"@stdlib/random/t","2qT":"@stdlib/random-t","2HE":"@stdlib/random/tools/binary-factory","2HF":"@stdlib/random-tools-binary-factory","2HG":"@stdlib/random/tools/binary","2HH":"@stdlib/random-tools-binary","2GK":"@stdlib/random/tools","2GL":"@stdlib/random-tools","2qU":"@stdlib/random/tools/ternary-factory","2qV":"@stdlib/random-tools-ternary-factory","2qW":"@stdlib/random/tools/ternary","2qX":"@stdlib/random-tools-ternary","2GM":"@stdlib/random/tools/unary-factory","2GN":"@stdlib/random-tools-unary-factory","2GO":"@stdlib/random/tools/unary","2GP":"@stdlib/random-tools-unary","2qY":"@stdlib/random/triangular","2qZ":"@stdlib/random-triangular","2HI":"@stdlib/random/uniform","2HJ":"@stdlib/random-uniform","2qa":"@stdlib/random/weibull","2qb":"@stdlib/random-weibull","0s2":"@stdlib/regexp/basename-posix","0s3":"@stdlib/regexp-basename-posix","0s4":"@stdlib/regexp/basename-windows","0s5":"@stdlib/regexp-basename-windows","0s6":"@stdlib/regexp/basename","0s7":"@stdlib/regexp-basename","0s8":"@stdlib/regexp/color-hexadecimal","0s9":"@stdlib/regexp-color-hexadecimal","0sA":"@stdlib/regexp/decimal-number","0sB":"@stdlib/regexp-decimal-number","0sC":"@stdlib/regexp/dirname-posix","0sD":"@stdlib/regexp-dirname-posix","0sE":"@stdlib/regexp/dirname-windows","0sF":"@stdlib/regexp-dirname-windows","0sG":"@stdlib/regexp/dirname","0sH":"@stdlib/regexp-dirname","1f2":"@stdlib/regexp/duration-string","1f3":"@stdlib/regexp-duration-string","0sI":"@stdlib/regexp/eol","0sJ":"@stdlib/regexp-eol","0sK":"@stdlib/regexp/extended-length-path","0sL":"@stdlib/regexp-extended-length-path","0sM":"@stdlib/regexp/extname-posix","0sN":"@stdlib/regexp-extname-posix","0sO":"@stdlib/regexp/extname-windows","0sP":"@stdlib/regexp-extname-windows","0sQ":"@stdlib/regexp/extname","0sR":"@stdlib/regexp-extname","0sS":"@stdlib/regexp/filename-posix","0sT":"@stdlib/regexp-filename-posix","0sU":"@stdlib/regexp/filename-windows","0sV":"@stdlib/regexp-filename-windows","0sW":"@stdlib/regexp/filename","0sX":"@stdlib/regexp-filename","0sY":"@stdlib/regexp/function-name","0sZ":"@stdlib/regexp-function-name","0sa":"@stdlib/regexp/native-function","0sb":"@stdlib/regexp-native-function","0sd":"@stdlib/regexp","0se":"@stdlib/regexp/regexp","0sf":"@stdlib/regexp-regexp","1f4":"@stdlib/regexp/reviver","1f5":"@stdlib/regexp-reviver","1f6":"@stdlib/regexp/semver","1f7":"@stdlib/regexp-semver","1f8":"@stdlib/regexp/to-json","1f9":"@stdlib/regexp-to-json","0sg":"@stdlib/regexp/unc-path","0sh":"@stdlib/regexp-unc-path","0si":"@stdlib/regexp/utf16-surrogate-pair","0sj":"@stdlib/regexp-utf16-surrogate-pair","0sk":"@stdlib/regexp/utf16-unpaired-surrogate","0sl":"@stdlib/regexp-utf16-unpaired-surrogate","0sm":"@stdlib/regexp/whitespace","0sn":"@stdlib/regexp-whitespace","0so":"@stdlib/repl/code-blocks","0sp":"@stdlib/repl-code-blocks","0sq":"@stdlib/repl/help","0sr":"@stdlib/repl-help","0ss":"@stdlib/repl/info","0st":"@stdlib/repl-info","0sv":"@stdlib/repl","0sw":"@stdlib/repl/presentation","0sx":"@stdlib/repl-presentation","0sy":"@stdlib/repl/server","0sz":"@stdlib/repl-server","0t0":"@stdlib/repl/signature","0t1":"@stdlib/repl-signature","0t2":"@stdlib/repl/typed-signature","0t3":"@stdlib/repl-typed-signature","0t4":"@stdlib/simulate/iter/awgn","0t5":"@stdlib/simulate-iter-awgn","0t6":"@stdlib/simulate/iter/awln","0t7":"@stdlib/simulate-iter-awln","0t8":"@stdlib/simulate/iter/awun","0t9":"@stdlib/simulate-iter-awun","0tA":"@stdlib/simulate/iter/bartlett-hann-pulse","0tB":"@stdlib/simulate-iter-bartlett-hann-pulse","0tC":"@stdlib/simulate/iter/bartlett-pulse","0tD":"@stdlib/simulate-iter-bartlett-pulse","0tE":"@stdlib/simulate/iter/cosine-wave","0tF":"@stdlib/simulate-iter-cosine-wave","0tG":"@stdlib/simulate/iter/dirac-comb","0tH":"@stdlib/simulate-iter-dirac-comb","0tI":"@stdlib/simulate/iter/flat-top-pulse","0tJ":"@stdlib/simulate-iter-flat-top-pulse","0tK":"@stdlib/simulate/iter/hann-pulse","0tL":"@stdlib/simulate-iter-hann-pulse","0tM":"@stdlib/simulate/iter/lanczos-pulse","0tN":"@stdlib/simulate-iter-lanczos-pulse","0tO":"@stdlib/simulate/iter","0tP":"@stdlib/simulate-iter","0tQ":"@stdlib/simulate/iter/periodic-sinc","0tR":"@stdlib/simulate-iter-periodic-sinc","0tS":"@stdlib/simulate/iter/pulse","0tT":"@stdlib/simulate-iter-pulse","0tU":"@stdlib/simulate/iter/sawtooth-wave","0tV":"@stdlib/simulate-iter-sawtooth-wave","0tW":"@stdlib/simulate/iter/sine-wave","0tX":"@stdlib/simulate-iter-sine-wave","0tY":"@stdlib/simulate/iter/square-wave","0tZ":"@stdlib/simulate-iter-square-wave","0ta":"@stdlib/simulate/iter/triangle-wave","0tb":"@stdlib/simulate-iter-triangle-wave","0td":"@stdlib/simulate","1kc":"@stdlib/slice/base/args2multislice","1kd":"@stdlib/slice-base-args2multislice","1rw":"@stdlib/slice/base/int2slice","1rx":"@stdlib/slice-base-int2slice","1j8":"@stdlib/slice/base/length","1j9":"@stdlib/slice-base-length","1jW":"@stdlib/slice/base/nonreduced-dimensions","1jX":"@stdlib/slice-base-nonreduced-dimensions","1jA":"@stdlib/slice/base/normalize-multi-slice","1jB":"@stdlib/slice-base-normalize-multi-slice","1jC":"@stdlib/slice/base/normalize-slice","1jD":"@stdlib/slice-base-normalize-slice","1io":"@stdlib/slice/base","1ip":"@stdlib/slice-base","1jY":"@stdlib/slice/base/reduced-dimensions","1jZ":"@stdlib/slice-base-reduced-dimensions","1ja":"@stdlib/slice/base/sargs2multislice","1jb":"@stdlib/slice-base-sargs2multislice","1jE":"@stdlib/slice/base/seq2multislice","1jF":"@stdlib/slice-base-seq2multislice","1iq":"@stdlib/slice/base/seq2slice","1ir":"@stdlib/slice-base-seq2slice","1jG":"@stdlib/slice/base/shape","1jH":"@stdlib/slice-base-shape","1is":"@stdlib/slice/base/slice2seq","1it":"@stdlib/slice-base-slice2seq","1iu":"@stdlib/slice/base/str2multislice","1iv":"@stdlib/slice-base-str2multislice","1iw":"@stdlib/slice/base/str2slice","1ix":"@stdlib/slice-base-str2slice","1iy":"@stdlib/slice/ctor","1iz":"@stdlib/slice-ctor","1j0":"@stdlib/slice/multi","1j1":"@stdlib/slice-multi","1j3":"@stdlib/slice","1j4":"@stdlib/slice/seq2slice","1j5":"@stdlib/slice-seq2slice","0te":"@stdlib/stats/anova1","0tf":"@stdlib/stats-anova1","2JO":"@stdlib/stats/array/max-by","2JP":"@stdlib/stats-array-max-by","2EY":"@stdlib/stats/array/max","2EZ":"@stdlib/stats-array-max","2GQ":"@stdlib/stats/array/maxabs","2GR":"@stdlib/stats-array-maxabs","2GS":"@stdlib/stats/array/maxsorted","2GT":"@stdlib/stats-array-maxsorted","2HK":"@stdlib/stats/array/mean","2HL":"@stdlib/stats-array-mean","2LO":"@stdlib/stats/array/meankbn","2LP":"@stdlib/stats-array-meankbn","2LQ":"@stdlib/stats/array/meankbn2","2LR":"@stdlib/stats-array-meankbn2","2LS":"@stdlib/stats/array/meanors","2LT":"@stdlib/stats-array-meanors","2LU":"@stdlib/stats/array/meanpn","2LV":"@stdlib/stats-array-meanpn","2LW":"@stdlib/stats/array/meanpw","2LX":"@stdlib/stats-array-meanpw","2LY":"@stdlib/stats/array/meanwd","2LZ":"@stdlib/stats-array-meanwd","2JQ":"@stdlib/stats/array/mediansorted","2JR":"@stdlib/stats-array-mediansorted","2qc":"@stdlib/stats/array/midrange-by","2qd":"@stdlib/stats-array-midrange-by","2qe":"@stdlib/stats/array/midrange","2qf":"@stdlib/stats-array-midrange","2JS":"@stdlib/stats/array/min-by","2JT":"@stdlib/stats-array-min-by","2Ew":"@stdlib/stats/array/min","2Ex":"@stdlib/stats-array-min","2Gq":"@stdlib/stats/array/minabs","2Gr":"@stdlib/stats-array-minabs","2Gs":"@stdlib/stats/array/minsorted","2Gt":"@stdlib/stats-array-minsorted","2Ea":"@stdlib/stats/array/mskmax","2Eb":"@stdlib/stats-array-mskmax","2qg":"@stdlib/stats/array/mskmaxabs","2qh":"@stdlib/stats-array-mskmaxabs","2qi":"@stdlib/stats/array/mskmidrange","2qj":"@stdlib/stats-array-mskmidrange","2Gu":"@stdlib/stats/array/mskmin","2Gv":"@stdlib/stats-array-mskmin","2qk":"@stdlib/stats/array/mskminabs","2ql":"@stdlib/stats-array-mskminabs","2HM":"@stdlib/stats/array/mskrange","2HN":"@stdlib/stats-array-mskrange","2JU":"@stdlib/stats/array/nanmax-by","2JV":"@stdlib/stats-array-nanmax-by","2Ec":"@stdlib/stats/array/nanmax","2Ed":"@stdlib/stats-array-nanmax","2JW":"@stdlib/stats/array/nanmaxabs","2JX":"@stdlib/stats-array-nanmaxabs","2La":"@stdlib/stats/array/nanmean","2Lb":"@stdlib/stats-array-nanmean","2Oi":"@stdlib/stats/array/nanmeanors","2Oj":"@stdlib/stats-array-nanmeanors","2Ok":"@stdlib/stats/array/nanmeanpn","2Ol":"@stdlib/stats-array-nanmeanpn","2Om":"@stdlib/stats/array/nanmeanwd","2On":"@stdlib/stats-array-nanmeanwd","2qm":"@stdlib/stats/array/nanmidrange-by","2qn":"@stdlib/stats-array-nanmidrange-by","2qo":"@stdlib/stats/array/nanmidrange","2qp":"@stdlib/stats-array-nanmidrange","2JY":"@stdlib/stats/array/nanmin-by","2JZ":"@stdlib/stats-array-nanmin-by","2HO":"@stdlib/stats/array/nanmin","2HP":"@stdlib/stats-array-nanmin","2Ja":"@stdlib/stats/array/nanminabs","2Jb":"@stdlib/stats-array-nanminabs","2Lc":"@stdlib/stats/array/nanmskmax","2Ld":"@stdlib/stats-array-nanmskmax","2qq":"@stdlib/stats/array/nanmskmidrange","2qr":"@stdlib/stats-array-nanmskmidrange","2Oo":"@stdlib/stats/array/nanmskmin","2Op":"@stdlib/stats-array-nanmskmin","2Oq":"@stdlib/stats/array/nanmskrange","2Or":"@stdlib/stats-array-nanmskrange","2Os":"@stdlib/stats/array/nanrange-by","2Ot":"@stdlib/stats-array-nanrange-by","2Jc":"@stdlib/stats/array/nanrange","2Jd":"@stdlib/stats-array-nanrange","2Ou":"@stdlib/stats/array/nanstdev","2Ov":"@stdlib/stats-array-nanstdev","2Ow":"@stdlib/stats/array/nanstdevch","2Ox":"@stdlib/stats-array-nanstdevch","2S0":"@stdlib/stats/array/nanstdevpn","2S1":"@stdlib/stats-array-nanstdevpn","2S2":"@stdlib/stats/array/nanstdevtk","2S3":"@stdlib/stats-array-nanstdevtk","2S4":"@stdlib/stats/array/nanstdevwd","2S5":"@stdlib/stats-array-nanstdevwd","2S6":"@stdlib/stats/array/nanstdevyc","2S7":"@stdlib/stats-array-nanstdevyc","2Oy":"@stdlib/stats/array/nanvariance","2Oz":"@stdlib/stats-array-nanvariance","2P0":"@stdlib/stats/array/nanvariancech","2P1":"@stdlib/stats-array-nanvariancech","2P2":"@stdlib/stats/array/nanvariancepn","2P3":"@stdlib/stats-array-nanvariancepn","2P4":"@stdlib/stats/array/nanvariancetk","2P5":"@stdlib/stats-array-nanvariancetk","2P6":"@stdlib/stats/array/nanvariancewd","2P7":"@stdlib/stats-array-nanvariancewd","2P8":"@stdlib/stats/array/nanvarianceyc","2P9":"@stdlib/stats-array-nanvarianceyc","2Je":"@stdlib/stats/array","2Jf":"@stdlib/stats-array","2PA":"@stdlib/stats/array/range-by","2PB":"@stdlib/stats-array-range-by","2Jg":"@stdlib/stats/array/range","2Jh":"@stdlib/stats-array-range","2qs":"@stdlib/stats/array/rangeabs","2qt":"@stdlib/stats-array-rangeabs","2PC":"@stdlib/stats/array/stdev","2PD":"@stdlib/stats-array-stdev","2PE":"@stdlib/stats/array/stdevch","2PF":"@stdlib/stats-array-stdevch","2PG":"@stdlib/stats/array/stdevpn","2PH":"@stdlib/stats-array-stdevpn","2PI":"@stdlib/stats/array/stdevtk","2PJ":"@stdlib/stats-array-stdevtk","2PK":"@stdlib/stats/array/stdevwd","2PL":"@stdlib/stats-array-stdevwd","2PM":"@stdlib/stats/array/stdevyc","2PN":"@stdlib/stats-array-stdevyc","2PO":"@stdlib/stats/array/variance","2PP":"@stdlib/stats-array-variance","2PQ":"@stdlib/stats/array/variancech","2PR":"@stdlib/stats-array-variancech","2PS":"@stdlib/stats/array/variancepn","2PT":"@stdlib/stats-array-variancepn","2PU":"@stdlib/stats/array/variancetk","2PV":"@stdlib/stats-array-variancetk","2PW":"@stdlib/stats/array/variancewd","2PX":"@stdlib/stats-array-variancewd","2Ee":"@stdlib/stats/array/varianceyc","2Ef":"@stdlib/stats-array-varianceyc","0tg":"@stdlib/stats/bartlett-test","0th":"@stdlib/stats-bartlett-test","0ti":"@stdlib/stats/base/cumax","0tj":"@stdlib/stats-base-cumax","0tk":"@stdlib/stats/base/cumaxabs","0tl":"@stdlib/stats-base-cumaxabs","0tm":"@stdlib/stats/base/cumin","0tn":"@stdlib/stats-base-cumin","0to":"@stdlib/stats/base/cuminabs","0tp":"@stdlib/stats-base-cuminabs","0ty":"@stdlib/stats/base/dists/arcsine/cdf","0tz":"@stdlib/stats-base-dists-arcsine-cdf","0u0":"@stdlib/stats/base/dists/arcsine/ctor","0u1":"@stdlib/stats-base-dists-arcsine-ctor","0u2":"@stdlib/stats/base/dists/arcsine/entropy","0u3":"@stdlib/stats-base-dists-arcsine-entropy","0u4":"@stdlib/stats/base/dists/arcsine/kurtosis","0u5":"@stdlib/stats-base-dists-arcsine-kurtosis","0u6":"@stdlib/stats/base/dists/arcsine/logcdf","0u7":"@stdlib/stats-base-dists-arcsine-logcdf","0u8":"@stdlib/stats/base/dists/arcsine/logpdf","0u9":"@stdlib/stats-base-dists-arcsine-logpdf","0uA":"@stdlib/stats/base/dists/arcsine/mean","0uB":"@stdlib/stats-base-dists-arcsine-mean","0uC":"@stdlib/stats/base/dists/arcsine/median","0uD":"@stdlib/stats-base-dists-arcsine-median","0uE":"@stdlib/stats/base/dists/arcsine/mode","0uF":"@stdlib/stats-base-dists-arcsine-mode","0uG":"@stdlib/stats/base/dists/arcsine","0uH":"@stdlib/stats-base-dists-arcsine","0uI":"@stdlib/stats/base/dists/arcsine/pdf","0uJ":"@stdlib/stats-base-dists-arcsine-pdf","0uK":"@stdlib/stats/base/dists/arcsine/quantile","0uL":"@stdlib/stats-base-dists-arcsine-quantile","0uM":"@stdlib/stats/base/dists/arcsine/skewness","0uN":"@stdlib/stats-base-dists-arcsine-skewness","0uO":"@stdlib/stats/base/dists/arcsine/stdev","0uP":"@stdlib/stats-base-dists-arcsine-stdev","0uQ":"@stdlib/stats/base/dists/arcsine/variance","0uR":"@stdlib/stats-base-dists-arcsine-variance","0uS":"@stdlib/stats/base/dists/bernoulli/cdf","0uT":"@stdlib/stats-base-dists-bernoulli-cdf","0uU":"@stdlib/stats/base/dists/bernoulli/ctor","0uV":"@stdlib/stats-base-dists-bernoulli-ctor","0uW":"@stdlib/stats/base/dists/bernoulli/entropy","0uX":"@stdlib/stats-base-dists-bernoulli-entropy","0uY":"@stdlib/stats/base/dists/bernoulli/kurtosis","0uZ":"@stdlib/stats-base-dists-bernoulli-kurtosis","0ua":"@stdlib/stats/base/dists/bernoulli/mean","0ub":"@stdlib/stats-base-dists-bernoulli-mean","0uc":"@stdlib/stats/base/dists/bernoulli/median","0ud":"@stdlib/stats-base-dists-bernoulli-median","0ue":"@stdlib/stats/base/dists/bernoulli/mgf","0uf":"@stdlib/stats-base-dists-bernoulli-mgf","0ug":"@stdlib/stats/base/dists/bernoulli/mode","0uh":"@stdlib/stats-base-dists-bernoulli-mode","0ui":"@stdlib/stats/base/dists/bernoulli","0uj":"@stdlib/stats-base-dists-bernoulli","0uk":"@stdlib/stats/base/dists/bernoulli/pmf","0ul":"@stdlib/stats-base-dists-bernoulli-pmf","0um":"@stdlib/stats/base/dists/bernoulli/quantile","0un":"@stdlib/stats-base-dists-bernoulli-quantile","0uo":"@stdlib/stats/base/dists/bernoulli/skewness","0up":"@stdlib/stats-base-dists-bernoulli-skewness","0uq":"@stdlib/stats/base/dists/bernoulli/stdev","0ur":"@stdlib/stats-base-dists-bernoulli-stdev","0us":"@stdlib/stats/base/dists/bernoulli/variance","0ut":"@stdlib/stats-base-dists-bernoulli-variance","0uu":"@stdlib/stats/base/dists/beta/cdf","0uv":"@stdlib/stats-base-dists-beta-cdf","0uw":"@stdlib/stats/base/dists/beta/ctor","0ux":"@stdlib/stats-base-dists-beta-ctor","0uy":"@stdlib/stats/base/dists/beta/entropy","0uz":"@stdlib/stats-base-dists-beta-entropy","0v0":"@stdlib/stats/base/dists/beta/kurtosis","0v1":"@stdlib/stats-base-dists-beta-kurtosis","0v2":"@stdlib/stats/base/dists/beta/logcdf","0v3":"@stdlib/stats-base-dists-beta-logcdf","0v4":"@stdlib/stats/base/dists/beta/logpdf","0v5":"@stdlib/stats-base-dists-beta-logpdf","0v6":"@stdlib/stats/base/dists/beta/mean","0v7":"@stdlib/stats-base-dists-beta-mean","0v8":"@stdlib/stats/base/dists/beta/median","0v9":"@stdlib/stats-base-dists-beta-median","0vA":"@stdlib/stats/base/dists/beta/mgf","0vB":"@stdlib/stats-base-dists-beta-mgf","0vC":"@stdlib/stats/base/dists/beta/mode","0vD":"@stdlib/stats-base-dists-beta-mode","0vE":"@stdlib/stats/base/dists/beta","0vF":"@stdlib/stats-base-dists-beta","0vG":"@stdlib/stats/base/dists/beta/pdf","0vH":"@stdlib/stats-base-dists-beta-pdf","0vI":"@stdlib/stats/base/dists/beta/quantile","0vJ":"@stdlib/stats-base-dists-beta-quantile","0vK":"@stdlib/stats/base/dists/beta/skewness","0vL":"@stdlib/stats-base-dists-beta-skewness","0vM":"@stdlib/stats/base/dists/beta/stdev","0vN":"@stdlib/stats-base-dists-beta-stdev","0vO":"@stdlib/stats/base/dists/beta/variance","0vP":"@stdlib/stats-base-dists-beta-variance","0vQ":"@stdlib/stats/base/dists/betaprime/cdf","0vR":"@stdlib/stats-base-dists-betaprime-cdf","0vS":"@stdlib/stats/base/dists/betaprime/ctor","0vT":"@stdlib/stats-base-dists-betaprime-ctor","0vU":"@stdlib/stats/base/dists/betaprime/kurtosis","0vV":"@stdlib/stats-base-dists-betaprime-kurtosis","0vW":"@stdlib/stats/base/dists/betaprime/logcdf","0vX":"@stdlib/stats-base-dists-betaprime-logcdf","0vY":"@stdlib/stats/base/dists/betaprime/logpdf","0vZ":"@stdlib/stats-base-dists-betaprime-logpdf","0va":"@stdlib/stats/base/dists/betaprime/mean","0vb":"@stdlib/stats-base-dists-betaprime-mean","0vc":"@stdlib/stats/base/dists/betaprime/mode","0vd":"@stdlib/stats-base-dists-betaprime-mode","0ve":"@stdlib/stats/base/dists/betaprime","0vf":"@stdlib/stats-base-dists-betaprime","0vg":"@stdlib/stats/base/dists/betaprime/pdf","0vh":"@stdlib/stats-base-dists-betaprime-pdf","0vi":"@stdlib/stats/base/dists/betaprime/quantile","0vj":"@stdlib/stats-base-dists-betaprime-quantile","0vk":"@stdlib/stats/base/dists/betaprime/skewness","0vl":"@stdlib/stats-base-dists-betaprime-skewness","0vm":"@stdlib/stats/base/dists/betaprime/stdev","0vn":"@stdlib/stats-base-dists-betaprime-stdev","0vo":"@stdlib/stats/base/dists/betaprime/variance","0vp":"@stdlib/stats-base-dists-betaprime-variance","0vq":"@stdlib/stats/base/dists/binomial/cdf","0vr":"@stdlib/stats-base-dists-binomial-cdf","0vs":"@stdlib/stats/base/dists/binomial/ctor","0vt":"@stdlib/stats-base-dists-binomial-ctor","0vu":"@stdlib/stats/base/dists/binomial/entropy","0vv":"@stdlib/stats-base-dists-binomial-entropy","0vw":"@stdlib/stats/base/dists/binomial/kurtosis","0vx":"@stdlib/stats-base-dists-binomial-kurtosis","0vy":"@stdlib/stats/base/dists/binomial/logpmf","0vz":"@stdlib/stats-base-dists-binomial-logpmf","0w0":"@stdlib/stats/base/dists/binomial/mean","0w1":"@stdlib/stats-base-dists-binomial-mean","0w2":"@stdlib/stats/base/dists/binomial/median","0w3":"@stdlib/stats-base-dists-binomial-median","0w4":"@stdlib/stats/base/dists/binomial/mgf","0w5":"@stdlib/stats-base-dists-binomial-mgf","0w6":"@stdlib/stats/base/dists/binomial/mode","0w7":"@stdlib/stats-base-dists-binomial-mode","0w8":"@stdlib/stats/base/dists/binomial","0w9":"@stdlib/stats-base-dists-binomial","0wA":"@stdlib/stats/base/dists/binomial/pmf","0wB":"@stdlib/stats-base-dists-binomial-pmf","0wC":"@stdlib/stats/base/dists/binomial/quantile","0wD":"@stdlib/stats-base-dists-binomial-quantile","0wE":"@stdlib/stats/base/dists/binomial/skewness","0wF":"@stdlib/stats-base-dists-binomial-skewness","0wG":"@stdlib/stats/base/dists/binomial/stdev","0wH":"@stdlib/stats-base-dists-binomial-stdev","0wI":"@stdlib/stats/base/dists/binomial/variance","0wJ":"@stdlib/stats-base-dists-binomial-variance","28S":"@stdlib/stats/base/dists/bradford/cdf","28T":"@stdlib/stats-base-dists-bradford-cdf","28U":"@stdlib/stats/base/dists/bradford/entropy","28V":"@stdlib/stats-base-dists-bradford-entropy","28W":"@stdlib/stats/base/dists/bradford/mean","28X":"@stdlib/stats-base-dists-bradford-mean","28Y":"@stdlib/stats/base/dists/bradford/median","28Z":"@stdlib/stats-base-dists-bradford-median","28a":"@stdlib/stats/base/dists/bradford/mode","28b":"@stdlib/stats-base-dists-bradford-mode","2U4":"@stdlib/stats/base/dists/bradford","2U5":"@stdlib/stats-base-dists-bradford","2Ao":"@stdlib/stats/base/dists/bradford/pdf","2Ap":"@stdlib/stats-base-dists-bradford-pdf","2Aq":"@stdlib/stats/base/dists/bradford/quantile","2Ar":"@stdlib/stats-base-dists-bradford-quantile","2PY":"@stdlib/stats/base/dists/bradford/skewness","2PZ":"@stdlib/stats-base-dists-bradford-skewness","28c":"@stdlib/stats/base/dists/bradford/stdev","28d":"@stdlib/stats-base-dists-bradford-stdev","28e":"@stdlib/stats/base/dists/bradford/variance","28f":"@stdlib/stats-base-dists-bradford-variance","0wK":"@stdlib/stats/base/dists/cauchy/cdf","0wL":"@stdlib/stats-base-dists-cauchy-cdf","0wM":"@stdlib/stats/base/dists/cauchy/ctor","0wN":"@stdlib/stats-base-dists-cauchy-ctor","0wO":"@stdlib/stats/base/dists/cauchy/entropy","0wP":"@stdlib/stats-base-dists-cauchy-entropy","0wQ":"@stdlib/stats/base/dists/cauchy/logcdf","0wR":"@stdlib/stats-base-dists-cauchy-logcdf","0wS":"@stdlib/stats/base/dists/cauchy/logpdf","0wT":"@stdlib/stats-base-dists-cauchy-logpdf","0wU":"@stdlib/stats/base/dists/cauchy/median","0wV":"@stdlib/stats-base-dists-cauchy-median","0wW":"@stdlib/stats/base/dists/cauchy/mode","0wX":"@stdlib/stats-base-dists-cauchy-mode","0wY":"@stdlib/stats/base/dists/cauchy","0wZ":"@stdlib/stats-base-dists-cauchy","0wa":"@stdlib/stats/base/dists/cauchy/pdf","0wb":"@stdlib/stats-base-dists-cauchy-pdf","0wc":"@stdlib/stats/base/dists/cauchy/quantile","0wd":"@stdlib/stats-base-dists-cauchy-quantile","0we":"@stdlib/stats/base/dists/chi/cdf","0wf":"@stdlib/stats-base-dists-chi-cdf","0wg":"@stdlib/stats/base/dists/chi/ctor","0wh":"@stdlib/stats-base-dists-chi-ctor","0wi":"@stdlib/stats/base/dists/chi/entropy","0wj":"@stdlib/stats-base-dists-chi-entropy","0wk":"@stdlib/stats/base/dists/chi/kurtosis","0wl":"@stdlib/stats-base-dists-chi-kurtosis","0wm":"@stdlib/stats/base/dists/chi/logpdf","0wn":"@stdlib/stats-base-dists-chi-logpdf","0wo":"@stdlib/stats/base/dists/chi/mean","0wp":"@stdlib/stats-base-dists-chi-mean","0wq":"@stdlib/stats/base/dists/chi/mode","0wr":"@stdlib/stats-base-dists-chi-mode","0ws":"@stdlib/stats/base/dists/chi","0wt":"@stdlib/stats-base-dists-chi","0wu":"@stdlib/stats/base/dists/chi/pdf","0wv":"@stdlib/stats-base-dists-chi-pdf","0ww":"@stdlib/stats/base/dists/chi/quantile","0wx":"@stdlib/stats-base-dists-chi-quantile","0wy":"@stdlib/stats/base/dists/chi/skewness","0wz":"@stdlib/stats-base-dists-chi-skewness","0x0":"@stdlib/stats/base/dists/chi/stdev","0x1":"@stdlib/stats-base-dists-chi-stdev","0x2":"@stdlib/stats/base/dists/chi/variance","0x3":"@stdlib/stats-base-dists-chi-variance","0x4":"@stdlib/stats/base/dists/chisquare/cdf","0x5":"@stdlib/stats-base-dists-chisquare-cdf","0x6":"@stdlib/stats/base/dists/chisquare/ctor","0x7":"@stdlib/stats-base-dists-chisquare-ctor","0x8":"@stdlib/stats/base/dists/chisquare/entropy","0x9":"@stdlib/stats-base-dists-chisquare-entropy","0xA":"@stdlib/stats/base/dists/chisquare/kurtosis","0xB":"@stdlib/stats-base-dists-chisquare-kurtosis","0xC":"@stdlib/stats/base/dists/chisquare/logpdf","0xD":"@stdlib/stats-base-dists-chisquare-logpdf","0xE":"@stdlib/stats/base/dists/chisquare/mean","0xF":"@stdlib/stats-base-dists-chisquare-mean","0xG":"@stdlib/stats/base/dists/chisquare/median","0xH":"@stdlib/stats-base-dists-chisquare-median","0xI":"@stdlib/stats/base/dists/chisquare/mgf","0xJ":"@stdlib/stats-base-dists-chisquare-mgf","0xK":"@stdlib/stats/base/dists/chisquare/mode","0xL":"@stdlib/stats-base-dists-chisquare-mode","0xM":"@stdlib/stats/base/dists/chisquare","0xN":"@stdlib/stats-base-dists-chisquare","0xO":"@stdlib/stats/base/dists/chisquare/pdf","0xP":"@stdlib/stats-base-dists-chisquare-pdf","0xQ":"@stdlib/stats/base/dists/chisquare/quantile","0xR":"@stdlib/stats-base-dists-chisquare-quantile","0xS":"@stdlib/stats/base/dists/chisquare/skewness","0xT":"@stdlib/stats-base-dists-chisquare-skewness","0xU":"@stdlib/stats/base/dists/chisquare/stdev","0xV":"@stdlib/stats-base-dists-chisquare-stdev","0xW":"@stdlib/stats/base/dists/chisquare/variance","0xX":"@stdlib/stats-base-dists-chisquare-variance","0xY":"@stdlib/stats/base/dists/cosine/cdf","0xZ":"@stdlib/stats-base-dists-cosine-cdf","0xa":"@stdlib/stats/base/dists/cosine/ctor","0xb":"@stdlib/stats-base-dists-cosine-ctor","0xc":"@stdlib/stats/base/dists/cosine/kurtosis","0xd":"@stdlib/stats-base-dists-cosine-kurtosis","0xe":"@stdlib/stats/base/dists/cosine/logcdf","0xf":"@stdlib/stats-base-dists-cosine-logcdf","0xg":"@stdlib/stats/base/dists/cosine/logpdf","0xh":"@stdlib/stats-base-dists-cosine-logpdf","0xi":"@stdlib/stats/base/dists/cosine/mean","0xj":"@stdlib/stats-base-dists-cosine-mean","0xk":"@stdlib/stats/base/dists/cosine/median","0xl":"@stdlib/stats-base-dists-cosine-median","0xm":"@stdlib/stats/base/dists/cosine/mgf","0xn":"@stdlib/stats-base-dists-cosine-mgf","0xo":"@stdlib/stats/base/dists/cosine/mode","0xp":"@stdlib/stats-base-dists-cosine-mode","0xq":"@stdlib/stats/base/dists/cosine","0xr":"@stdlib/stats-base-dists-cosine","0xs":"@stdlib/stats/base/dists/cosine/pdf","0xt":"@stdlib/stats-base-dists-cosine-pdf","0xu":"@stdlib/stats/base/dists/cosine/quantile","0xv":"@stdlib/stats-base-dists-cosine-quantile","0xw":"@stdlib/stats/base/dists/cosine/skewness","0xx":"@stdlib/stats-base-dists-cosine-skewness","0xy":"@stdlib/stats/base/dists/cosine/stdev","0xz":"@stdlib/stats-base-dists-cosine-stdev","0y0":"@stdlib/stats/base/dists/cosine/variance","0y1":"@stdlib/stats-base-dists-cosine-variance","0y2":"@stdlib/stats/base/dists/degenerate/cdf","0y3":"@stdlib/stats-base-dists-degenerate-cdf","0y4":"@stdlib/stats/base/dists/degenerate/ctor","0y5":"@stdlib/stats-base-dists-degenerate-ctor","0y6":"@stdlib/stats/base/dists/degenerate/entropy","0y7":"@stdlib/stats-base-dists-degenerate-entropy","0y8":"@stdlib/stats/base/dists/degenerate/logcdf","0y9":"@stdlib/stats-base-dists-degenerate-logcdf","0yA":"@stdlib/stats/base/dists/degenerate/logpdf","0yB":"@stdlib/stats-base-dists-degenerate-logpdf","0yC":"@stdlib/stats/base/dists/degenerate/logpmf","0yD":"@stdlib/stats-base-dists-degenerate-logpmf","0yE":"@stdlib/stats/base/dists/degenerate/mean","0yF":"@stdlib/stats-base-dists-degenerate-mean","0yG":"@stdlib/stats/base/dists/degenerate/median","0yH":"@stdlib/stats-base-dists-degenerate-median","0yI":"@stdlib/stats/base/dists/degenerate/mgf","0yJ":"@stdlib/stats-base-dists-degenerate-mgf","0yK":"@stdlib/stats/base/dists/degenerate/mode","0yL":"@stdlib/stats-base-dists-degenerate-mode","0yM":"@stdlib/stats/base/dists/degenerate","0yN":"@stdlib/stats-base-dists-degenerate","0yO":"@stdlib/stats/base/dists/degenerate/pdf","0yP":"@stdlib/stats-base-dists-degenerate-pdf","0yQ":"@stdlib/stats/base/dists/degenerate/pmf","0yR":"@stdlib/stats-base-dists-degenerate-pmf","0yS":"@stdlib/stats/base/dists/degenerate/quantile","0yT":"@stdlib/stats-base-dists-degenerate-quantile","0yU":"@stdlib/stats/base/dists/degenerate/stdev","0yV":"@stdlib/stats-base-dists-degenerate-stdev","0yW":"@stdlib/stats/base/dists/degenerate/variance","0yX":"@stdlib/stats-base-dists-degenerate-variance","0yY":"@stdlib/stats/base/dists/discrete-uniform/cdf","0yZ":"@stdlib/stats-base-dists-discrete-uniform-cdf","0ya":"@stdlib/stats/base/dists/discrete-uniform/ctor","0yb":"@stdlib/stats-base-dists-discrete-uniform-ctor","0yc":"@stdlib/stats/base/dists/discrete-uniform/entropy","0yd":"@stdlib/stats-base-dists-discrete-uniform-entropy","0ye":"@stdlib/stats/base/dists/discrete-uniform/kurtosis","0yf":"@stdlib/stats-base-dists-discrete-uniform-kurtosis","0yg":"@stdlib/stats/base/dists/discrete-uniform/logcdf","0yh":"@stdlib/stats-base-dists-discrete-uniform-logcdf","0yi":"@stdlib/stats/base/dists/discrete-uniform/logpmf","0yj":"@stdlib/stats-base-dists-discrete-uniform-logpmf","0yk":"@stdlib/stats/base/dists/discrete-uniform/mean","0yl":"@stdlib/stats-base-dists-discrete-uniform-mean","0ym":"@stdlib/stats/base/dists/discrete-uniform/median","0yn":"@stdlib/stats-base-dists-discrete-uniform-median","0yo":"@stdlib/stats/base/dists/discrete-uniform/mgf","0yp":"@stdlib/stats-base-dists-discrete-uniform-mgf","0yq":"@stdlib/stats/base/dists/discrete-uniform","0yr":"@stdlib/stats-base-dists-discrete-uniform","0ys":"@stdlib/stats/base/dists/discrete-uniform/pmf","0yt":"@stdlib/stats-base-dists-discrete-uniform-pmf","0yu":"@stdlib/stats/base/dists/discrete-uniform/quantile","0yv":"@stdlib/stats-base-dists-discrete-uniform-quantile","0yw":"@stdlib/stats/base/dists/discrete-uniform/skewness","0yx":"@stdlib/stats-base-dists-discrete-uniform-skewness","0yy":"@stdlib/stats/base/dists/discrete-uniform/stdev","0yz":"@stdlib/stats-base-dists-discrete-uniform-stdev","0z0":"@stdlib/stats/base/dists/discrete-uniform/variance","0z1":"@stdlib/stats-base-dists-discrete-uniform-variance","0z2":"@stdlib/stats/base/dists/erlang/cdf","0z3":"@stdlib/stats-base-dists-erlang-cdf","0z4":"@stdlib/stats/base/dists/erlang/ctor","0z5":"@stdlib/stats-base-dists-erlang-ctor","0z6":"@stdlib/stats/base/dists/erlang/entropy","0z7":"@stdlib/stats-base-dists-erlang-entropy","0z8":"@stdlib/stats/base/dists/erlang/kurtosis","0z9":"@stdlib/stats-base-dists-erlang-kurtosis","0zA":"@stdlib/stats/base/dists/erlang/logpdf","0zB":"@stdlib/stats-base-dists-erlang-logpdf","0zC":"@stdlib/stats/base/dists/erlang/mean","0zD":"@stdlib/stats-base-dists-erlang-mean","0zE":"@stdlib/stats/base/dists/erlang/mgf","0zF":"@stdlib/stats-base-dists-erlang-mgf","0zG":"@stdlib/stats/base/dists/erlang/mode","0zH":"@stdlib/stats-base-dists-erlang-mode","0zI":"@stdlib/stats/base/dists/erlang","0zJ":"@stdlib/stats-base-dists-erlang","0zK":"@stdlib/stats/base/dists/erlang/pdf","0zL":"@stdlib/stats-base-dists-erlang-pdf","0zM":"@stdlib/stats/base/dists/erlang/quantile","0zN":"@stdlib/stats-base-dists-erlang-quantile","0zO":"@stdlib/stats/base/dists/erlang/skewness","0zP":"@stdlib/stats-base-dists-erlang-skewness","0zQ":"@stdlib/stats/base/dists/erlang/stdev","0zR":"@stdlib/stats-base-dists-erlang-stdev","0zS":"@stdlib/stats/base/dists/erlang/variance","0zT":"@stdlib/stats-base-dists-erlang-variance","0zU":"@stdlib/stats/base/dists/exponential/cdf","0zV":"@stdlib/stats-base-dists-exponential-cdf","0zW":"@stdlib/stats/base/dists/exponential/ctor","0zX":"@stdlib/stats-base-dists-exponential-ctor","0zY":"@stdlib/stats/base/dists/exponential/entropy","0zZ":"@stdlib/stats-base-dists-exponential-entropy","0za":"@stdlib/stats/base/dists/exponential/kurtosis","0zb":"@stdlib/stats-base-dists-exponential-kurtosis","0zc":"@stdlib/stats/base/dists/exponential/logcdf","0zd":"@stdlib/stats-base-dists-exponential-logcdf","0ze":"@stdlib/stats/base/dists/exponential/logpdf","0zf":"@stdlib/stats-base-dists-exponential-logpdf","0zg":"@stdlib/stats/base/dists/exponential/mean","0zh":"@stdlib/stats-base-dists-exponential-mean","0zi":"@stdlib/stats/base/dists/exponential/median","0zj":"@stdlib/stats-base-dists-exponential-median","0zk":"@stdlib/stats/base/dists/exponential/mgf","0zl":"@stdlib/stats-base-dists-exponential-mgf","0zm":"@stdlib/stats/base/dists/exponential/mode","0zn":"@stdlib/stats-base-dists-exponential-mode","0zo":"@stdlib/stats/base/dists/exponential","0zp":"@stdlib/stats-base-dists-exponential","0zq":"@stdlib/stats/base/dists/exponential/pdf","0zr":"@stdlib/stats-base-dists-exponential-pdf","0zs":"@stdlib/stats/base/dists/exponential/quantile","0zt":"@stdlib/stats-base-dists-exponential-quantile","0zu":"@stdlib/stats/base/dists/exponential/skewness","0zv":"@stdlib/stats-base-dists-exponential-skewness","0zw":"@stdlib/stats/base/dists/exponential/stdev","0zx":"@stdlib/stats-base-dists-exponential-stdev","0zy":"@stdlib/stats/base/dists/exponential/variance","0zz":"@stdlib/stats-base-dists-exponential-variance","10A":"@stdlib/stats/base/dists/f/mode","10B":"@stdlib/stats-base-dists-f-mode","10C":"@stdlib/stats/base/dists/f","10D":"@stdlib/stats-base-dists-f","10E":"@stdlib/stats/base/dists/f/pdf","10F":"@stdlib/stats-base-dists-f-pdf","10G":"@stdlib/stats/base/dists/f/quantile","10H":"@stdlib/stats-base-dists-f-quantile","10I":"@stdlib/stats/base/dists/f/skewness","10J":"@stdlib/stats-base-dists-f-skewness","10K":"@stdlib/stats/base/dists/f/stdev","10L":"@stdlib/stats-base-dists-f-stdev","10M":"@stdlib/stats/base/dists/f/variance","10N":"@stdlib/stats-base-dists-f-variance","10O":"@stdlib/stats/base/dists/frechet/cdf","10P":"@stdlib/stats-base-dists-frechet-cdf","10Q":"@stdlib/stats/base/dists/frechet/ctor","10R":"@stdlib/stats-base-dists-frechet-ctor","10S":"@stdlib/stats/base/dists/frechet/entropy","10T":"@stdlib/stats-base-dists-frechet-entropy","10U":"@stdlib/stats/base/dists/frechet/kurtosis","10V":"@stdlib/stats-base-dists-frechet-kurtosis","10W":"@stdlib/stats/base/dists/frechet/logcdf","10X":"@stdlib/stats-base-dists-frechet-logcdf","10Y":"@stdlib/stats/base/dists/frechet/logpdf","10Z":"@stdlib/stats-base-dists-frechet-logpdf","10a":"@stdlib/stats/base/dists/frechet/mean","10b":"@stdlib/stats-base-dists-frechet-mean","10c":"@stdlib/stats/base/dists/frechet/median","10d":"@stdlib/stats-base-dists-frechet-median","10e":"@stdlib/stats/base/dists/frechet/mode","10f":"@stdlib/stats-base-dists-frechet-mode","10g":"@stdlib/stats/base/dists/frechet","10h":"@stdlib/stats-base-dists-frechet","10i":"@stdlib/stats/base/dists/frechet/pdf","10j":"@stdlib/stats-base-dists-frechet-pdf","10k":"@stdlib/stats/base/dists/frechet/quantile","10l":"@stdlib/stats-base-dists-frechet-quantile","10m":"@stdlib/stats/base/dists/frechet/skewness","10n":"@stdlib/stats-base-dists-frechet-skewness","10o":"@stdlib/stats/base/dists/frechet/stdev","10p":"@stdlib/stats-base-dists-frechet-stdev","10q":"@stdlib/stats/base/dists/frechet/variance","10r":"@stdlib/stats-base-dists-frechet-variance","10s":"@stdlib/stats/base/dists/gamma/cdf","10t":"@stdlib/stats-base-dists-gamma-cdf","10u":"@stdlib/stats/base/dists/gamma/ctor","10v":"@stdlib/stats-base-dists-gamma-ctor","10w":"@stdlib/stats/base/dists/gamma/entropy","10x":"@stdlib/stats-base-dists-gamma-entropy","10y":"@stdlib/stats/base/dists/gamma/kurtosis","10z":"@stdlib/stats-base-dists-gamma-kurtosis","11A":"@stdlib/stats/base/dists/gamma","11B":"@stdlib/stats-base-dists-gamma","11C":"@stdlib/stats/base/dists/gamma/pdf","11D":"@stdlib/stats-base-dists-gamma-pdf","11E":"@stdlib/stats/base/dists/gamma/quantile","11F":"@stdlib/stats-base-dists-gamma-quantile","11G":"@stdlib/stats/base/dists/gamma/skewness","11H":"@stdlib/stats-base-dists-gamma-skewness","11I":"@stdlib/stats/base/dists/gamma/stdev","11J":"@stdlib/stats-base-dists-gamma-stdev","11K":"@stdlib/stats/base/dists/gamma/variance","11L":"@stdlib/stats-base-dists-gamma-variance","11M":"@stdlib/stats/base/dists/geometric/cdf","11N":"@stdlib/stats-base-dists-geometric-cdf","11O":"@stdlib/stats/base/dists/geometric/ctor","11P":"@stdlib/stats-base-dists-geometric-ctor","11Q":"@stdlib/stats/base/dists/geometric/entropy","11R":"@stdlib/stats-base-dists-geometric-entropy","11S":"@stdlib/stats/base/dists/geometric/kurtosis","11T":"@stdlib/stats-base-dists-geometric-kurtosis","11U":"@stdlib/stats/base/dists/geometric/logcdf","11V":"@stdlib/stats-base-dists-geometric-logcdf","11W":"@stdlib/stats/base/dists/geometric/logpmf","11X":"@stdlib/stats-base-dists-geometric-logpmf","11Y":"@stdlib/stats/base/dists/geometric/mean","11Z":"@stdlib/stats-base-dists-geometric-mean","11a":"@stdlib/stats/base/dists/geometric/median","11b":"@stdlib/stats-base-dists-geometric-median","11c":"@stdlib/stats/base/dists/geometric/mgf","11d":"@stdlib/stats-base-dists-geometric-mgf","11e":"@stdlib/stats/base/dists/geometric/mode","11f":"@stdlib/stats-base-dists-geometric-mode","11g":"@stdlib/stats/base/dists/geometric","11h":"@stdlib/stats-base-dists-geometric","11i":"@stdlib/stats/base/dists/geometric/pmf","11j":"@stdlib/stats-base-dists-geometric-pmf","11k":"@stdlib/stats/base/dists/geometric/quantile","11l":"@stdlib/stats-base-dists-geometric-quantile","11m":"@stdlib/stats/base/dists/geometric/skewness","11n":"@stdlib/stats-base-dists-geometric-skewness","11o":"@stdlib/stats/base/dists/geometric/stdev","11p":"@stdlib/stats-base-dists-geometric-stdev","11q":"@stdlib/stats/base/dists/geometric/variance","11r":"@stdlib/stats-base-dists-geometric-variance","11s":"@stdlib/stats/base/dists/gumbel/cdf","11t":"@stdlib/stats-base-dists-gumbel-cdf","11u":"@stdlib/stats/base/dists/gumbel/ctor","11v":"@stdlib/stats-base-dists-gumbel-ctor","11w":"@stdlib/stats/base/dists/gumbel/entropy","11x":"@stdlib/stats-base-dists-gumbel-entropy","11y":"@stdlib/stats/base/dists/gumbel/kurtosis","11z":"@stdlib/stats-base-dists-gumbel-kurtosis","12A":"@stdlib/stats/base/dists/gumbel/mode","12B":"@stdlib/stats-base-dists-gumbel-mode","12C":"@stdlib/stats/base/dists/gumbel","12D":"@stdlib/stats-base-dists-gumbel","12E":"@stdlib/stats/base/dists/gumbel/pdf","12F":"@stdlib/stats-base-dists-gumbel-pdf","12G":"@stdlib/stats/base/dists/gumbel/quantile","12H":"@stdlib/stats-base-dists-gumbel-quantile","12I":"@stdlib/stats/base/dists/gumbel/skewness","12J":"@stdlib/stats-base-dists-gumbel-skewness","12K":"@stdlib/stats/base/dists/gumbel/stdev","12L":"@stdlib/stats-base-dists-gumbel-stdev","12M":"@stdlib/stats/base/dists/gumbel/variance","12N":"@stdlib/stats-base-dists-gumbel-variance","2qu":"@stdlib/stats/base/dists/halfnormal/entropy","2qv":"@stdlib/stats-base-dists-halfnormal-entropy","2qw":"@stdlib/stats/base/dists/halfnormal/kurtosis","2qx":"@stdlib/stats-base-dists-halfnormal-kurtosis","2qy":"@stdlib/stats/base/dists/halfnormal/logpdf","2qz":"@stdlib/stats-base-dists-halfnormal-logpdf","2r0":"@stdlib/stats/base/dists/halfnormal/mean","2r1":"@stdlib/stats-base-dists-halfnormal-mean","2r2":"@stdlib/stats/base/dists/halfnormal/mode","2r3":"@stdlib/stats-base-dists-halfnormal-mode","2r4":"@stdlib/stats/base/dists/halfnormal/stdev","2r5":"@stdlib/stats-base-dists-halfnormal-stdev","12O":"@stdlib/stats/base/dists/hypergeometric/cdf","12P":"@stdlib/stats-base-dists-hypergeometric-cdf","12Q":"@stdlib/stats/base/dists/hypergeometric/ctor","12R":"@stdlib/stats-base-dists-hypergeometric-ctor","12S":"@stdlib/stats/base/dists/hypergeometric/kurtosis","12T":"@stdlib/stats-base-dists-hypergeometric-kurtosis","12U":"@stdlib/stats/base/dists/hypergeometric/logpmf","12V":"@stdlib/stats-base-dists-hypergeometric-logpmf","12W":"@stdlib/stats/base/dists/hypergeometric/mean","12X":"@stdlib/stats-base-dists-hypergeometric-mean","12Y":"@stdlib/stats/base/dists/hypergeometric/mode","12Z":"@stdlib/stats-base-dists-hypergeometric-mode","12a":"@stdlib/stats/base/dists/hypergeometric","12b":"@stdlib/stats-base-dists-hypergeometric","12c":"@stdlib/stats/base/dists/hypergeometric/pmf","12d":"@stdlib/stats-base-dists-hypergeometric-pmf","12e":"@stdlib/stats/base/dists/hypergeometric/quantile","12f":"@stdlib/stats-base-dists-hypergeometric-quantile","12g":"@stdlib/stats/base/dists/hypergeometric/skewness","12h":"@stdlib/stats-base-dists-hypergeometric-skewness","12i":"@stdlib/stats/base/dists/hypergeometric/stdev","12j":"@stdlib/stats-base-dists-hypergeometric-stdev","12k":"@stdlib/stats/base/dists/hypergeometric/variance","12l":"@stdlib/stats-base-dists-hypergeometric-variance","12m":"@stdlib/stats/base/dists/invgamma/cdf","12n":"@stdlib/stats-base-dists-invgamma-cdf","12o":"@stdlib/stats/base/dists/invgamma/ctor","12p":"@stdlib/stats-base-dists-invgamma-ctor","12q":"@stdlib/stats/base/dists/invgamma/entropy","12r":"@stdlib/stats-base-dists-invgamma-entropy","12s":"@stdlib/stats/base/dists/invgamma/kurtosis","12t":"@stdlib/stats-base-dists-invgamma-kurtosis","12u":"@stdlib/stats/base/dists/invgamma/logpdf","12v":"@stdlib/stats-base-dists-invgamma-logpdf","12w":"@stdlib/stats/base/dists/invgamma/mean","12x":"@stdlib/stats-base-dists-invgamma-mean","12y":"@stdlib/stats/base/dists/invgamma/mode","12z":"@stdlib/stats-base-dists-invgamma-mode","13A":"@stdlib/stats/base/dists/invgamma/variance","13B":"@stdlib/stats-base-dists-invgamma-variance","13C":"@stdlib/stats/base/dists/kumaraswamy/cdf","13D":"@stdlib/stats-base-dists-kumaraswamy-cdf","13E":"@stdlib/stats/base/dists/kumaraswamy/ctor","13F":"@stdlib/stats-base-dists-kumaraswamy-ctor","13G":"@stdlib/stats/base/dists/kumaraswamy/kurtosis","13H":"@stdlib/stats-base-dists-kumaraswamy-kurtosis","13I":"@stdlib/stats/base/dists/kumaraswamy/logcdf","13J":"@stdlib/stats-base-dists-kumaraswamy-logcdf","13K":"@stdlib/stats/base/dists/kumaraswamy/logpdf","13L":"@stdlib/stats-base-dists-kumaraswamy-logpdf","13M":"@stdlib/stats/base/dists/kumaraswamy/mean","13N":"@stdlib/stats-base-dists-kumaraswamy-mean","13O":"@stdlib/stats/base/dists/kumaraswamy/median","13P":"@stdlib/stats-base-dists-kumaraswamy-median","13Q":"@stdlib/stats/base/dists/kumaraswamy/mode","13R":"@stdlib/stats-base-dists-kumaraswamy-mode","13S":"@stdlib/stats/base/dists/kumaraswamy","13T":"@stdlib/stats-base-dists-kumaraswamy","13U":"@stdlib/stats/base/dists/kumaraswamy/pdf","13V":"@stdlib/stats-base-dists-kumaraswamy-pdf","13W":"@stdlib/stats/base/dists/kumaraswamy/quantile","13X":"@stdlib/stats-base-dists-kumaraswamy-quantile","13Y":"@stdlib/stats/base/dists/kumaraswamy/skewness","13Z":"@stdlib/stats-base-dists-kumaraswamy-skewness","13a":"@stdlib/stats/base/dists/kumaraswamy/stdev","13b":"@stdlib/stats-base-dists-kumaraswamy-stdev","13c":"@stdlib/stats/base/dists/kumaraswamy/variance","13d":"@stdlib/stats-base-dists-kumaraswamy-variance","13e":"@stdlib/stats/base/dists/laplace/cdf","13f":"@stdlib/stats-base-dists-laplace-cdf","13g":"@stdlib/stats/base/dists/laplace/ctor","13h":"@stdlib/stats-base-dists-laplace-ctor","13i":"@stdlib/stats/base/dists/laplace/entropy","13j":"@stdlib/stats-base-dists-laplace-entropy","13k":"@stdlib/stats/base/dists/laplace/kurtosis","13l":"@stdlib/stats-base-dists-laplace-kurtosis","13m":"@stdlib/stats/base/dists/laplace/logcdf","13n":"@stdlib/stats-base-dists-laplace-logcdf","13o":"@stdlib/stats/base/dists/laplace/logpdf","13p":"@stdlib/stats-base-dists-laplace-logpdf","13q":"@stdlib/stats/base/dists/laplace/mean","13r":"@stdlib/stats-base-dists-laplace-mean","13s":"@stdlib/stats/base/dists/laplace/median","13t":"@stdlib/stats-base-dists-laplace-median","13u":"@stdlib/stats/base/dists/laplace/mgf","13v":"@stdlib/stats-base-dists-laplace-mgf","13w":"@stdlib/stats/base/dists/laplace/mode","13x":"@stdlib/stats-base-dists-laplace-mode","13y":"@stdlib/stats/base/dists/laplace","13z":"@stdlib/stats-base-dists-laplace","14A":"@stdlib/stats/base/dists/levy/cdf","14B":"@stdlib/stats-base-dists-levy-cdf","14C":"@stdlib/stats/base/dists/levy/ctor","14D":"@stdlib/stats-base-dists-levy-ctor","14E":"@stdlib/stats/base/dists/levy/entropy","14F":"@stdlib/stats-base-dists-levy-entropy","14G":"@stdlib/stats/base/dists/levy/logcdf","14H":"@stdlib/stats-base-dists-levy-logcdf","14I":"@stdlib/stats/base/dists/levy/logpdf","14J":"@stdlib/stats-base-dists-levy-logpdf","14K":"@stdlib/stats/base/dists/levy/mean","14L":"@stdlib/stats-base-dists-levy-mean","14M":"@stdlib/stats/base/dists/levy/median","14N":"@stdlib/stats-base-dists-levy-median","14O":"@stdlib/stats/base/dists/levy/mode","14P":"@stdlib/stats-base-dists-levy-mode","14Q":"@stdlib/stats/base/dists/levy","14R":"@stdlib/stats-base-dists-levy","14S":"@stdlib/stats/base/dists/levy/pdf","14T":"@stdlib/stats-base-dists-levy-pdf","14U":"@stdlib/stats/base/dists/levy/quantile","14V":"@stdlib/stats-base-dists-levy-quantile","14W":"@stdlib/stats/base/dists/levy/stdev","14X":"@stdlib/stats-base-dists-levy-stdev","14Y":"@stdlib/stats/base/dists/levy/variance","14Z":"@stdlib/stats-base-dists-levy-variance","14a":"@stdlib/stats/base/dists/logistic/cdf","14b":"@stdlib/stats-base-dists-logistic-cdf","14c":"@stdlib/stats/base/dists/logistic/ctor","14d":"@stdlib/stats-base-dists-logistic-ctor","14e":"@stdlib/stats/base/dists/logistic/entropy","14f":"@stdlib/stats-base-dists-logistic-entropy","14g":"@stdlib/stats/base/dists/logistic/kurtosis","14h":"@stdlib/stats-base-dists-logistic-kurtosis","14i":"@stdlib/stats/base/dists/logistic/logcdf","14j":"@stdlib/stats-base-dists-logistic-logcdf","14k":"@stdlib/stats/base/dists/logistic/logpdf","14l":"@stdlib/stats-base-dists-logistic-logpdf","14m":"@stdlib/stats/base/dists/logistic/mean","14n":"@stdlib/stats-base-dists-logistic-mean","14o":"@stdlib/stats/base/dists/logistic/median","14p":"@stdlib/stats-base-dists-logistic-median","14q":"@stdlib/stats/base/dists/logistic/mgf","14r":"@stdlib/stats-base-dists-logistic-mgf","14s":"@stdlib/stats/base/dists/logistic/mode","14t":"@stdlib/stats-base-dists-logistic-mode","14u":"@stdlib/stats/base/dists/logistic","14v":"@stdlib/stats-base-dists-logistic","14w":"@stdlib/stats/base/dists/logistic/pdf","14x":"@stdlib/stats-base-dists-logistic-pdf","14y":"@stdlib/stats/base/dists/logistic/quantile","14z":"@stdlib/stats-base-dists-logistic-quantile","15A":"@stdlib/stats/base/dists/lognormal/entropy","15B":"@stdlib/stats-base-dists-lognormal-entropy","15C":"@stdlib/stats/base/dists/lognormal/kurtosis","15D":"@stdlib/stats-base-dists-lognormal-kurtosis","1fA":"@stdlib/stats/base/dists/lognormal/logcdf","1fB":"@stdlib/stats-base-dists-lognormal-logcdf","15E":"@stdlib/stats/base/dists/lognormal/logpdf","15F":"@stdlib/stats-base-dists-lognormal-logpdf","15G":"@stdlib/stats/base/dists/lognormal/mean","15H":"@stdlib/stats-base-dists-lognormal-mean","15I":"@stdlib/stats/base/dists/lognormal/median","15J":"@stdlib/stats-base-dists-lognormal-median","15K":"@stdlib/stats/base/dists/lognormal/mode","15L":"@stdlib/stats-base-dists-lognormal-mode","15M":"@stdlib/stats/base/dists/lognormal","15N":"@stdlib/stats-base-dists-lognormal","15O":"@stdlib/stats/base/dists/lognormal/pdf","15P":"@stdlib/stats-base-dists-lognormal-pdf","15Q":"@stdlib/stats/base/dists/lognormal/quantile","15R":"@stdlib/stats-base-dists-lognormal-quantile","15S":"@stdlib/stats/base/dists/lognormal/skewness","15T":"@stdlib/stats-base-dists-lognormal-skewness","15U":"@stdlib/stats/base/dists/lognormal/stdev","15V":"@stdlib/stats-base-dists-lognormal-stdev","15W":"@stdlib/stats/base/dists/lognormal/variance","15X":"@stdlib/stats-base-dists-lognormal-variance","15Y":"@stdlib/stats/base/dists/negative-binomial/cdf","15Z":"@stdlib/stats-base-dists-negative-binomial-cdf","15a":"@stdlib/stats/base/dists/negative-binomial/ctor","15b":"@stdlib/stats-base-dists-negative-binomial-ctor","15c":"@stdlib/stats/base/dists/negative-binomial/kurtosis","15d":"@stdlib/stats-base-dists-negative-binomial-kurtosis","15e":"@stdlib/stats/base/dists/negative-binomial/logpmf","15f":"@stdlib/stats-base-dists-negative-binomial-logpmf","15g":"@stdlib/stats/base/dists/negative-binomial/mean","15h":"@stdlib/stats-base-dists-negative-binomial-mean","15i":"@stdlib/stats/base/dists/negative-binomial/mgf","15j":"@stdlib/stats-base-dists-negative-binomial-mgf","15k":"@stdlib/stats/base/dists/negative-binomial/mode","15l":"@stdlib/stats-base-dists-negative-binomial-mode","15m":"@stdlib/stats/base/dists/negative-binomial","15n":"@stdlib/stats-base-dists-negative-binomial","15o":"@stdlib/stats/base/dists/negative-binomial/pmf","15p":"@stdlib/stats-base-dists-negative-binomial-pmf","15q":"@stdlib/stats/base/dists/negative-binomial/quantile","15r":"@stdlib/stats-base-dists-negative-binomial-quantile","15s":"@stdlib/stats/base/dists/negative-binomial/skewness","15t":"@stdlib/stats-base-dists-negative-binomial-skewness","15u":"@stdlib/stats/base/dists/negative-binomial/stdev","15v":"@stdlib/stats-base-dists-negative-binomial-stdev","15w":"@stdlib/stats/base/dists/negative-binomial/variance","15x":"@stdlib/stats-base-dists-negative-binomial-variance","15y":"@stdlib/stats/base/dists/normal/cdf","15z":"@stdlib/stats-base-dists-normal-cdf","1fC":"@stdlib/stats/base/dists/normal/logcdf","1fD":"@stdlib/stats-base-dists-normal-logcdf","16A":"@stdlib/stats/base/dists/normal/median","16B":"@stdlib/stats-base-dists-normal-median","16C":"@stdlib/stats/base/dists/normal/mgf","16D":"@stdlib/stats-base-dists-normal-mgf","16E":"@stdlib/stats/base/dists/normal/mode","16F":"@stdlib/stats-base-dists-normal-mode","16G":"@stdlib/stats/base/dists/normal","16H":"@stdlib/stats-base-dists-normal","16I":"@stdlib/stats/base/dists/normal/pdf","16J":"@stdlib/stats-base-dists-normal-pdf","16K":"@stdlib/stats/base/dists/normal/quantile","16L":"@stdlib/stats-base-dists-normal-quantile","16M":"@stdlib/stats/base/dists/normal/skewness","16N":"@stdlib/stats-base-dists-normal-skewness","16O":"@stdlib/stats/base/dists/normal/stdev","16P":"@stdlib/stats-base-dists-normal-stdev","16Q":"@stdlib/stats/base/dists/normal/variance","16R":"@stdlib/stats-base-dists-normal-variance","16S":"@stdlib/stats/base/dists","16T":"@stdlib/stats-base-dists","16U":"@stdlib/stats/base/dists/pareto-type1/cdf","16V":"@stdlib/stats-base-dists-pareto-type1-cdf","16W":"@stdlib/stats/base/dists/pareto-type1/ctor","16X":"@stdlib/stats-base-dists-pareto-type1-ctor","16Y":"@stdlib/stats/base/dists/pareto-type1/entropy","16Z":"@stdlib/stats-base-dists-pareto-type1-entropy","16a":"@stdlib/stats/base/dists/pareto-type1/kurtosis","16b":"@stdlib/stats-base-dists-pareto-type1-kurtosis","16c":"@stdlib/stats/base/dists/pareto-type1/logcdf","16d":"@stdlib/stats-base-dists-pareto-type1-logcdf","16e":"@stdlib/stats/base/dists/pareto-type1/logpdf","16f":"@stdlib/stats-base-dists-pareto-type1-logpdf","16g":"@stdlib/stats/base/dists/pareto-type1/mean","16h":"@stdlib/stats-base-dists-pareto-type1-mean","16i":"@stdlib/stats/base/dists/pareto-type1/median","16j":"@stdlib/stats-base-dists-pareto-type1-median","16k":"@stdlib/stats/base/dists/pareto-type1/mode","16l":"@stdlib/stats-base-dists-pareto-type1-mode","16m":"@stdlib/stats/base/dists/pareto-type1","16n":"@stdlib/stats-base-dists-pareto-type1","16o":"@stdlib/stats/base/dists/pareto-type1/pdf","16p":"@stdlib/stats-base-dists-pareto-type1-pdf","16q":"@stdlib/stats/base/dists/pareto-type1/quantile","16r":"@stdlib/stats-base-dists-pareto-type1-quantile","16s":"@stdlib/stats/base/dists/pareto-type1/skewness","16t":"@stdlib/stats-base-dists-pareto-type1-skewness","16u":"@stdlib/stats/base/dists/pareto-type1/stdev","16v":"@stdlib/stats-base-dists-pareto-type1-stdev","16w":"@stdlib/stats/base/dists/pareto-type1/variance","16x":"@stdlib/stats-base-dists-pareto-type1-variance","25A":"@stdlib/stats/base/dists/planck/cdf","25B":"@stdlib/stats-base-dists-planck-cdf","25C":"@stdlib/stats/base/dists/planck/entropy","25D":"@stdlib/stats-base-dists-planck-entropy","25E":"@stdlib/stats/base/dists/planck/kurtosis","25F":"@stdlib/stats-base-dists-planck-kurtosis","25G":"@stdlib/stats/base/dists/planck/logcdf","25H":"@stdlib/stats-base-dists-planck-logcdf","25I":"@stdlib/stats/base/dists/planck/logpmf","25J":"@stdlib/stats-base-dists-planck-logpmf","25K":"@stdlib/stats/base/dists/planck/mean","25L":"@stdlib/stats-base-dists-planck-mean","25M":"@stdlib/stats/base/dists/planck/median","25N":"@stdlib/stats-base-dists-planck-median","28g":"@stdlib/stats/base/dists/planck/mgf","28h":"@stdlib/stats-base-dists-planck-mgf","25O":"@stdlib/stats/base/dists/planck/mode","25P":"@stdlib/stats-base-dists-planck-mode","2U6":"@stdlib/stats/base/dists/planck","2U7":"@stdlib/stats-base-dists-planck","25Q":"@stdlib/stats/base/dists/planck/pmf","25R":"@stdlib/stats-base-dists-planck-pmf","25S":"@stdlib/stats/base/dists/planck/quantile","25T":"@stdlib/stats-base-dists-planck-quantile","25U":"@stdlib/stats/base/dists/planck/skewness","25V":"@stdlib/stats-base-dists-planck-skewness","25W":"@stdlib/stats/base/dists/planck/stdev","25X":"@stdlib/stats-base-dists-planck-stdev","25Y":"@stdlib/stats/base/dists/planck/variance","25Z":"@stdlib/stats-base-dists-planck-variance","16y":"@stdlib/stats/base/dists/poisson/cdf","16z":"@stdlib/stats-base-dists-poisson-cdf","17A":"@stdlib/stats/base/dists/poisson/median","17B":"@stdlib/stats-base-dists-poisson-median","17C":"@stdlib/stats/base/dists/poisson/mgf","17D":"@stdlib/stats-base-dists-poisson-mgf","17E":"@stdlib/stats/base/dists/poisson/mode","17F":"@stdlib/stats-base-dists-poisson-mode","17G":"@stdlib/stats/base/dists/poisson","17H":"@stdlib/stats-base-dists-poisson","17I":"@stdlib/stats/base/dists/poisson/pmf","17J":"@stdlib/stats-base-dists-poisson-pmf","17K":"@stdlib/stats/base/dists/poisson/quantile","17L":"@stdlib/stats-base-dists-poisson-quantile","17M":"@stdlib/stats/base/dists/poisson/skewness","17N":"@stdlib/stats-base-dists-poisson-skewness","17O":"@stdlib/stats/base/dists/poisson/stdev","17P":"@stdlib/stats-base-dists-poisson-stdev","17Q":"@stdlib/stats/base/dists/poisson/variance","17R":"@stdlib/stats-base-dists-poisson-variance","17S":"@stdlib/stats/base/dists/rayleigh/cdf","17T":"@stdlib/stats-base-dists-rayleigh-cdf","17U":"@stdlib/stats/base/dists/rayleigh/ctor","17V":"@stdlib/stats-base-dists-rayleigh-ctor","17W":"@stdlib/stats/base/dists/rayleigh/entropy","17X":"@stdlib/stats-base-dists-rayleigh-entropy","17Y":"@stdlib/stats/base/dists/rayleigh/kurtosis","17Z":"@stdlib/stats-base-dists-rayleigh-kurtosis","17a":"@stdlib/stats/base/dists/rayleigh/logcdf","17b":"@stdlib/stats-base-dists-rayleigh-logcdf","17c":"@stdlib/stats/base/dists/rayleigh/logpdf","17d":"@stdlib/stats-base-dists-rayleigh-logpdf","17e":"@stdlib/stats/base/dists/rayleigh/mean","17f":"@stdlib/stats-base-dists-rayleigh-mean","17g":"@stdlib/stats/base/dists/rayleigh/median","17h":"@stdlib/stats-base-dists-rayleigh-median","17i":"@stdlib/stats/base/dists/rayleigh/mgf","17j":"@stdlib/stats-base-dists-rayleigh-mgf","17k":"@stdlib/stats/base/dists/rayleigh/mode","17l":"@stdlib/stats-base-dists-rayleigh-mode","17m":"@stdlib/stats/base/dists/rayleigh","17n":"@stdlib/stats-base-dists-rayleigh","17o":"@stdlib/stats/base/dists/rayleigh/pdf","17p":"@stdlib/stats-base-dists-rayleigh-pdf","17q":"@stdlib/stats/base/dists/rayleigh/quantile","17r":"@stdlib/stats-base-dists-rayleigh-quantile","17s":"@stdlib/stats/base/dists/rayleigh/skewness","17t":"@stdlib/stats-base-dists-rayleigh-skewness","17u":"@stdlib/stats/base/dists/rayleigh/stdev","17v":"@stdlib/stats-base-dists-rayleigh-stdev","17w":"@stdlib/stats/base/dists/rayleigh/variance","17x":"@stdlib/stats-base-dists-rayleigh-variance","17y":"@stdlib/stats/base/dists/signrank/cdf","17z":"@stdlib/stats-base-dists-signrank-cdf","1fE":"@stdlib/stats/base/dists/studentized-range/cdf","1fF":"@stdlib/stats-base-dists-studentized-range-cdf","1fG":"@stdlib/stats/base/dists/studentized-range","1fH":"@stdlib/stats-base-dists-studentized-range","1fI":"@stdlib/stats/base/dists/studentized-range/quantile","1fJ":"@stdlib/stats-base-dists-studentized-range-quantile","18A":"@stdlib/stats/base/dists/t/entropy","18B":"@stdlib/stats-base-dists-t-entropy","18C":"@stdlib/stats/base/dists/t/kurtosis","18D":"@stdlib/stats-base-dists-t-kurtosis","18E":"@stdlib/stats/base/dists/t/logcdf","18F":"@stdlib/stats-base-dists-t-logcdf","18G":"@stdlib/stats/base/dists/t/logpdf","18H":"@stdlib/stats-base-dists-t-logpdf","18I":"@stdlib/stats/base/dists/t/mean","18J":"@stdlib/stats-base-dists-t-mean","18K":"@stdlib/stats/base/dists/t/median","18L":"@stdlib/stats-base-dists-t-median","18M":"@stdlib/stats/base/dists/t/mode","18N":"@stdlib/stats-base-dists-t-mode","18O":"@stdlib/stats/base/dists/t","18P":"@stdlib/stats-base-dists-t","18Q":"@stdlib/stats/base/dists/t/pdf","18R":"@stdlib/stats-base-dists-t-pdf","18S":"@stdlib/stats/base/dists/t/quantile","18T":"@stdlib/stats-base-dists-t-quantile","18U":"@stdlib/stats/base/dists/t/skewness","18V":"@stdlib/stats-base-dists-t-skewness","18W":"@stdlib/stats/base/dists/t/stdev","18X":"@stdlib/stats-base-dists-t-stdev","18Y":"@stdlib/stats/base/dists/t/variance","18Z":"@stdlib/stats-base-dists-t-variance","18a":"@stdlib/stats/base/dists/triangular/cdf","18b":"@stdlib/stats-base-dists-triangular-cdf","18c":"@stdlib/stats/base/dists/triangular/ctor","18d":"@stdlib/stats-base-dists-triangular-ctor","18e":"@stdlib/stats/base/dists/triangular/entropy","18f":"@stdlib/stats-base-dists-triangular-entropy","18g":"@stdlib/stats/base/dists/triangular/kurtosis","18h":"@stdlib/stats-base-dists-triangular-kurtosis","18i":"@stdlib/stats/base/dists/triangular/logcdf","18j":"@stdlib/stats-base-dists-triangular-logcdf","18k":"@stdlib/stats/base/dists/triangular/logpdf","18l":"@stdlib/stats-base-dists-triangular-logpdf","18m":"@stdlib/stats/base/dists/triangular/mean","18n":"@stdlib/stats-base-dists-triangular-mean","18o":"@stdlib/stats/base/dists/triangular/median","18p":"@stdlib/stats-base-dists-triangular-median","18q":"@stdlib/stats/base/dists/triangular/mgf","18r":"@stdlib/stats-base-dists-triangular-mgf","18s":"@stdlib/stats/base/dists/triangular/mode","18t":"@stdlib/stats-base-dists-triangular-mode","18u":"@stdlib/stats/base/dists/triangular","18v":"@stdlib/stats-base-dists-triangular","18w":"@stdlib/stats/base/dists/triangular/pdf","18x":"@stdlib/stats-base-dists-triangular-pdf","18y":"@stdlib/stats/base/dists/triangular/quantile","18z":"@stdlib/stats-base-dists-triangular-quantile","19A":"@stdlib/stats/base/dists/uniform/cdf","19B":"@stdlib/stats-base-dists-uniform-cdf","19C":"@stdlib/stats/base/dists/uniform/ctor","19D":"@stdlib/stats-base-dists-uniform-ctor","19E":"@stdlib/stats/base/dists/uniform/entropy","19F":"@stdlib/stats-base-dists-uniform-entropy","19G":"@stdlib/stats/base/dists/uniform/kurtosis","19H":"@stdlib/stats-base-dists-uniform-kurtosis","19I":"@stdlib/stats/base/dists/uniform/logcdf","19J":"@stdlib/stats-base-dists-uniform-logcdf","19K":"@stdlib/stats/base/dists/uniform/logpdf","19L":"@stdlib/stats-base-dists-uniform-logpdf","19M":"@stdlib/stats/base/dists/uniform/mean","19N":"@stdlib/stats-base-dists-uniform-mean","19O":"@stdlib/stats/base/dists/uniform/median","19P":"@stdlib/stats-base-dists-uniform-median","19Q":"@stdlib/stats/base/dists/uniform/mgf","19R":"@stdlib/stats-base-dists-uniform-mgf","19S":"@stdlib/stats/base/dists/uniform","19T":"@stdlib/stats-base-dists-uniform","19U":"@stdlib/stats/base/dists/uniform/pdf","19V":"@stdlib/stats-base-dists-uniform-pdf","19W":"@stdlib/stats/base/dists/uniform/quantile","19X":"@stdlib/stats-base-dists-uniform-quantile","19Y":"@stdlib/stats/base/dists/uniform/skewness","19Z":"@stdlib/stats-base-dists-uniform-skewness","19a":"@stdlib/stats/base/dists/uniform/stdev","19b":"@stdlib/stats-base-dists-uniform-stdev","19c":"@stdlib/stats/base/dists/uniform/variance","19d":"@stdlib/stats-base-dists-uniform-variance","2r6":"@stdlib/stats/base/dists/wald/kurtosis","2r7":"@stdlib/stats-base-dists-wald-kurtosis","2r8":"@stdlib/stats/base/dists/wald/mean","2r9":"@stdlib/stats-base-dists-wald-mean","2rA":"@stdlib/stats/base/dists/wald/mode","2rB":"@stdlib/stats-base-dists-wald-mode","2rC":"@stdlib/stats/base/dists/wald/pdf","2rD":"@stdlib/stats-base-dists-wald-pdf","2rE":"@stdlib/stats/base/dists/wald/skewness","2rF":"@stdlib/stats-base-dists-wald-skewness","2rG":"@stdlib/stats/base/dists/wald/variance","2rH":"@stdlib/stats-base-dists-wald-variance","19e":"@stdlib/stats/base/dists/weibull/cdf","19f":"@stdlib/stats-base-dists-weibull-cdf","19g":"@stdlib/stats/base/dists/weibull/ctor","19h":"@stdlib/stats-base-dists-weibull-ctor","19i":"@stdlib/stats/base/dists/weibull/entropy","19j":"@stdlib/stats-base-dists-weibull-entropy","19k":"@stdlib/stats/base/dists/weibull/kurtosis","19l":"@stdlib/stats-base-dists-weibull-kurtosis","19m":"@stdlib/stats/base/dists/weibull/logcdf","19n":"@stdlib/stats-base-dists-weibull-logcdf","19o":"@stdlib/stats/base/dists/weibull/logpdf","19p":"@stdlib/stats-base-dists-weibull-logpdf","19q":"@stdlib/stats/base/dists/weibull/mean","19r":"@stdlib/stats-base-dists-weibull-mean","19s":"@stdlib/stats/base/dists/weibull/median","19t":"@stdlib/stats-base-dists-weibull-median","19u":"@stdlib/stats/base/dists/weibull/mgf","19v":"@stdlib/stats-base-dists-weibull-mgf","19w":"@stdlib/stats/base/dists/weibull/mode","19x":"@stdlib/stats-base-dists-weibull-mode","19y":"@stdlib/stats/base/dists/weibull","19z":"@stdlib/stats-base-dists-weibull","1A0":"@stdlib/stats/base/dists/weibull/pdf","1A1":"@stdlib/stats-base-dists-weibull-pdf","1A2":"@stdlib/stats/base/dists/weibull/quantile","1A3":"@stdlib/stats-base-dists-weibull-quantile","1A4":"@stdlib/stats/base/dists/weibull/skewness","1A5":"@stdlib/stats-base-dists-weibull-skewness","1A6":"@stdlib/stats/base/dists/weibull/stdev","1A7":"@stdlib/stats-base-dists-weibull-stdev","1A8":"@stdlib/stats/base/dists/weibull/variance","1A9":"@stdlib/stats-base-dists-weibull-variance","2U8":"@stdlib/stats/base/ndarray/covarmtk","2U9":"@stdlib/stats-base-ndarray-covarmtk","2G2":"@stdlib/stats/base/ndarray/cumax","2G3":"@stdlib/stats-base-ndarray-cumax","2Pa":"@stdlib/stats/base/ndarray/cumin","2Pb":"@stdlib/stats-base-ndarray-cumin","2UA":"@stdlib/stats/base/ndarray/dcovarmtk","2UB":"@stdlib/stats-base-ndarray-dcovarmtk","2G4":"@stdlib/stats/base/ndarray/dcumax","2G5":"@stdlib/stats-base-ndarray-dcumax","2aa":"@stdlib/stats/base/ndarray/dcumaxabs","2ab":"@stdlib/stats-base-ndarray-dcumaxabs","2Pc":"@stdlib/stats/base/ndarray/dcumin","2Pd":"@stdlib/stats-base-ndarray-dcumin","2ac":"@stdlib/stats/base/ndarray/dcuminabs","2ad":"@stdlib/stats-base-ndarray-dcuminabs","2Ey":"@stdlib/stats/base/ndarray/dmax","2Ez":"@stdlib/stats-base-ndarray-dmax","2UC":"@stdlib/stats/base/ndarray/dmaxabs","2UD":"@stdlib/stats-base-ndarray-dmaxabs","2ae":"@stdlib/stats/base/ndarray/dmaxabssorted","2af":"@stdlib/stats-base-ndarray-dmaxabssorted","2Vm":"@stdlib/stats/base/ndarray/dmaxsorted","2Vn":"@stdlib/stats-base-ndarray-dmaxsorted","2UE":"@stdlib/stats/base/ndarray/dmean","2UF":"@stdlib/stats-base-ndarray-dmean","2Y0":"@stdlib/stats/base/ndarray/dmeankbn","2Y1":"@stdlib/stats-base-ndarray-dmeankbn","2Y2":"@stdlib/stats/base/ndarray/dmeankbn2","2Y3":"@stdlib/stats-base-ndarray-dmeankbn2","2Y4":"@stdlib/stats/base/ndarray/dmeanli","2Y5":"@stdlib/stats-base-ndarray-dmeanli","2Y6":"@stdlib/stats/base/ndarray/dmeanlipw","2Y7":"@stdlib/stats-base-ndarray-dmeanlipw","2ag":"@stdlib/stats/base/ndarray/dmeanors","2ah":"@stdlib/stats-base-ndarray-dmeanors","2ai":"@stdlib/stats/base/ndarray/dmeanpn","2aj":"@stdlib/stats-base-ndarray-dmeanpn","2ak":"@stdlib/stats/base/ndarray/dmeanpw","2al":"@stdlib/stats-base-ndarray-dmeanpw","2rI":"@stdlib/stats/base/ndarray/dmeanstdev","2rJ":"@stdlib/stats-base-ndarray-dmeanstdev","2am":"@stdlib/stats/base/ndarray/dmeanwd","2an":"@stdlib/stats-base-ndarray-dmeanwd","2ao":"@stdlib/stats/base/ndarray/dmediansorted","2ap":"@stdlib/stats-base-ndarray-dmediansorted","2aq":"@stdlib/stats/base/ndarray/dmidrange","2ar":"@stdlib/stats-base-ndarray-dmidrange","2Pe":"@stdlib/stats/base/ndarray/dmin","2Pf":"@stdlib/stats-base-ndarray-dmin","2UG":"@stdlib/stats/base/ndarray/dminabs","2UH":"@stdlib/stats-base-ndarray-dminabs","2Y8":"@stdlib/stats/base/ndarray/dminsorted","2Y9":"@stdlib/stats-base-ndarray-dminsorted","2as":"@stdlib/stats/base/ndarray/dmskmax","2at":"@stdlib/stats-base-ndarray-dmskmax","2rK":"@stdlib/stats/base/ndarray/dmskmaxabs","2rL":"@stdlib/stats-base-ndarray-dmskmaxabs","2au":"@stdlib/stats/base/ndarray/dmskmin","2av":"@stdlib/stats-base-ndarray-dmskmin","2aw":"@stdlib/stats/base/ndarray/dmskrange","2ax":"@stdlib/stats-base-ndarray-dmskrange","2UI":"@stdlib/stats/base/ndarray/dnanmax","2UJ":"@stdlib/stats-base-ndarray-dnanmax","2Yc":"@stdlib/stats/base/ndarray/dnanmaxabs","2Yd":"@stdlib/stats-base-ndarray-dnanmaxabs","2VA":"@stdlib/stats/base/ndarray/dnanmean","2VB":"@stdlib/stats-base-ndarray-dnanmean","2ay":"@stdlib/stats/base/ndarray/dnanmeanors","2az":"@stdlib/stats-base-ndarray-dnanmeanors","2b0":"@stdlib/stats/base/ndarray/dnanmeanpn","2b1":"@stdlib/stats-base-ndarray-dnanmeanpn","2b2":"@stdlib/stats/base/ndarray/dnanmeanpw","2b3":"@stdlib/stats-base-ndarray-dnanmeanpw","2b4":"@stdlib/stats/base/ndarray/dnanmeanwd","2b5":"@stdlib/stats-base-ndarray-dnanmeanwd","2rM":"@stdlib/stats/base/ndarray/dnanmidrange","2rN":"@stdlib/stats-base-ndarray-dnanmidrange","2UK":"@stdlib/stats/base/ndarray/dnanmin","2UL":"@stdlib/stats-base-ndarray-dnanmin","2Ye":"@stdlib/stats/base/ndarray/dnanminabs","2Yf":"@stdlib/stats-base-ndarray-dnanminabs","2b6":"@stdlib/stats/base/ndarray/dnanmskmax","2b7":"@stdlib/stats-base-ndarray-dnanmskmax","2rO":"@stdlib/stats/base/ndarray/dnanmskmaxabs","2rP":"@stdlib/stats-base-ndarray-dnanmskmaxabs","2b8":"@stdlib/stats/base/ndarray/dnanmskmin","2b9":"@stdlib/stats-base-ndarray-dnanmskmin","2rQ":"@stdlib/stats/base/ndarray/dnanmskminabs","2rR":"@stdlib/stats-base-ndarray-dnanmskminabs","2bA":"@stdlib/stats/base/ndarray/dnanmskrange","2bB":"@stdlib/stats-base-ndarray-dnanmskrange","2rS":"@stdlib/stats/base/ndarray/dnanrange","2rT":"@stdlib/stats-base-ndarray-dnanrange","2rU":"@stdlib/stats/base/ndarray/dnanrangeabs","2rV":"@stdlib/stats-base-ndarray-dnanrangeabs","2rW":"@stdlib/stats/base/ndarray/dnanstdev","2rX":"@stdlib/stats-base-ndarray-dnanstdev","2rY":"@stdlib/stats/base/ndarray/dnanstdevch","2rZ":"@stdlib/stats-base-ndarray-dnanstdevch","2ra":"@stdlib/stats/base/ndarray/dnanstdevpn","2rb":"@stdlib/stats-base-ndarray-dnanstdevpn","2Pg":"@stdlib/stats/base/ndarray/drange","2Ph":"@stdlib/stats-base-ndarray-drange","2rc":"@stdlib/stats/base/ndarray/drangeabs","2rd":"@stdlib/stats-base-ndarray-drangeabs","2re":"@stdlib/stats/base/ndarray/dstdev","2rf":"@stdlib/stats-base-ndarray-dstdev","2rg":"@stdlib/stats/base/ndarray/dstdevch","2rh":"@stdlib/stats-base-ndarray-dstdevch","2ri":"@stdlib/stats/base/ndarray/dstdevpn","2rj":"@stdlib/stats-base-ndarray-dstdevpn","2rk":"@stdlib/stats/base/ndarray/dstdevtk","2rl":"@stdlib/stats-base-ndarray-dstdevtk","2rm":"@stdlib/stats/base/ndarray/dstdevwd","2rn":"@stdlib/stats-base-ndarray-dstdevwd","2ro":"@stdlib/stats/base/ndarray/dstdevyc","2rp":"@stdlib/stats-base-ndarray-dstdevyc","2rq":"@stdlib/stats/base/ndarray/dvariance","2rr":"@stdlib/stats-base-ndarray-dvariance","2Pi":"@stdlib/stats/base/ndarray/dztest","2Pj":"@stdlib/stats-base-ndarray-dztest","2S8":"@stdlib/stats/base/ndarray/dztest2","2S9":"@stdlib/stats-base-ndarray-dztest2","2Ji":"@stdlib/stats/base/ndarray/max-by","2Jj":"@stdlib/stats-base-ndarray-max-by","2F0":"@stdlib/stats/base/ndarray/max","2F1":"@stdlib/stats-base-ndarray-max","2UM":"@stdlib/stats/base/ndarray/maxabs","2UN":"@stdlib/stats-base-ndarray-maxabs","2Vo":"@stdlib/stats/base/ndarray/maxsorted","2Vp":"@stdlib/stats-base-ndarray-maxsorted","2UO":"@stdlib/stats/base/ndarray/mean","2UP":"@stdlib/stats-base-ndarray-mean","2XE":"@stdlib/stats/base/ndarray/meankbn","2XF":"@stdlib/stats-base-ndarray-meankbn","2XG":"@stdlib/stats/base/ndarray/meankbn2","2XH":"@stdlib/stats-base-ndarray-meankbn2","2XI":"@stdlib/stats/base/ndarray/meanors","2XJ":"@stdlib/stats-base-ndarray-meanors","2XK":"@stdlib/stats/base/ndarray/meanpn","2XL":"@stdlib/stats-base-ndarray-meanpn","2XM":"@stdlib/stats/base/ndarray/meanpw","2XN":"@stdlib/stats-base-ndarray-meanpw","2XO":"@stdlib/stats/base/ndarray/meanwd","2XP":"@stdlib/stats-base-ndarray-meanwd","2XQ":"@stdlib/stats/base/ndarray/mediansorted","2XR":"@stdlib/stats-base-ndarray-mediansorted","2rs":"@stdlib/stats/base/ndarray/midrange-by","2rt":"@stdlib/stats-base-ndarray-midrange-by","2ru":"@stdlib/stats/base/ndarray/midrange","2rv":"@stdlib/stats-base-ndarray-midrange","2rw":"@stdlib/stats/base/ndarray/midrangeabs","2rx":"@stdlib/stats-base-ndarray-midrangeabs","2Pk":"@stdlib/stats/base/ndarray/min-by","2Pl":"@stdlib/stats-base-ndarray-min-by","2Pm":"@stdlib/stats/base/ndarray/min","2Pn":"@stdlib/stats-base-ndarray-min","2UQ":"@stdlib/stats/base/ndarray/minabs","2UR":"@stdlib/stats-base-ndarray-minabs","2XS":"@stdlib/stats/base/ndarray/minsorted","2XT":"@stdlib/stats-base-ndarray-minsorted","2XU":"@stdlib/stats/base/ndarray/mskmax","2XV":"@stdlib/stats-base-ndarray-mskmax","2ry":"@stdlib/stats/base/ndarray/mskmaxabs","2rz":"@stdlib/stats-base-ndarray-mskmaxabs","2s0":"@stdlib/stats/base/ndarray/mskmidrange","2s1":"@stdlib/stats-base-ndarray-mskmidrange","2YA":"@stdlib/stats/base/ndarray/mskmin","2YB":"@stdlib/stats-base-ndarray-mskmin","2bC":"@stdlib/stats/base/ndarray/mskrange","2bD":"@stdlib/stats-base-ndarray-mskrange","2bE":"@stdlib/stats/base/ndarray/nanmax-by","2bF":"@stdlib/stats-base-ndarray-nanmax-by","2US":"@stdlib/stats/base/ndarray/nanmax","2UT":"@stdlib/stats-base-ndarray-nanmax","2Yg":"@stdlib/stats/base/ndarray/nanmaxabs","2Yh":"@stdlib/stats-base-ndarray-nanmaxabs","2VC":"@stdlib/stats/base/ndarray/nanmean","2VD":"@stdlib/stats-base-ndarray-nanmean","2bG":"@stdlib/stats/base/ndarray/nanmeanors","2bH":"@stdlib/stats-base-ndarray-nanmeanors","2bI":"@stdlib/stats/base/ndarray/nanmeanpn","2bJ":"@stdlib/stats-base-ndarray-nanmeanpn","2bK":"@stdlib/stats/base/ndarray/nanmeanwd","2bL":"@stdlib/stats-base-ndarray-nanmeanwd","2s2":"@stdlib/stats/base/ndarray/nanmidrange-by","2s3":"@stdlib/stats-base-ndarray-nanmidrange-by","2s4":"@stdlib/stats/base/ndarray/nanmidrange","2s5":"@stdlib/stats-base-ndarray-nanmidrange","2bM":"@stdlib/stats/base/ndarray/nanmin-by","2bN":"@stdlib/stats-base-ndarray-nanmin-by","2UU":"@stdlib/stats/base/ndarray/nanmin","2UV":"@stdlib/stats-base-ndarray-nanmin","2Yi":"@stdlib/stats/base/ndarray/nanminabs","2Yj":"@stdlib/stats-base-ndarray-nanminabs","2bO":"@stdlib/stats/base/ndarray/nanmskmax","2bP":"@stdlib/stats-base-ndarray-nanmskmax","2s6":"@stdlib/stats/base/ndarray/nanmskmidrange","2s7":"@stdlib/stats-base-ndarray-nanmskmidrange","2bQ":"@stdlib/stats/base/ndarray/nanmskmin","2bR":"@stdlib/stats-base-ndarray-nanmskmin","2bS":"@stdlib/stats/base/ndarray/nanmskrange","2bT":"@stdlib/stats-base-ndarray-nanmskrange","2bU":"@stdlib/stats/base/ndarray/nanrange-by","2bV":"@stdlib/stats-base-ndarray-nanrange-by","2bW":"@stdlib/stats/base/ndarray/nanrange","2bX":"@stdlib/stats-base-ndarray-nanrange","2F2":"@stdlib/stats/base/ndarray","2F3":"@stdlib/stats-base-ndarray","2YC":"@stdlib/stats/base/ndarray/range-by","2YD":"@stdlib/stats-base-ndarray-range-by","2Po":"@stdlib/stats/base/ndarray/range","2Pp":"@stdlib/stats-base-ndarray-range","2s8":"@stdlib/stats/base/ndarray/rangeabs","2s9":"@stdlib/stats-base-ndarray-rangeabs","2UW":"@stdlib/stats/base/ndarray/scovarmtk","2UX":"@stdlib/stats-base-ndarray-scovarmtk","2G6":"@stdlib/stats/base/ndarray/scumax","2G7":"@stdlib/stats-base-ndarray-scumax","2Yk":"@stdlib/stats/base/ndarray/scumaxabs","2Yl":"@stdlib/stats-base-ndarray-scumaxabs","2Pq":"@stdlib/stats/base/ndarray/scumin","2Pr":"@stdlib/stats-base-ndarray-scumin","2Ym":"@stdlib/stats/base/ndarray/scuminabs","2Yn":"@stdlib/stats-base-ndarray-scuminabs","2bY":"@stdlib/stats/base/ndarray/sdsmean","2bZ":"@stdlib/stats-base-ndarray-sdsmean","2ba":"@stdlib/stats/base/ndarray/sdsmeanors","2bb":"@stdlib/stats-base-ndarray-sdsmeanors","2bc":"@stdlib/stats/base/ndarray/sdsnanmeanors","2bd":"@stdlib/stats-base-ndarray-sdsnanmeanors","2F4":"@stdlib/stats/base/ndarray/smax","2F5":"@stdlib/stats-base-ndarray-smax","2UY":"@stdlib/stats/base/ndarray/smaxabs","2UZ":"@stdlib/stats-base-ndarray-smaxabs","2YE":"@stdlib/stats/base/ndarray/smaxabssorted","2YF":"@stdlib/stats-base-ndarray-smaxabssorted","2Vq":"@stdlib/stats/base/ndarray/smaxsorted","2Vr":"@stdlib/stats-base-ndarray-smaxsorted","2Ua":"@stdlib/stats/base/ndarray/smean","2Ub":"@stdlib/stats-base-ndarray-smean","2be":"@stdlib/stats/base/ndarray/smeankbn","2bf":"@stdlib/stats-base-ndarray-smeankbn","2bg":"@stdlib/stats/base/ndarray/smeankbn2","2bh":"@stdlib/stats-base-ndarray-smeankbn2","2bi":"@stdlib/stats/base/ndarray/smeanli","2bj":"@stdlib/stats-base-ndarray-smeanli","2bk":"@stdlib/stats/base/ndarray/smeanlipw","2bl":"@stdlib/stats-base-ndarray-smeanlipw","2bm":"@stdlib/stats/base/ndarray/smeanors","2bn":"@stdlib/stats-base-ndarray-smeanors","2bo":"@stdlib/stats/base/ndarray/smeanpn","2bp":"@stdlib/stats-base-ndarray-smeanpn","2bq":"@stdlib/stats/base/ndarray/smeanpw","2br":"@stdlib/stats-base-ndarray-smeanpw","2bs":"@stdlib/stats/base/ndarray/smeanwd","2bt":"@stdlib/stats-base-ndarray-smeanwd","2bu":"@stdlib/stats/base/ndarray/smediansorted","2bv":"@stdlib/stats-base-ndarray-smediansorted","2bw":"@stdlib/stats/base/ndarray/smidrange","2bx":"@stdlib/stats-base-ndarray-smidrange","2Ps":"@stdlib/stats/base/ndarray/smin","2Pt":"@stdlib/stats-base-ndarray-smin","2Uc":"@stdlib/stats/base/ndarray/sminabs","2Ud":"@stdlib/stats-base-ndarray-sminabs","2YG":"@stdlib/stats/base/ndarray/sminsorted","2YH":"@stdlib/stats-base-ndarray-sminsorted","2by":"@stdlib/stats/base/ndarray/smskmax","2bz":"@stdlib/stats-base-ndarray-smskmax","2sA":"@stdlib/stats/base/ndarray/smskmaxabs","2sB":"@stdlib/stats-base-ndarray-smskmaxabs","2sC":"@stdlib/stats/base/ndarray/smskmidrange","2sD":"@stdlib/stats-base-ndarray-smskmidrange","2c0":"@stdlib/stats/base/ndarray/smskmin","2c1":"@stdlib/stats-base-ndarray-smskmin","2c2":"@stdlib/stats/base/ndarray/smskrange","2c3":"@stdlib/stats-base-ndarray-smskrange","2Ue":"@stdlib/stats/base/ndarray/snanmax","2Uf":"@stdlib/stats-base-ndarray-snanmax","2YI":"@stdlib/stats/base/ndarray/snanmaxabs","2YJ":"@stdlib/stats-base-ndarray-snanmaxabs","2VE":"@stdlib/stats/base/ndarray/snanmean","2VF":"@stdlib/stats-base-ndarray-snanmean","2c4":"@stdlib/stats/base/ndarray/snanmeanors","2c5":"@stdlib/stats-base-ndarray-snanmeanors","2c6":"@stdlib/stats/base/ndarray/snanmeanpn","2c7":"@stdlib/stats-base-ndarray-snanmeanpn","2c8":"@stdlib/stats/base/ndarray/snanmeanwd","2c9":"@stdlib/stats-base-ndarray-snanmeanwd","2sE":"@stdlib/stats/base/ndarray/snanmidrange","2sF":"@stdlib/stats-base-ndarray-snanmidrange","2Ug":"@stdlib/stats/base/ndarray/snanmin","2Uh":"@stdlib/stats-base-ndarray-snanmin","2YK":"@stdlib/stats/base/ndarray/snanminabs","2YL":"@stdlib/stats-base-ndarray-snanminabs","2cA":"@stdlib/stats/base/ndarray/snanmskmax","2cB":"@stdlib/stats-base-ndarray-snanmskmax","2sG":"@stdlib/stats/base/ndarray/snanmskmaxabs","2sH":"@stdlib/stats-base-ndarray-snanmskmaxabs","2sI":"@stdlib/stats/base/ndarray/snanmskmidrange","2sJ":"@stdlib/stats-base-ndarray-snanmskmidrange","2cC":"@stdlib/stats/base/ndarray/snanmskmin","2cD":"@stdlib/stats-base-ndarray-snanmskmin","2sK":"@stdlib/stats/base/ndarray/snanmskminabs","2sL":"@stdlib/stats-base-ndarray-snanmskminabs","2cE":"@stdlib/stats/base/ndarray/snanmskrange","2cF":"@stdlib/stats-base-ndarray-snanmskrange","2sM":"@stdlib/stats/base/ndarray/snanrange","2sN":"@stdlib/stats-base-ndarray-snanrange","2Pu":"@stdlib/stats/base/ndarray/srange","2Pv":"@stdlib/stats-base-ndarray-srange","2sO":"@stdlib/stats/base/ndarray/srangeabs","2sP":"@stdlib/stats-base-ndarray-srangeabs","2sQ":"@stdlib/stats/base/ndarray/sstdev","2sR":"@stdlib/stats-base-ndarray-sstdev","2sS":"@stdlib/stats/base/ndarray/sstdevch","2sT":"@stdlib/stats-base-ndarray-sstdevch","2sU":"@stdlib/stats/base/ndarray/sstdevpn","2sV":"@stdlib/stats-base-ndarray-sstdevpn","2sW":"@stdlib/stats/base/ndarray/sstdevtk","2sX":"@stdlib/stats-base-ndarray-sstdevtk","2sY":"@stdlib/stats/base/ndarray/sstdevwd","2sZ":"@stdlib/stats-base-ndarray-sstdevwd","2sa":"@stdlib/stats/base/ndarray/sstdevyc","2sb":"@stdlib/stats-base-ndarray-sstdevyc","2sc":"@stdlib/stats/base/ndarray/stdev","2sd":"@stdlib/stats-base-ndarray-stdev","2se":"@stdlib/stats/base/ndarray/stdevch","2sf":"@stdlib/stats-base-ndarray-stdevch","2sg":"@stdlib/stats/base/ndarray/stdevpn","2sh":"@stdlib/stats-base-ndarray-stdevpn","2si":"@stdlib/stats/base/ndarray/stdevtk","2sj":"@stdlib/stats-base-ndarray-stdevtk","2sk":"@stdlib/stats/base/ndarray/stdevwd","2sl":"@stdlib/stats-base-ndarray-stdevwd","2sm":"@stdlib/stats/base/ndarray/stdevyc","2sn":"@stdlib/stats-base-ndarray-stdevyc","2so":"@stdlib/stats/base/ndarray/svariance","2sp":"@stdlib/stats-base-ndarray-svariance","2sq":"@stdlib/stats/base/ndarray/svariancech","2sr":"@stdlib/stats-base-ndarray-svariancech","2ss":"@stdlib/stats/base/ndarray/svariancepn","2st":"@stdlib/stats-base-ndarray-svariancepn","2su":"@stdlib/stats/base/ndarray/svariancetk","2sv":"@stdlib/stats-base-ndarray-svariancetk","2sw":"@stdlib/stats/base/ndarray/svariancewd","2sx":"@stdlib/stats-base-ndarray-svariancewd","2sy":"@stdlib/stats/base/ndarray/svarianceyc","2sz":"@stdlib/stats-base-ndarray-svarianceyc","2Pw":"@stdlib/stats/base/ndarray/sztest","2Px":"@stdlib/stats-base-ndarray-sztest","2SA":"@stdlib/stats/base/ndarray/sztest2","2SB":"@stdlib/stats-base-ndarray-sztest2","2t0":"@stdlib/stats/base/ndarray/variance","2t1":"@stdlib/stats-base-ndarray-variance","2t2":"@stdlib/stats/base/ndarray/variancech","2t3":"@stdlib/stats-base-ndarray-variancech","2t4":"@stdlib/stats/base/ndarray/variancepn","2t5":"@stdlib/stats-base-ndarray-variancepn","2t6":"@stdlib/stats/base/ndarray/variancetk","2t7":"@stdlib/stats-base-ndarray-variancetk","2t8":"@stdlib/stats/base/ndarray/variancewd","2t9":"@stdlib/stats-base-ndarray-variancewd","2tA":"@stdlib/stats/base/ndarray/varianceyc","2tB":"@stdlib/stats-base-ndarray-varianceyc","2Py":"@stdlib/stats/base/ndarray/ztest","2Pz":"@stdlib/stats-base-ndarray-ztest","2SC":"@stdlib/stats/base/ndarray/ztest2","2SD":"@stdlib/stats-base-ndarray-ztest2","1EK":"@stdlib/stats/base","1EL":"@stdlib/stats-base","1Ec":"@stdlib/stats/base/sdsnanmean","1Ed":"@stdlib/stats-base-sdsnanmean","1Fk":"@stdlib/stats/base/snanstdev","1Fl":"@stdlib/stats-base-snanstdev","1Fm":"@stdlib/stats/base/snanstdevch","1Fn":"@stdlib/stats-base-snanstdevch","1Fo":"@stdlib/stats/base/snanstdevpn","1Fp":"@stdlib/stats-base-snanstdevpn","1Fq":"@stdlib/stats/base/snanstdevtk","1Fr":"@stdlib/stats-base-snanstdevtk","1Fs":"@stdlib/stats/base/snanstdevwd","1Ft":"@stdlib/stats-base-snanstdevwd","1Fu":"@stdlib/stats/base/snanstdevyc","1Fv":"@stdlib/stats-base-snanstdevyc","1Fw":"@stdlib/stats/base/snanvariance","1Fx":"@stdlib/stats-base-snanvariance","1Fy":"@stdlib/stats/base/snanvariancech","1Fz":"@stdlib/stats-base-snanvariancech","1G0":"@stdlib/stats/base/snanvariancepn","1G1":"@stdlib/stats-base-snanvariancepn","1G2":"@stdlib/stats/base/snanvariancetk","1G3":"@stdlib/stats-base-snanvariancetk","1G4":"@stdlib/stats/base/snanvariancewd","1G5":"@stdlib/stats-base-snanvariancewd","1G6":"@stdlib/stats/base/snanvarianceyc","1G7":"@stdlib/stats-base-snanvarianceyc","2Le":"@stdlib/stats/base/ztest/alternative-enum2str","2Lf":"@stdlib/stats-base-ztest-alternative-enum2str","2Lg":"@stdlib/stats/base/ztest/alternative-resolve-enum","2Lh":"@stdlib/stats-base-ztest-alternative-resolve-enum","2Li":"@stdlib/stats/base/ztest/alternative-resolve-str","2Lj":"@stdlib/stats-base-ztest-alternative-resolve-str","2Lk":"@stdlib/stats/base/ztest/alternative-str2enum","2Ll":"@stdlib/stats-base-ztest-alternative-str2enum","2Lm":"@stdlib/stats/base/ztest/alternatives","2Ln":"@stdlib/stats-base-ztest-alternatives","2Lo":"@stdlib/stats/base/ztest/one-sample/results/factory","2Lp":"@stdlib/stats-base-ztest-one-sample-results-factory","2Lq":"@stdlib/stats/base/ztest/one-sample/results/float32","2Lr":"@stdlib/stats-base-ztest-one-sample-results-float32","2Ls":"@stdlib/stats/base/ztest/one-sample/results/float64","2Lt":"@stdlib/stats-base-ztest-one-sample-results-float64","2Lu":"@stdlib/stats/base/ztest/one-sample/results/struct-factory","2Lv":"@stdlib/stats-base-ztest-one-sample-results-struct-factory","2Lw":"@stdlib/stats/base/ztest/one-sample/results/to-json","2Lx":"@stdlib/stats-base-ztest-one-sample-results-to-json","2Ly":"@stdlib/stats/base/ztest/one-sample/results/to-string","2Lz":"@stdlib/stats-base-ztest-one-sample-results-to-string","2Q0":"@stdlib/stats/base/ztest/two-sample/results/factory","2Q1":"@stdlib/stats-base-ztest-two-sample-results-factory","2Q2":"@stdlib/stats/base/ztest/two-sample/results/float32","2Q3":"@stdlib/stats-base-ztest-two-sample-results-float32","2Q4":"@stdlib/stats/base/ztest/two-sample/results/float64","2Q5":"@stdlib/stats-base-ztest-two-sample-results-float64","2Q6":"@stdlib/stats/base/ztest/two-sample/results/struct-factory","2Q7":"@stdlib/stats-base-ztest-two-sample-results-struct-factory","2Q8":"@stdlib/stats/base/ztest/two-sample/results/to-json","2Q9":"@stdlib/stats-base-ztest-two-sample-results-to-json","2QA":"@stdlib/stats/base/ztest/two-sample/results/to-string","2QB":"@stdlib/stats-base-ztest-two-sample-results-to-string","1Gw":"@stdlib/stats/binomial-test","1Gx":"@stdlib/stats-binomial-test","1Gy":"@stdlib/stats/chi2gof","1Gz":"@stdlib/stats-chi2gof","1H0":"@stdlib/stats/chi2test","1H1":"@stdlib/stats-chi2test","2G8":"@stdlib/stats/cumax","2G9":"@stdlib/stats-cumax","2Ui":"@stdlib/stats/cumin","2Uj":"@stdlib/stats-cumin","1H2":"@stdlib/stats/fligner-test","1H3":"@stdlib/stats-fligner-test","1H4":"@stdlib/stats/incr/apcorr","1H5":"@stdlib/stats-incr-apcorr","1H6":"@stdlib/stats/incr/count","1H7":"@stdlib/stats-incr-count","1H8":"@stdlib/stats/incr/covariance","1H9":"@stdlib/stats-incr-covariance","1HA":"@stdlib/stats/incr/covmat","1HB":"@stdlib/stats-incr-covmat","1HC":"@stdlib/stats/incr/cv","1HD":"@stdlib/stats-incr-cv","1HE":"@stdlib/stats/incr/ewmean","1HF":"@stdlib/stats-incr-ewmean","1HG":"@stdlib/stats/incr/ewstdev","1HH":"@stdlib/stats-incr-ewstdev","1HI":"@stdlib/stats/incr/ewvariance","1HJ":"@stdlib/stats-incr-ewvariance","1HK":"@stdlib/stats/incr/gmean","1HL":"@stdlib/stats-incr-gmean","1HM":"@stdlib/stats/incr/grubbs","1HN":"@stdlib/stats-incr-grubbs","1HO":"@stdlib/stats/incr/hmean","1HP":"@stdlib/stats-incr-hmean","1HQ":"@stdlib/stats/incr/kurtosis","1HR":"@stdlib/stats-incr-kurtosis","1HS":"@stdlib/stats/incr/maape","1HT":"@stdlib/stats-incr-maape","1HU":"@stdlib/stats/incr/mae","1HV":"@stdlib/stats-incr-mae","1HW":"@stdlib/stats/incr/mapcorr","1HX":"@stdlib/stats-incr-mapcorr","1HY":"@stdlib/stats/incr/mape","1HZ":"@stdlib/stats-incr-mape","1Ha":"@stdlib/stats/incr/max","1Hb":"@stdlib/stats-incr-max","1Hc":"@stdlib/stats/incr/maxabs","1Hd":"@stdlib/stats-incr-maxabs","1He":"@stdlib/stats/incr/mcovariance","1Hf":"@stdlib/stats-incr-mcovariance","1Hg":"@stdlib/stats/incr/mcv","1Hh":"@stdlib/stats-incr-mcv","1Hi":"@stdlib/stats/incr/mda","1Hj":"@stdlib/stats-incr-mda","1Hk":"@stdlib/stats/incr/me","1Hl":"@stdlib/stats-incr-me","1Hm":"@stdlib/stats/incr/mean","1Hn":"@stdlib/stats-incr-mean","1Ho":"@stdlib/stats/incr/meanabs","1Hp":"@stdlib/stats-incr-meanabs","1Hq":"@stdlib/stats/incr/meanabs2","1Hr":"@stdlib/stats-incr-meanabs2","1Hs":"@stdlib/stats/incr/meanstdev","1Ht":"@stdlib/stats-incr-meanstdev","1Hu":"@stdlib/stats/incr/meanvar","1Hv":"@stdlib/stats-incr-meanvar","1Hw":"@stdlib/stats/incr/mgmean","1Hx":"@stdlib/stats-incr-mgmean","1Hy":"@stdlib/stats/incr/mgrubbs","1Hz":"@stdlib/stats-incr-mgrubbs","1I0":"@stdlib/stats/incr/mhmean","1I1":"@stdlib/stats-incr-mhmean","1I2":"@stdlib/stats/incr/midrange","1I3":"@stdlib/stats-incr-midrange","1I4":"@stdlib/stats/incr/min","1I5":"@stdlib/stats-incr-min","1I6":"@stdlib/stats/incr/minabs","1I7":"@stdlib/stats-incr-minabs","1I8":"@stdlib/stats/incr/minmax","1I9":"@stdlib/stats-incr-minmax","1IA":"@stdlib/stats/incr/minmaxabs","1IB":"@stdlib/stats-incr-minmaxabs","1IC":"@stdlib/stats/incr/mmaape","1ID":"@stdlib/stats-incr-mmaape","1IE":"@stdlib/stats/incr/mmae","1IF":"@stdlib/stats-incr-mmae","1IG":"@stdlib/stats/incr/mmape","1IH":"@stdlib/stats-incr-mmape","1II":"@stdlib/stats/incr/mmax","1IJ":"@stdlib/stats-incr-mmax","1IK":"@stdlib/stats/incr/mmaxabs","1IL":"@stdlib/stats-incr-mmaxabs","1IM":"@stdlib/stats/incr/mmda","1IN":"@stdlib/stats-incr-mmda","1IO":"@stdlib/stats/incr/mme","1IP":"@stdlib/stats-incr-mme","1IQ":"@stdlib/stats/incr/mmean","1IR":"@stdlib/stats-incr-mmean","1IS":"@stdlib/stats/incr/mmeanabs","1IT":"@stdlib/stats-incr-mmeanabs","1IU":"@stdlib/stats/incr/mmeanabs2","1IV":"@stdlib/stats-incr-mmeanabs2","1IW":"@stdlib/stats/incr/mmeanstdev","1IX":"@stdlib/stats-incr-mmeanstdev","1IY":"@stdlib/stats/incr/mmeanvar","1IZ":"@stdlib/stats-incr-mmeanvar","1Ia":"@stdlib/stats/incr/mmidrange","1Ib":"@stdlib/stats-incr-mmidrange","1Ic":"@stdlib/stats/incr/mmin","1Id":"@stdlib/stats-incr-mmin","1Ie":"@stdlib/stats/incr/mminabs","1If":"@stdlib/stats-incr-mminabs","1Ig":"@stdlib/stats/incr/mminmax","1Ih":"@stdlib/stats-incr-mminmax","1Ii":"@stdlib/stats/incr/mminmaxabs","1Ij":"@stdlib/stats-incr-mminmaxabs","1Ik":"@stdlib/stats/incr/mmpe","1Il":"@stdlib/stats-incr-mmpe","1Im":"@stdlib/stats/incr/mmse","1In":"@stdlib/stats-incr-mmse","1Io":"@stdlib/stats/incr/mpcorr","1Ip":"@stdlib/stats-incr-mpcorr","1Iq":"@stdlib/stats/incr/mpcorr2","1Ir":"@stdlib/stats-incr-mpcorr2","1Is":"@stdlib/stats/incr/mpcorrdist","1It":"@stdlib/stats-incr-mpcorrdist","1Iu":"@stdlib/stats/incr/mpe","1Iv":"@stdlib/stats-incr-mpe","1Iw":"@stdlib/stats/incr/mprod","1Ix":"@stdlib/stats-incr-mprod","1Iy":"@stdlib/stats/incr/mrange","1Iz":"@stdlib/stats-incr-mrange","1J0":"@stdlib/stats/incr/mrmse","1J1":"@stdlib/stats-incr-mrmse","1J2":"@stdlib/stats/incr/mrss","1J3":"@stdlib/stats-incr-mrss","1J4":"@stdlib/stats/incr/mse","1J5":"@stdlib/stats-incr-mse","1J6":"@stdlib/stats/incr/mstdev","1J7":"@stdlib/stats-incr-mstdev","1J8":"@stdlib/stats/incr/msum","1J9":"@stdlib/stats-incr-msum","1JA":"@stdlib/stats/incr/msumabs","1JB":"@stdlib/stats-incr-msumabs","1JC":"@stdlib/stats/incr/msumabs2","1JD":"@stdlib/stats-incr-msumabs2","1JE":"@stdlib/stats/incr/msummary","1JF":"@stdlib/stats-incr-msummary","1JG":"@stdlib/stats/incr/msumprod","1JH":"@stdlib/stats-incr-msumprod","1JI":"@stdlib/stats/incr/mvariance","1JJ":"@stdlib/stats-incr-mvariance","1JK":"@stdlib/stats/incr/mvmr","1JL":"@stdlib/stats-incr-mvmr","1JM":"@stdlib/stats/incr/nancount","1JN":"@stdlib/stats-incr-nancount","2We":"@stdlib/stats/incr/nangmean","2Wf":"@stdlib/stats-incr-nangmean","2Wg":"@stdlib/stats/incr/nanhmean","2Wh":"@stdlib/stats-incr-nanhmean","2GU":"@stdlib/stats/incr/nanmaxabs","2GV":"@stdlib/stats-incr-nanmaxabs","2Yo":"@stdlib/stats/incr/nanmcv","2Yp":"@stdlib/stats-incr-nanmcv","2As":"@stdlib/stats/incr/nanmean","2At":"@stdlib/stats-incr-nanmean","2Au":"@stdlib/stats/incr/nanmeanabs","2Av":"@stdlib/stats-incr-nanmeanabs","2Wi":"@stdlib/stats/incr/nanmin","2Wj":"@stdlib/stats-incr-nanmin","2tC":"@stdlib/stats/incr/nanmmape","2tD":"@stdlib/stats-incr-nanmmape","2tE":"@stdlib/stats/incr/nanmmse","2tF":"@stdlib/stats-incr-nanmmse","2GW":"@stdlib/stats/incr/nanmstdev","2GX":"@stdlib/stats-incr-nanmstdev","2QC":"@stdlib/stats/incr/nanmsum","2QD":"@stdlib/stats-incr-nanmsum","2Aw":"@stdlib/stats/incr/nanskewness","2Ax":"@stdlib/stats-incr-nanskewness","2E4":"@stdlib/stats/incr/nanstdev","2E5":"@stdlib/stats-incr-nanstdev","1JO":"@stdlib/stats/incr/nansum","1JP":"@stdlib/stats-incr-nansum","1JQ":"@stdlib/stats/incr/nansumabs","1JR":"@stdlib/stats-incr-nansumabs","1JS":"@stdlib/stats/incr/nansumabs2","1JT":"@stdlib/stats-incr-nansumabs2","2tG":"@stdlib/stats/incr/nanvariance","2tH":"@stdlib/stats-incr-nanvariance","1JU":"@stdlib/stats/incr","1JV":"@stdlib/stats-incr","1JW":"@stdlib/stats/incr/pcorr","1JX":"@stdlib/stats-incr-pcorr","1JY":"@stdlib/stats/incr/pcorr2","1JZ":"@stdlib/stats-incr-pcorr2","1Ja":"@stdlib/stats/incr/pcorrdist","1Jb":"@stdlib/stats-incr-pcorrdist","1Jc":"@stdlib/stats/incr/pcorrdistmat","1Jd":"@stdlib/stats-incr-pcorrdistmat","1Je":"@stdlib/stats/incr/pcorrmat","1Jf":"@stdlib/stats-incr-pcorrmat","1Jg":"@stdlib/stats/incr/prod","1Jh":"@stdlib/stats-incr-prod","1Ji":"@stdlib/stats/incr/range","1Jj":"@stdlib/stats-incr-range","1Jk":"@stdlib/stats/incr/rmse","1Jl":"@stdlib/stats-incr-rmse","1Jm":"@stdlib/stats/incr/rss","1Jn":"@stdlib/stats-incr-rss","1Jo":"@stdlib/stats/incr/skewness","1Jp":"@stdlib/stats-incr-skewness","1Jq":"@stdlib/stats/incr/stdev","1Jr":"@stdlib/stats-incr-stdev","1Js":"@stdlib/stats/incr/sum","1Jt":"@stdlib/stats-incr-sum","1Ju":"@stdlib/stats/incr/sumabs","1Jv":"@stdlib/stats-incr-sumabs","1Jw":"@stdlib/stats/incr/sumabs2","1Jx":"@stdlib/stats-incr-sumabs2","1Jy":"@stdlib/stats/incr/summary","1Jz":"@stdlib/stats-incr-summary","1K0":"@stdlib/stats/incr/sumprod","1K1":"@stdlib/stats-incr-sumprod","1K2":"@stdlib/stats/incr/variance","1K3":"@stdlib/stats-incr-variance","1K4":"@stdlib/stats/incr/vmr","1K5":"@stdlib/stats-incr-vmr","1K6":"@stdlib/stats/incr/wmean","1K7":"@stdlib/stats-incr-wmean","1K8":"@stdlib/stats/iter/cugmean","1K9":"@stdlib/stats-iter-cugmean","1KA":"@stdlib/stats/iter/cuhmean","1KB":"@stdlib/stats-iter-cuhmean","1KC":"@stdlib/stats/iter/cumax","1KD":"@stdlib/stats-iter-cumax","1KE":"@stdlib/stats/iter/cumaxabs","1KF":"@stdlib/stats-iter-cumaxabs","1KG":"@stdlib/stats/iter/cumean","1KH":"@stdlib/stats-iter-cumean","1KI":"@stdlib/stats/iter/cumeanabs","1KJ":"@stdlib/stats-iter-cumeanabs","1KK":"@stdlib/stats/iter/cumeanabs2","1KL":"@stdlib/stats-iter-cumeanabs2","1KM":"@stdlib/stats/iter/cumidrange","1KN":"@stdlib/stats-iter-cumidrange","1KO":"@stdlib/stats/iter/cumin","1KP":"@stdlib/stats-iter-cumin","1KQ":"@stdlib/stats/iter/cuminabs","1KR":"@stdlib/stats-iter-cuminabs","1KS":"@stdlib/stats/iter/cuprod","1KT":"@stdlib/stats-iter-cuprod","1KU":"@stdlib/stats/iter/curange","1KV":"@stdlib/stats-iter-curange","1KW":"@stdlib/stats/iter/cusum","1KX":"@stdlib/stats-iter-cusum","1KY":"@stdlib/stats/iter/cusumabs","1KZ":"@stdlib/stats-iter-cusumabs","1Ka":"@stdlib/stats/iter/cusumabs2","1Kb":"@stdlib/stats-iter-cusumabs2","1Kc":"@stdlib/stats/iter/max","1Kd":"@stdlib/stats-iter-max","1Ke":"@stdlib/stats/iter/maxabs","1Kf":"@stdlib/stats-iter-maxabs","1Kg":"@stdlib/stats/iter/mean","1Kh":"@stdlib/stats-iter-mean","1Ki":"@stdlib/stats/iter/meanabs","1Kj":"@stdlib/stats-iter-meanabs","1Kk":"@stdlib/stats/iter/meanabs2","1Kl":"@stdlib/stats-iter-meanabs2","1Km":"@stdlib/stats/iter/midrange","1Kn":"@stdlib/stats-iter-midrange","1Ko":"@stdlib/stats/iter/min","1Kp":"@stdlib/stats-iter-min","1Kq":"@stdlib/stats/iter/minabs","1Kr":"@stdlib/stats-iter-minabs","1Ks":"@stdlib/stats/iter/mmax","1Kt":"@stdlib/stats-iter-mmax","1Ku":"@stdlib/stats/iter/mmaxabs","1Kv":"@stdlib/stats-iter-mmaxabs","1Kw":"@stdlib/stats/iter/mmean","1Kx":"@stdlib/stats-iter-mmean","1Ky":"@stdlib/stats/iter/mmeanabs","1Kz":"@stdlib/stats-iter-mmeanabs","1L0":"@stdlib/stats/iter/mmeanabs2","1L1":"@stdlib/stats-iter-mmeanabs2","1L2":"@stdlib/stats/iter/mmidrange","1L3":"@stdlib/stats-iter-mmidrange","1L4":"@stdlib/stats/iter/mmin","1L5":"@stdlib/stats-iter-mmin","1L6":"@stdlib/stats/iter/mminabs","1L7":"@stdlib/stats-iter-mminabs","1L8":"@stdlib/stats/iter/mprod","1L9":"@stdlib/stats-iter-mprod","1LA":"@stdlib/stats/iter/mrange","1LB":"@stdlib/stats-iter-mrange","1LC":"@stdlib/stats/iter/msum","1LD":"@stdlib/stats-iter-msum","1LE":"@stdlib/stats/iter/msumabs","1LF":"@stdlib/stats-iter-msumabs","1LG":"@stdlib/stats/iter/msumabs2","1LH":"@stdlib/stats-iter-msumabs2","1LI":"@stdlib/stats/iter","1LJ":"@stdlib/stats-iter","1LK":"@stdlib/stats/iter/prod","1LL":"@stdlib/stats-iter-prod","1LM":"@stdlib/stats/iter/range","1LN":"@stdlib/stats-iter-range","1LO":"@stdlib/stats/iter/stdev","1LP":"@stdlib/stats-iter-stdev","1LQ":"@stdlib/stats/iter/sum","1LR":"@stdlib/stats-iter-sum","1LS":"@stdlib/stats/iter/sumabs","1LT":"@stdlib/stats-iter-sumabs","1LU":"@stdlib/stats/iter/sumabs2","1LV":"@stdlib/stats-iter-sumabs2","1LW":"@stdlib/stats/iter/variance","1LX":"@stdlib/stats-iter-variance","1LY":"@stdlib/stats/kde2d","1LZ":"@stdlib/stats-kde2d","1La":"@stdlib/stats/kruskal-test","1Lb":"@stdlib/stats-kruskal-test","1Lc":"@stdlib/stats/kstest","1Ld":"@stdlib/stats-kstest","1Le":"@stdlib/stats/levene-test","1Lf":"@stdlib/stats-levene-test","1Lg":"@stdlib/stats/lowess","1Lh":"@stdlib/stats-lowess","2Jk":"@stdlib/stats/max-by","2Jl":"@stdlib/stats-max-by","2F6":"@stdlib/stats/max","2F7":"@stdlib/stats-max","2Uk":"@stdlib/stats/maxabs","2Ul":"@stdlib/stats-maxabs","2cG":"@stdlib/stats/maxsorted","2cH":"@stdlib/stats-maxsorted","2Um":"@stdlib/stats/mean","2Un":"@stdlib/stats-mean","2cI":"@stdlib/stats/meankbn","2cJ":"@stdlib/stats-meankbn","2cK":"@stdlib/stats/meankbn2","2cL":"@stdlib/stats-meankbn2","2cM":"@stdlib/stats/meanors","2cN":"@stdlib/stats-meanors","2cO":"@stdlib/stats/meanpn","2cP":"@stdlib/stats-meanpn","2cQ":"@stdlib/stats/meanpw","2cR":"@stdlib/stats-meanpw","2cS":"@stdlib/stats/meanwd","2cT":"@stdlib/stats-meanwd","2cU":"@stdlib/stats/mediansorted","2cV":"@stdlib/stats-mediansorted","2tI":"@stdlib/stats/midrange-by","2tJ":"@stdlib/stats-midrange-by","2tK":"@stdlib/stats/midrange","2tL":"@stdlib/stats-midrange","2Uo":"@stdlib/stats/min-by","2Up":"@stdlib/stats-min-by","2Uq":"@stdlib/stats/min","2Ur":"@stdlib/stats-min","2Us":"@stdlib/stats/minabs","2Ut":"@stdlib/stats-minabs","2cW":"@stdlib/stats/minsorted","2cX":"@stdlib/stats-minsorted","2cY":"@stdlib/stats/nanmax-by","2cZ":"@stdlib/stats-nanmax-by","2Uu":"@stdlib/stats/nanmax","2Uv":"@stdlib/stats-nanmax","2ca":"@stdlib/stats/nanmaxabs","2cb":"@stdlib/stats-nanmaxabs","2VG":"@stdlib/stats/nanmean","2VH":"@stdlib/stats-nanmean","2cc":"@stdlib/stats/nanmeanors","2cd":"@stdlib/stats-nanmeanors","2ce":"@stdlib/stats/nanmeanpn","2cf":"@stdlib/stats-nanmeanpn","2cg":"@stdlib/stats/nanmeanwd","2ch":"@stdlib/stats-nanmeanwd","2tM":"@stdlib/stats/nanmidrange-by","2tN":"@stdlib/stats-nanmidrange-by","2tO":"@stdlib/stats/nanmidrange","2tP":"@stdlib/stats-nanmidrange","2ci":"@stdlib/stats/nanmin-by","2cj":"@stdlib/stats-nanmin-by","2Uw":"@stdlib/stats/nanmin","2Ux":"@stdlib/stats-nanmin","2ck":"@stdlib/stats/nanminabs","2cl":"@stdlib/stats-nanminabs","2tQ":"@stdlib/stats/nanrange-by","2tR":"@stdlib/stats-nanrange-by","2tS":"@stdlib/stats/nanrange","2tT":"@stdlib/stats-nanrange","1Lj":"@stdlib/stats","1Lk":"@stdlib/stats/padjust","1Ll":"@stdlib/stats-padjust","1Lm":"@stdlib/stats/pcorrtest","1Ln":"@stdlib/stats-pcorrtest","2cm":"@stdlib/stats/range-by","2cn":"@stdlib/stats-range-by","2Uy":"@stdlib/stats/range","2Uz":"@stdlib/stats-range","2tU":"@stdlib/stats/rangeabs","2tV":"@stdlib/stats-rangeabs","1Lo":"@stdlib/stats/ranks","1Lp":"@stdlib/stats-ranks","2QE":"@stdlib/stats/strided/covarmtk","2QF":"@stdlib/stats-strided-covarmtk","2QG":"@stdlib/stats/strided/dcovarmtk","2QH":"@stdlib/stats-strided-dcovarmtk","2QI":"@stdlib/stats/strided/dcovmatmtk","2QJ":"@stdlib/stats-strided-dcovmatmtk","28i":"@stdlib/stats/strided/dcumax","28j":"@stdlib/stats-strided-dcumax","28k":"@stdlib/stats/strided/dcumaxabs","28l":"@stdlib/stats-strided-dcumaxabs","2E6":"@stdlib/stats/strided/dcumin","2E7":"@stdlib/stats-strided-dcumin","28m":"@stdlib/stats/strided/dcuminabs","28n":"@stdlib/stats-strided-dcuminabs","2tW":"@stdlib/stats/strided/distances/dchebyshev","2tX":"@stdlib/stats-strided-distances-dchebyshev","2tY":"@stdlib/stats/strided/distances/dcityblock","2tZ":"@stdlib/stats-strided-distances-dcityblock","2ta":"@stdlib/stats/strided/distances/dcorrelation","2tb":"@stdlib/stats-strided-distances-dcorrelation","2tc":"@stdlib/stats/strided/distances/dcosine-distance","2td":"@stdlib/stats-strided-distances-dcosine-distance","2te":"@stdlib/stats/strided/distances/dcosine-similarity","2tf":"@stdlib/stats-strided-distances-dcosine-similarity","2tg":"@stdlib/stats/strided/distances/deuclidean","2th":"@stdlib/stats-strided-distances-deuclidean","2ti":"@stdlib/stats/strided/distances/dminkowski","2tj":"@stdlib/stats-strided-distances-dminkowski","2tk":"@stdlib/stats/strided/distances/dsquared-euclidean","2tl":"@stdlib/stats-strided-distances-dsquared-euclidean","2tm":"@stdlib/stats/strided/distances","2tn":"@stdlib/stats-strided-distances","26I":"@stdlib/stats/strided/dmax","26J":"@stdlib/stats-strided-dmax","28o":"@stdlib/stats/strided/dmaxabs","28p":"@stdlib/stats-strided-dmaxabs","28q":"@stdlib/stats/strided/dmaxabssorted","28r":"@stdlib/stats-strided-dmaxabssorted","28s":"@stdlib/stats/strided/dmaxsorted","28t":"@stdlib/stats-strided-dmaxsorted","2Jm":"@stdlib/stats/strided/dmean","2Jn":"@stdlib/stats-strided-dmean","28u":"@stdlib/stats/strided/dmeankbn","28v":"@stdlib/stats-strided-dmeankbn","28w":"@stdlib/stats/strided/dmeankbn2","28x":"@stdlib/stats-strided-dmeankbn2","28y":"@stdlib/stats/strided/dmeanli","28z":"@stdlib/stats-strided-dmeanli","2Jo":"@stdlib/stats/strided/dmeanpn","2Jp":"@stdlib/stats-strided-dmeanpn","2QK":"@stdlib/stats/strided/dmeanstdev","2QL":"@stdlib/stats-strided-dmeanstdev","2QM":"@stdlib/stats/strided/dmeanstdevpn","2QN":"@stdlib/stats-strided-dmeanstdevpn","2QO":"@stdlib/stats/strided/dmeanvar","2QP":"@stdlib/stats-strided-dmeanvar","2QQ":"@stdlib/stats/strided/dmeanvarpn","2QR":"@stdlib/stats-strided-dmeanvarpn","29A":"@stdlib/stats/strided/dmidrange","29B":"@stdlib/stats-strided-dmidrange","2to":"@stdlib/stats/strided/dmidrangeabs","2tp":"@stdlib/stats-strided-dmidrangeabs","29C":"@stdlib/stats/strided/dmin","29D":"@stdlib/stats-strided-dmin","29E":"@stdlib/stats/strided/dminabs","29F":"@stdlib/stats-strided-dminabs","29G":"@stdlib/stats/strided/dminsorted","29H":"@stdlib/stats-strided-dminsorted","2E8":"@stdlib/stats/strided/dmskmax","2E9":"@stdlib/stats-strided-dmskmax","2tq":"@stdlib/stats/strided/dmskmaxabs","2tr":"@stdlib/stats-strided-dmskmaxabs","2ts":"@stdlib/stats/strided/dmskmidrange","2tt":"@stdlib/stats-strided-dmskmidrange","2EA":"@stdlib/stats/strided/dmskmin","2EB":"@stdlib/stats-strided-dmskmin","2EC":"@stdlib/stats/strided/dmskrange","2ED":"@stdlib/stats-strided-dmskrange","29I":"@stdlib/stats/strided/dnanmax","29J":"@stdlib/stats-strided-dnanmax","29K":"@stdlib/stats/strided/dnanmaxabs","29L":"@stdlib/stats-strided-dnanmaxabs","29M":"@stdlib/stats/strided/dnanmean","29N":"@stdlib/stats-strided-dnanmean","2Ay":"@stdlib/stats/strided/dnanmeanors","2Az":"@stdlib/stats-strided-dnanmeanors","2B0":"@stdlib/stats/strided/dnanmeanpn","2B1":"@stdlib/stats-strided-dnanmeanpn","2B2":"@stdlib/stats/strided/dnanmeanpw","2B3":"@stdlib/stats-strided-dnanmeanpw","2B4":"@stdlib/stats/strided/dnanmeanwd","2B5":"@stdlib/stats-strided-dnanmeanwd","2tu":"@stdlib/stats/strided/dnanmidrange","2tv":"@stdlib/stats-strided-dnanmidrange","2B6":"@stdlib/stats/strided/dnanmin","2B7":"@stdlib/stats-strided-dnanmin","2B8":"@stdlib/stats/strided/dnanminabs","2B9":"@stdlib/stats-strided-dnanminabs","2Jq":"@stdlib/stats/strided/dnanmskmax","2Jr":"@stdlib/stats-strided-dnanmskmax","2tw":"@stdlib/stats/strided/dnanmskmaxabs","2tx":"@stdlib/stats-strided-dnanmskmaxabs","2ty":"@stdlib/stats/strided/dnanmskmidrange","2tz":"@stdlib/stats-strided-dnanmskmidrange","2Js":"@stdlib/stats/strided/dnanmskmin","2Jt":"@stdlib/stats-strided-dnanmskmin","2u0":"@stdlib/stats/strided/dnanmskminabs","2u1":"@stdlib/stats-strided-dnanmskminabs","2Ju":"@stdlib/stats/strided/dnanmskrange","2Jv":"@stdlib/stats-strided-dnanmskrange","2BA":"@stdlib/stats/strided/dnanrange","2BB":"@stdlib/stats-strided-dnanrange","2u2":"@stdlib/stats/strided/dnanrangeabs","2u3":"@stdlib/stats-strided-dnanrangeabs","2Jw":"@stdlib/stats/strided/dnanstdev","2Jx":"@stdlib/stats-strided-dnanstdev","2BC":"@stdlib/stats/strided/dnanstdevch","2BD":"@stdlib/stats-strided-dnanstdevch","2BE":"@stdlib/stats/strided/dnanstdevpn","2BF":"@stdlib/stats-strided-dnanstdevpn","2BG":"@stdlib/stats/strided/dnanstdevtk","2BH":"@stdlib/stats-strided-dnanstdevtk","2BI":"@stdlib/stats/strided/dnanstdevwd","2BJ":"@stdlib/stats-strided-dnanstdevwd","2BK":"@stdlib/stats/strided/dnanstdevyc","2BL":"@stdlib/stats-strided-dnanstdevyc","2BM":"@stdlib/stats/strided/dnanvariance","2BN":"@stdlib/stats-strided-dnanvariance","2BO":"@stdlib/stats/strided/dnanvariancech","2BP":"@stdlib/stats-strided-dnanvariancech","2BQ":"@stdlib/stats/strided/dnanvariancepn","2BR":"@stdlib/stats-strided-dnanvariancepn","2BS":"@stdlib/stats/strided/dnanvariancetk","2BT":"@stdlib/stats-strided-dnanvariancetk","2BU":"@stdlib/stats/strided/dnanvariancewd","2BV":"@stdlib/stats-strided-dnanvariancewd","2BW":"@stdlib/stats/strided/dnanvarianceyc","2BX":"@stdlib/stats-strided-dnanvarianceyc","2u4":"@stdlib/stats/strided/dpcorr","2u5":"@stdlib/stats-strided-dpcorr","2u6":"@stdlib/stats/strided/dpcorrwd","2u7":"@stdlib/stats-strided-dpcorrwd","2BY":"@stdlib/stats/strided/drange","2BZ":"@stdlib/stats-strided-drange","2u8":"@stdlib/stats/strided/drangeabs","2u9":"@stdlib/stats-strided-drangeabs","2Jy":"@stdlib/stats/strided/dsem","2Jz":"@stdlib/stats-strided-dsem","2Ba":"@stdlib/stats/strided/dsemch","2Bb":"@stdlib/stats-strided-dsemch","2K0":"@stdlib/stats/strided/dsempn","2K1":"@stdlib/stats-strided-dsempn","2Bc":"@stdlib/stats/strided/dsemtk","2Bd":"@stdlib/stats-strided-dsemtk","2Be":"@stdlib/stats/strided/dsemwd","2Bf":"@stdlib/stats-strided-dsemwd","2Bg":"@stdlib/stats/strided/dsemyc","2Bh":"@stdlib/stats-strided-dsemyc","2Bi":"@stdlib/stats/strided/dsmean","2Bj":"@stdlib/stats-strided-dsmean","2EE":"@stdlib/stats/strided/dsmeanors","2EF":"@stdlib/stats-strided-dsmeanors","2Bk":"@stdlib/stats/strided/dsmeanpn","2Bl":"@stdlib/stats-strided-dsmeanpn","2Bm":"@stdlib/stats/strided/dsmeanpw","2Bn":"@stdlib/stats-strided-dsmeanpw","2Bo":"@stdlib/stats/strided/dsmeanwd","2Bp":"@stdlib/stats-strided-dsmeanwd","2Bq":"@stdlib/stats/strided/dsnanmean","2Br":"@stdlib/stats-strided-dsnanmean","2Bs":"@stdlib/stats/strided/dsnanmeanors","2Bt":"@stdlib/stats-strided-dsnanmeanors","2Bu":"@stdlib/stats/strided/dsnanmeanpn","2Bv":"@stdlib/stats-strided-dsnanmeanpn","2Bw":"@stdlib/stats/strided/dsnanmeanwd","2Bx":"@stdlib/stats-strided-dsnanmeanwd","2K2":"@stdlib/stats/strided/dstdev","2K3":"@stdlib/stats-strided-dstdev","2By":"@stdlib/stats/strided/dstdevch","2Bz":"@stdlib/stats-strided-dstdevch","2C0":"@stdlib/stats/strided/dstdevpn","2C1":"@stdlib/stats-strided-dstdevpn","2C2":"@stdlib/stats/strided/dstdevtk","2C3":"@stdlib/stats-strided-dstdevtk","2C4":"@stdlib/stats/strided/dstdevwd","2C5":"@stdlib/stats-strided-dstdevwd","2C6":"@stdlib/stats/strided/dstdevyc","2C7":"@stdlib/stats-strided-dstdevyc","2C8":"@stdlib/stats/strided/dsvariance","2C9":"@stdlib/stats-strided-dsvariance","2CA":"@stdlib/stats/strided/dsvariancepn","2CB":"@stdlib/stats-strided-dsvariancepn","2CC":"@stdlib/stats/strided/dvariance","2CD":"@stdlib/stats-strided-dvariance","2CE":"@stdlib/stats/strided/dvariancech","2CF":"@stdlib/stats-strided-dvariancech","2CG":"@stdlib/stats/strided/dvariancepn","2CH":"@stdlib/stats-strided-dvariancepn","2CI":"@stdlib/stats/strided/dvariancetk","2CJ":"@stdlib/stats-strided-dvariancetk","2CK":"@stdlib/stats/strided/dvariancewd","2CL":"@stdlib/stats-strided-dvariancewd","2CM":"@stdlib/stats/strided/dvarianceyc","2CN":"@stdlib/stats-strided-dvarianceyc","2M0":"@stdlib/stats/strided/dvarm","2M1":"@stdlib/stats-strided-dvarm","2M2":"@stdlib/stats/strided/dvarmpn","2M3":"@stdlib/stats-strided-dvarmpn","2CO":"@stdlib/stats/strided/dvarmtk","2CP":"@stdlib/stats-strided-dvarmtk","2M4":"@stdlib/stats/strided/dztest","2M5":"@stdlib/stats-strided-dztest","2SE":"@stdlib/stats/strided/dztest2","2SF":"@stdlib/stats-strided-dztest2","2M6":"@stdlib/stats/strided/max-by","2M7":"@stdlib/stats-strided-max-by","2M8":"@stdlib/stats/strided/max","2M9":"@stdlib/stats-strided-max","2MA":"@stdlib/stats/strided/maxabs","2MB":"@stdlib/stats-strided-maxabs","2MC":"@stdlib/stats/strided/maxsorted","2MD":"@stdlib/stats-strided-maxsorted","2ME":"@stdlib/stats/strided/mean","2MF":"@stdlib/stats-strided-mean","2MG":"@stdlib/stats/strided/meankbn","2MH":"@stdlib/stats-strided-meankbn","2MI":"@stdlib/stats/strided/meankbn2","2MJ":"@stdlib/stats-strided-meankbn2","2MK":"@stdlib/stats/strided/meanors","2ML":"@stdlib/stats-strided-meanors","2MM":"@stdlib/stats/strided/meanpn","2MN":"@stdlib/stats-strided-meanpn","2MO":"@stdlib/stats/strided/meanpw","2MP":"@stdlib/stats-strided-meanpw","2MQ":"@stdlib/stats/strided/meanwd","2MR":"@stdlib/stats-strided-meanwd","2MS":"@stdlib/stats/strided/mediansorted","2MT":"@stdlib/stats-strided-mediansorted","2uA":"@stdlib/stats/strided/midrange-by","2uB":"@stdlib/stats-strided-midrange-by","2uC":"@stdlib/stats/strided/midrange","2uD":"@stdlib/stats-strided-midrange","2uE":"@stdlib/stats/strided/midrangeabs","2uF":"@stdlib/stats-strided-midrangeabs","2MU":"@stdlib/stats/strided/min-by","2MV":"@stdlib/stats-strided-min-by","2MW":"@stdlib/stats/strided/min","2MX":"@stdlib/stats-strided-min","2MY":"@stdlib/stats/strided/minabs","2MZ":"@stdlib/stats-strided-minabs","2Ma":"@stdlib/stats/strided/minsorted","2Mb":"@stdlib/stats-strided-minsorted","2Mc":"@stdlib/stats/strided/mskmax","2Md":"@stdlib/stats-strided-mskmax","2uG":"@stdlib/stats/strided/mskmaxabs","2uH":"@stdlib/stats-strided-mskmaxabs","2uI":"@stdlib/stats/strided/mskmidrange","2uJ":"@stdlib/stats-strided-mskmidrange","2Me":"@stdlib/stats/strided/mskmin","2Mf":"@stdlib/stats-strided-mskmin","2uK":"@stdlib/stats/strided/mskminabs","2uL":"@stdlib/stats-strided-mskminabs","2Mg":"@stdlib/stats/strided/mskrange","2Mh":"@stdlib/stats-strided-mskrange","2Mi":"@stdlib/stats/strided/nanmax-by","2Mj":"@stdlib/stats-strided-nanmax-by","2Mk":"@stdlib/stats/strided/nanmax","2Ml":"@stdlib/stats-strided-nanmax","2Mm":"@stdlib/stats/strided/nanmaxabs","2Mn":"@stdlib/stats-strided-nanmaxabs","2QS":"@stdlib/stats/strided/nanmean","2QT":"@stdlib/stats-strided-nanmean","2QU":"@stdlib/stats/strided/nanmeanors","2QV":"@stdlib/stats-strided-nanmeanors","2QW":"@stdlib/stats/strided/nanmeanpn","2QX":"@stdlib/stats-strided-nanmeanpn","2QY":"@stdlib/stats/strided/nanmeanwd","2QZ":"@stdlib/stats-strided-nanmeanwd","2uM":"@stdlib/stats/strided/nanmidrange-by","2uN":"@stdlib/stats-strided-nanmidrange-by","2uO":"@stdlib/stats/strided/nanmidrange","2uP":"@stdlib/stats-strided-nanmidrange","2Mo":"@stdlib/stats/strided/nanmin-by","2Mp":"@stdlib/stats-strided-nanmin-by","2Mq":"@stdlib/stats/strided/nanmin","2Mr":"@stdlib/stats-strided-nanmin","2Ms":"@stdlib/stats/strided/nanminabs","2Mt":"@stdlib/stats-strided-nanminabs","2Qa":"@stdlib/stats/strided/nanmskmax","2Qb":"@stdlib/stats-strided-nanmskmax","2uQ":"@stdlib/stats/strided/nanmskmidrange","2uR":"@stdlib/stats-strided-nanmskmidrange","2Qc":"@stdlib/stats/strided/nanmskmin","2Qd":"@stdlib/stats-strided-nanmskmin","2Qe":"@stdlib/stats/strided/nanmskrange","2Qf":"@stdlib/stats-strided-nanmskrange","2Qg":"@stdlib/stats/strided/nanrange-by","2Qh":"@stdlib/stats-strided-nanrange-by","2Qi":"@stdlib/stats/strided/nanrange","2Qj":"@stdlib/stats-strided-nanrange","2uS":"@stdlib/stats/strided/nanrangeabs","2uT":"@stdlib/stats-strided-nanrangeabs","2SG":"@stdlib/stats/strided/nanstdev","2SH":"@stdlib/stats-strided-nanstdev","2SI":"@stdlib/stats/strided/nanstdevch","2SJ":"@stdlib/stats-strided-nanstdevch","2SK":"@stdlib/stats/strided/nanstdevpn","2SL":"@stdlib/stats-strided-nanstdevpn","2SM":"@stdlib/stats/strided/nanstdevtk","2SN":"@stdlib/stats-strided-nanstdevtk","2SO":"@stdlib/stats/strided/nanstdevwd","2SP":"@stdlib/stats-strided-nanstdevwd","2SQ":"@stdlib/stats/strided/nanstdevyc","2SR":"@stdlib/stats-strided-nanstdevyc","2Qk":"@stdlib/stats/strided/nanvariance","2Ql":"@stdlib/stats-strided-nanvariance","2Qm":"@stdlib/stats/strided/nanvariancech","2Qn":"@stdlib/stats-strided-nanvariancech","2Qo":"@stdlib/stats/strided/nanvariancepn","2Qp":"@stdlib/stats-strided-nanvariancepn","2Qq":"@stdlib/stats/strided/nanvariancetk","2Qr":"@stdlib/stats-strided-nanvariancetk","2Qs":"@stdlib/stats/strided/nanvariancewd","2Qt":"@stdlib/stats-strided-nanvariancewd","2Qu":"@stdlib/stats/strided/nanvarianceyc","2Qv":"@stdlib/stats-strided-nanvarianceyc","2K4":"@stdlib/stats/strided","2K5":"@stdlib/stats-strided","2Qw":"@stdlib/stats/strided/range-by","2Qx":"@stdlib/stats-strided-range-by","2Qy":"@stdlib/stats/strided/range","2Qz":"@stdlib/stats-strided-range","2uU":"@stdlib/stats/strided/rangeabs","2uV":"@stdlib/stats-strided-rangeabs","2R0":"@stdlib/stats/strided/scovarmtk","2R1":"@stdlib/stats-strided-scovarmtk","2CQ":"@stdlib/stats/strided/scumax","2CR":"@stdlib/stats-strided-scumax","2CS":"@stdlib/stats/strided/scumaxabs","2CT":"@stdlib/stats-strided-scumaxabs","2CU":"@stdlib/stats/strided/scumin","2CV":"@stdlib/stats-strided-scumin","2CW":"@stdlib/stats/strided/scuminabs","2CX":"@stdlib/stats-strided-scuminabs","2CY":"@stdlib/stats/strided/sdsmean","2CZ":"@stdlib/stats-strided-sdsmean","2Ca":"@stdlib/stats/strided/sdsmeanors","2Cb":"@stdlib/stats-strided-sdsmeanors","2Vs":"@stdlib/stats/strided/sdsnanmeanors","2Vt":"@stdlib/stats-strided-sdsnanmeanors","2Cc":"@stdlib/stats/strided/smax","2Cd":"@stdlib/stats-strided-smax","2Ce":"@stdlib/stats/strided/smaxabs","2Cf":"@stdlib/stats-strided-smaxabs","2Cg":"@stdlib/stats/strided/smaxabssorted","2Ch":"@stdlib/stats-strided-smaxabssorted","2Ci":"@stdlib/stats/strided/smaxsorted","2Cj":"@stdlib/stats-strided-smaxsorted","2Mu":"@stdlib/stats/strided/smean","2Mv":"@stdlib/stats-strided-smean","2R2":"@stdlib/stats/strided/smeankbn","2R3":"@stdlib/stats-strided-smeankbn","2R4":"@stdlib/stats/strided/smeankbn2","2R5":"@stdlib/stats-strided-smeankbn2","2Ck":"@stdlib/stats/strided/smeanli","2Cl":"@stdlib/stats-strided-smeanli","2R6":"@stdlib/stats/strided/smeanlipw","2R7":"@stdlib/stats-strided-smeanlipw","2R8":"@stdlib/stats/strided/smeanors","2R9":"@stdlib/stats-strided-smeanors","2Mw":"@stdlib/stats/strided/smeanpn","2Mx":"@stdlib/stats-strided-smeanpn","2Cm":"@stdlib/stats/strided/smeanpw","2Cn":"@stdlib/stats-strided-smeanpw","2Co":"@stdlib/stats/strided/smeanwd","2Cp":"@stdlib/stats-strided-smeanwd","2Cq":"@stdlib/stats/strided/smediansorted","2Cr":"@stdlib/stats-strided-smediansorted","2EG":"@stdlib/stats/strided/smidrange","2EH":"@stdlib/stats-strided-smidrange","2Cs":"@stdlib/stats/strided/smin","2Ct":"@stdlib/stats-strided-smin","2Cu":"@stdlib/stats/strided/sminabs","2Cv":"@stdlib/stats-strided-sminabs","2Cw":"@stdlib/stats/strided/sminsorted","2Cx":"@stdlib/stats-strided-sminsorted","2Cy":"@stdlib/stats/strided/smskmax","2Cz":"@stdlib/stats-strided-smskmax","2uW":"@stdlib/stats/strided/smskmaxabs","2uX":"@stdlib/stats-strided-smskmaxabs","2uY":"@stdlib/stats/strided/smskmidrange","2uZ":"@stdlib/stats-strided-smskmidrange","2D0":"@stdlib/stats/strided/smskmin","2D1":"@stdlib/stats-strided-smskmin","2D2":"@stdlib/stats/strided/smskrange","2D3":"@stdlib/stats-strided-smskrange","2D4":"@stdlib/stats/strided/snanmax","2D5":"@stdlib/stats-strided-snanmax","2D6":"@stdlib/stats/strided/snanmaxabs","2D7":"@stdlib/stats-strided-snanmaxabs","2Vu":"@stdlib/stats/strided/snanmean","2Vv":"@stdlib/stats-strided-snanmean","2D8":"@stdlib/stats/strided/snanmeanors","2D9":"@stdlib/stats-strided-snanmeanors","2DA":"@stdlib/stats/strided/snanmeanpn","2DB":"@stdlib/stats-strided-snanmeanpn","2DC":"@stdlib/stats/strided/snanmeanwd","2DD":"@stdlib/stats-strided-snanmeanwd","2ua":"@stdlib/stats/strided/snanmidrange","2ub":"@stdlib/stats-strided-snanmidrange","2DE":"@stdlib/stats/strided/snanmin","2DF":"@stdlib/stats-strided-snanmin","2DG":"@stdlib/stats/strided/snanminabs","2DH":"@stdlib/stats-strided-snanminabs","2K6":"@stdlib/stats/strided/snanmskmax","2K7":"@stdlib/stats-strided-snanmskmax","2uc":"@stdlib/stats/strided/snanmskmaxabs","2ud":"@stdlib/stats-strided-snanmskmaxabs","2ue":"@stdlib/stats/strided/snanmskmidrange","2uf":"@stdlib/stats-strided-snanmskmidrange","2K8":"@stdlib/stats/strided/snanmskmin","2K9":"@stdlib/stats-strided-snanmskmin","2ug":"@stdlib/stats/strided/snanmskminabs","2uh":"@stdlib/stats-strided-snanmskminabs","2KA":"@stdlib/stats/strided/snanmskrange","2KB":"@stdlib/stats-strided-snanmskrange","2DI":"@stdlib/stats/strided/snanrange","2DJ":"@stdlib/stats-strided-snanrange","2DK":"@stdlib/stats/strided/srange","2DL":"@stdlib/stats-strided-srange","2ui":"@stdlib/stats/strided/srangeabs","2uj":"@stdlib/stats-strided-srangeabs","2My":"@stdlib/stats/strided/sstdev","2Mz":"@stdlib/stats-strided-sstdev","2DM":"@stdlib/stats/strided/sstdevch","2DN":"@stdlib/stats-strided-sstdevch","2DO":"@stdlib/stats/strided/sstdevpn","2DP":"@stdlib/stats-strided-sstdevpn","2DQ":"@stdlib/stats/strided/sstdevtk","2DR":"@stdlib/stats-strided-sstdevtk","2Vw":"@stdlib/stats/strided/sstdevwd","2Vx":"@stdlib/stats-strided-sstdevwd","2EI":"@stdlib/stats/strided/sstdevyc","2EJ":"@stdlib/stats-strided-sstdevyc","2RA":"@stdlib/stats/strided/stdev","2RB":"@stdlib/stats-strided-stdev","2RC":"@stdlib/stats/strided/stdevch","2RD":"@stdlib/stats-strided-stdevch","2RE":"@stdlib/stats/strided/stdevpn","2RF":"@stdlib/stats-strided-stdevpn","2RG":"@stdlib/stats/strided/stdevtk","2RH":"@stdlib/stats-strided-stdevtk","2RI":"@stdlib/stats/strided/stdevwd","2RJ":"@stdlib/stats-strided-stdevwd","2RK":"@stdlib/stats/strided/stdevyc","2RL":"@stdlib/stats-strided-stdevyc","2N0":"@stdlib/stats/strided/svariance","2N1":"@stdlib/stats-strided-svariance","2EK":"@stdlib/stats/strided/svariancech","2EL":"@stdlib/stats-strided-svariancech","2EM":"@stdlib/stats/strided/svariancepn","2EN":"@stdlib/stats-strided-svariancepn","2EO":"@stdlib/stats/strided/svariancetk","2EP":"@stdlib/stats-strided-svariancetk","2N2":"@stdlib/stats/strided/svariancewd","2N3":"@stdlib/stats-strided-svariancewd","2EQ":"@stdlib/stats/strided/svarianceyc","2ER":"@stdlib/stats-strided-svarianceyc","2N4":"@stdlib/stats/strided/sztest","2N5":"@stdlib/stats-strided-sztest","2RM":"@stdlib/stats/strided/sztest2","2RN":"@stdlib/stats-strided-sztest2","2RO":"@stdlib/stats/strided/variance","2RP":"@stdlib/stats-strided-variance","2RQ":"@stdlib/stats/strided/variancech","2RR":"@stdlib/stats-strided-variancech","2RS":"@stdlib/stats/strided/variancepn","2RT":"@stdlib/stats-strided-variancepn","2RU":"@stdlib/stats/strided/variancetk","2RV":"@stdlib/stats-strided-variancetk","2RW":"@stdlib/stats/strided/variancewd","2RX":"@stdlib/stats-strided-variancewd","2RY":"@stdlib/stats/strided/varianceyc","2RZ":"@stdlib/stats-strided-varianceyc","2GY":"@stdlib/stats/strided/wasm/dmeanors","2GZ":"@stdlib/stats-strided-wasm-dmeanors","2Yq":"@stdlib/stats/strided/wasm/dmeanpw","2Yr":"@stdlib/stats-strided-wasm-dmeanpw","2KC":"@stdlib/stats/strided/wasm/dmeanwd","2KD":"@stdlib/stats-strided-wasm-dmeanwd","2WK":"@stdlib/stats/strided/wasm/dnanvariancewd","2WL":"@stdlib/stats-strided-wasm-dnanvariancewd","2N6":"@stdlib/stats/strided/ztest","2N7":"@stdlib/stats-strided-ztest","2Ra":"@stdlib/stats/strided/ztest2","2Rb":"@stdlib/stats-strided-ztest2","1Lq":"@stdlib/stats/ttest","1Lr":"@stdlib/stats-ttest","1Ls":"@stdlib/stats/ttest2","1Lt":"@stdlib/stats-ttest2","1Lu":"@stdlib/stats/vartest","1Lv":"@stdlib/stats-vartest","1Lw":"@stdlib/stats/wilcoxon","1Lx":"@stdlib/stats-wilcoxon","1Ly":"@stdlib/stats/ztest","1Lz":"@stdlib/stats-ztest","1M0":"@stdlib/stats/ztest2","1M1":"@stdlib/stats-ztest2","1M2":"@stdlib/streams/node/debug-sink","1M3":"@stdlib/streams-node-debug-sink","1M4":"@stdlib/streams/node/debug","1M5":"@stdlib/streams-node-debug","1M6":"@stdlib/streams/node/empty","1M7":"@stdlib/streams-node-empty","1M8":"@stdlib/streams/node/from-array","1M9":"@stdlib/streams-node-from-array","1MA":"@stdlib/streams/node/from-circular-array","1MB":"@stdlib/streams-node-from-circular-array","1MC":"@stdlib/streams/node/from-constant","1MD":"@stdlib/streams-node-from-constant","1ME":"@stdlib/streams/node/from-iterator","1MF":"@stdlib/streams-node-from-iterator","1MG":"@stdlib/streams/node/from-strided-array","1MH":"@stdlib/streams-node-from-strided-array","1MI":"@stdlib/streams/node/inspect-sink","1MJ":"@stdlib/streams-node-inspect-sink","1MK":"@stdlib/streams/node/inspect","1ML":"@stdlib/streams-node-inspect","1MM":"@stdlib/streams/node/join","1MN":"@stdlib/streams-node-join","1MO":"@stdlib/streams/node","1MP":"@stdlib/streams-node","1MQ":"@stdlib/streams/node/split","1MR":"@stdlib/streams-node-split","1MS":"@stdlib/streams/node/stderr","1MT":"@stdlib/streams-node-stderr","1MU":"@stdlib/streams/node/stdin","1MV":"@stdlib/streams-node-stdin","1MW":"@stdlib/streams/node/stdout","1MX":"@stdlib/streams-node-stdout","1MY":"@stdlib/streams/node/transform","1MZ":"@stdlib/streams-node-transform","1Mb":"@stdlib/streams","1Mc":"@stdlib/strided/base/binary-addon-dispatch","1Md":"@stdlib/strided-base-binary-addon-dispatch","1Me":"@stdlib/strided/base/binary-dtype-signatures","1Mf":"@stdlib/strided-base-binary-dtype-signatures","1Mg":"@stdlib/strided/base/binary-signature-callbacks","1Mh":"@stdlib/strided-base-binary-signature-callbacks","1Mi":"@stdlib/strided/base/binary","1Mj":"@stdlib/strided-base-binary","1Mk":"@stdlib/strided/base/cmap","1Ml":"@stdlib/strided-base-cmap","1Mm":"@stdlib/strided/base/dmap","1Mn":"@stdlib/strided-base-dmap","1Mo":"@stdlib/strided/base/dmap2","1Mp":"@stdlib/strided-base-dmap2","1Mq":"@stdlib/strided/base/dmskmap","1Mr":"@stdlib/strided-base-dmskmap","1Ms":"@stdlib/strided/base/dmskmap2","1Mt":"@stdlib/strided-base-dmskmap2","1Mu":"@stdlib/strided/base/dtype-enum2str","1Mv":"@stdlib/strided-base-dtype-enum2str","1Mw":"@stdlib/strided/base/dtype-resolve-enum","1Mx":"@stdlib/strided-base-dtype-resolve-enum","1My":"@stdlib/strided/base/dtype-resolve-str","1Mz":"@stdlib/strided-base-dtype-resolve-str","1N0":"@stdlib/strided/base/dtype-str2enum","1N1":"@stdlib/strided-base-dtype-str2enum","1N2":"@stdlib/strided/base/function-object","1N3":"@stdlib/strided-base-function-object","1N4":"@stdlib/strided/base/map-by","1N5":"@stdlib/strided-base-map-by","1N6":"@stdlib/strided/base/map-by2","1N7":"@stdlib/strided-base-map-by2","1N8":"@stdlib/strided/base/max-view-buffer-index","1N9":"@stdlib/strided-base-max-view-buffer-index","1NA":"@stdlib/strided/base/meta-data-props","1NB":"@stdlib/strided-base-meta-data-props","1NC":"@stdlib/strided/base/min-view-buffer-index","1ND":"@stdlib/strided-base-min-view-buffer-index","1fK":"@stdlib/strided/base/mskunary-addon-dispatch","1fL":"@stdlib/strided-base-mskunary-addon-dispatch","1fM":"@stdlib/strided/base/mskunary-dtype-signatures","1fN":"@stdlib/strided-base-mskunary-dtype-signatures","1fO":"@stdlib/strided/base/mskunary-signature-callbacks","1fP":"@stdlib/strided-base-mskunary-signature-callbacks","1NE":"@stdlib/strided/base/mskunary","1NF":"@stdlib/strided-base-mskunary","1fQ":"@stdlib/strided/base/nullary-addon-dispatch","1fR":"@stdlib/strided-base-nullary-addon-dispatch","1NG":"@stdlib/strided/base/nullary","1NH":"@stdlib/strided-base-nullary","1NI":"@stdlib/strided/base/offset-view","1NJ":"@stdlib/strided-base-offset-view","1NK":"@stdlib/strided/base","1NL":"@stdlib/strided-base","1NM":"@stdlib/strided/base/quaternary","1NN":"@stdlib/strided-base-quaternary","1NO":"@stdlib/strided/base/quinary","1NP":"@stdlib/strided-base-quinary","1w4":"@stdlib/strided/base/reinterpret-boolean","1w5":"@stdlib/strided-base-reinterpret-boolean","1s2":"@stdlib/strided/base/reinterpret-complex","1s3":"@stdlib/strided-base-reinterpret-complex","1NQ":"@stdlib/strided/base/reinterpret-complex128","1NR":"@stdlib/strided-base-reinterpret-complex128","1NS":"@stdlib/strided/base/reinterpret-complex64","1NT":"@stdlib/strided-base-reinterpret-complex64","2uk":"@stdlib/strided/base/reinterpret-float16","2ul":"@stdlib/strided-base-reinterpret-float16","1NU":"@stdlib/strided/base/smap","1NV":"@stdlib/strided-base-smap","1NW":"@stdlib/strided/base/smap2","1NX":"@stdlib/strided-base-smap2","1NY":"@stdlib/strided/base/smskmap","1NZ":"@stdlib/strided-base-smskmap","1Na":"@stdlib/strided/base/smskmap2","1Nb":"@stdlib/strided-base-smskmap2","1xU":"@stdlib/strided/base/stride2offset","1xV":"@stdlib/strided-base-stride2offset","1Nc":"@stdlib/strided/base/ternary","1Nd":"@stdlib/strided-base-ternary","1Ne":"@stdlib/strided/base/unary-addon-dispatch","1Nf":"@stdlib/strided-base-unary-addon-dispatch","1fS":"@stdlib/strided/base/unary-by","1fT":"@stdlib/strided-base-unary-by","1fU":"@stdlib/strided/base/unary-dtype-signatures","1fV":"@stdlib/strided-base-unary-dtype-signatures","1fW":"@stdlib/strided/base/unary-signature-callbacks","1fX":"@stdlib/strided-base-unary-signature-callbacks","1Ng":"@stdlib/strided/base/unary","1Nh":"@stdlib/strided-base-unary","21A":"@stdlib/strided/base/write-dataview","21B":"@stdlib/strided-base-write-dataview","1Ni":"@stdlib/strided/base/zmap","1Nj":"@stdlib/strided-base-zmap","1Nk":"@stdlib/strided/common","1Nl":"@stdlib/strided-common","1fY":"@stdlib/strided/dispatch-by","1fZ":"@stdlib/strided-dispatch-by","1Nm":"@stdlib/strided/dispatch","1Nn":"@stdlib/strided-dispatch","1No":"@stdlib/strided/dtypes","1Np":"@stdlib/strided-dtypes","1Nq":"@stdlib/strided/napi/addon-arguments","1Nr":"@stdlib/strided-napi-addon-arguments","1Ns":"@stdlib/strided/napi/binary","1Nt":"@stdlib/strided-napi-binary","1Nu":"@stdlib/strided/napi/cmap","1Nv":"@stdlib/strided-napi-cmap","1Nw":"@stdlib/strided/napi/dmap","1Nx":"@stdlib/strided-napi-dmap","1Ny":"@stdlib/strided/napi/dmap2","1Nz":"@stdlib/strided-napi-dmap2","1O0":"@stdlib/strided/napi/dmskmap","1O1":"@stdlib/strided-napi-dmskmap","1O2":"@stdlib/strided/napi/dmskmap2","1O3":"@stdlib/strided-napi-dmskmap2","1O4":"@stdlib/strided/napi/mskunary","1O5":"@stdlib/strided-napi-mskunary","1fa":"@stdlib/strided/napi/nullary","1fb":"@stdlib/strided-napi-nullary","1O6":"@stdlib/strided/napi","1O7":"@stdlib/strided-napi","1O8":"@stdlib/strided/napi/smap","1O9":"@stdlib/strided-napi-smap","1OA":"@stdlib/strided/napi/smap2","1OB":"@stdlib/strided-napi-smap2","1OC":"@stdlib/strided/napi/smskmap","1OD":"@stdlib/strided-napi-smskmap","1OE":"@stdlib/strided/napi/smskmap2","1OF":"@stdlib/strided-napi-smskmap2","1OG":"@stdlib/strided/napi/unary","1OH":"@stdlib/strided-napi-unary","1OI":"@stdlib/strided/napi/zmap","1OJ":"@stdlib/strided-napi-zmap","1OL":"@stdlib/strided","1OM":"@stdlib/string/acronym","1ON":"@stdlib/string-acronym","1my":"@stdlib/string/base/altcase","1mz":"@stdlib/string-base-altcase","21C":"@stdlib/string/base/atob","21D":"@stdlib/string-base-atob","21m":"@stdlib/string/base/base64-to-uint8array","21n":"@stdlib/string-base-base64-to-uint8array","1fc":"@stdlib/string/base/camelcase","1fd":"@stdlib/string-base-camelcase","1fe":"@stdlib/string/base/capitalize","1ff":"@stdlib/string-base-capitalize","1fg":"@stdlib/string/base/code-point-at","1fh":"@stdlib/string-base-code-point-at","2Ys":"@stdlib/string/base/concat","2Yt":"@stdlib/string-base-concat","1fi":"@stdlib/string/base/constantcase","1fj":"@stdlib/string-base-constantcase","1n0":"@stdlib/string/base/distances/hamming","1n1":"@stdlib/string-base-distances-hamming","1fk":"@stdlib/string/base/distances/levenshtein","1fl":"@stdlib/string-base-distances-levenshtein","1fm":"@stdlib/string/base/distances","1fn":"@stdlib/string-base-distances","1fo":"@stdlib/string/base/dotcase","1fp":"@stdlib/string-base-dotcase","1fq":"@stdlib/string/base/ends-with","1fr":"@stdlib/string-base-ends-with","1fs":"@stdlib/string/base/first-code-point","1ft":"@stdlib/string-base-first-code-point","1fu":"@stdlib/string/base/first-grapheme-cluster","1fv":"@stdlib/string-base-first-grapheme-cluster","1fw":"@stdlib/string/base/first","1fx":"@stdlib/string-base-first","1vS":"@stdlib/string/base/for-each-code-point-right","1vT":"@stdlib/string-base-for-each-code-point-right","1fy":"@stdlib/string/base/for-each-code-point","1fz":"@stdlib/string-base-for-each-code-point","1g0":"@stdlib/string/base/for-each-grapheme-cluster","1g1":"@stdlib/string-base-for-each-grapheme-cluster","1sm":"@stdlib/string/base/for-each-right","1sn":"@stdlib/string-base-for-each-right","1g2":"@stdlib/string/base/for-each","1g3":"@stdlib/string-base-for-each","1OO":"@stdlib/string/base/format-interpolate","1OP":"@stdlib/string-base-format-interpolate","1OQ":"@stdlib/string/base/format-tokenize","1OR":"@stdlib/string-base-format-tokenize","1g4":"@stdlib/string/base/headercase","1g5":"@stdlib/string-base-headercase","1g6":"@stdlib/string/base/invcase","1g7":"@stdlib/string-base-invcase","1g8":"@stdlib/string/base/kebabcase","1g9":"@stdlib/string-base-kebabcase","1u0":"@stdlib/string/base/last-code-point","1u1":"@stdlib/string-base-last-code-point","1u2":"@stdlib/string/base/last-grapheme-cluster","1u3":"@stdlib/string-base-last-grapheme-cluster","1u4":"@stdlib/string/base/last","1u5":"@stdlib/string-base-last","1gA":"@stdlib/string/base/left-pad","1gB":"@stdlib/string-base-left-pad","1gC":"@stdlib/string/base/left-trim","1gD":"@stdlib/string-base-left-trim","1gE":"@stdlib/string/base/lowercase","1gF":"@stdlib/string-base-lowercase","1OS":"@stdlib/string/base","1OT":"@stdlib/string-base","1gG":"@stdlib/string/base/pascalcase","1gH":"@stdlib/string-base-pascalcase","1gI":"@stdlib/string/base/percent-encode","1gJ":"@stdlib/string-base-percent-encode","1gK":"@stdlib/string/base/remove-first-code-point","1gL":"@stdlib/string-base-remove-first-code-point","1gM":"@stdlib/string/base/remove-first-grapheme-cluster","1gN":"@stdlib/string-base-remove-first-grapheme-cluster","1gO":"@stdlib/string/base/remove-first","1gP":"@stdlib/string-base-remove-first","1jI":"@stdlib/string/base/remove-last-code-point","1jJ":"@stdlib/string-base-remove-last-code-point","1jK":"@stdlib/string/base/remove-last-grapheme-cluster","1jL":"@stdlib/string-base-remove-last-grapheme-cluster","1jM":"@stdlib/string/base/remove-last","1jN":"@stdlib/string-base-remove-last","1gQ":"@stdlib/string/base/repeat","1gR":"@stdlib/string-base-repeat","1so":"@stdlib/string/base/replace-after-last","1sp":"@stdlib/string-base-replace-after-last","1sq":"@stdlib/string/base/replace-after","1sr":"@stdlib/string-base-replace-after","1ss":"@stdlib/string/base/replace-before-last","1st":"@stdlib/string-base-replace-before-last","1gS":"@stdlib/string/base/replace-before","1gT":"@stdlib/string-base-replace-before","1gU":"@stdlib/string/base/replace","1gV":"@stdlib/string-base-replace","1lW":"@stdlib/string/base/reverse-code-points","1lX":"@stdlib/string-base-reverse-code-points","1lY":"@stdlib/string/base/reverse-grapheme-clusters","1lZ":"@stdlib/string-base-reverse-grapheme-clusters","1la":"@stdlib/string/base/reverse","1lb":"@stdlib/string-base-reverse","1gW":"@stdlib/string/base/right-pad","1gX":"@stdlib/string-base-right-pad","1gY":"@stdlib/string/base/right-trim","1gZ":"@stdlib/string-base-right-trim","2ES":"@stdlib/string/base/slice-code-points","2ET":"@stdlib/string-base-slice-code-points","2DS":"@stdlib/string/base/slice-grapheme-clusters","2DT":"@stdlib/string-base-slice-grapheme-clusters","2DU":"@stdlib/string/base/slice","2DV":"@stdlib/string-base-slice","1ga":"@stdlib/string/base/snakecase","1gb":"@stdlib/string-base-snakecase","1gc":"@stdlib/string/base/startcase","1gd":"@stdlib/string-base-startcase","1ge":"@stdlib/string/base/starts-with","1gf":"@stdlib/string-base-starts-with","1u6":"@stdlib/string/base/stickycase","1u7":"@stdlib/string-base-stickycase","1gg":"@stdlib/string/base/trim","1gh":"@stdlib/string-base-trim","1lc":"@stdlib/string/base/truncate-middle","1ld":"@stdlib/string-base-truncate-middle","1gi":"@stdlib/string/base/uncapitalize","1gj":"@stdlib/string-base-uncapitalize","1gk":"@stdlib/string/base/uppercase","1gl":"@stdlib/string-base-uppercase","1OU":"@stdlib/string/camelcase","1OV":"@stdlib/string-camelcase","1OW":"@stdlib/string/capitalize","1OX":"@stdlib/string-capitalize","1OY":"@stdlib/string/code-point-at","1OZ":"@stdlib/string-code-point-at","1Oa":"@stdlib/string/constantcase","1Ob":"@stdlib/string-constantcase","1gm":"@stdlib/string/dotcase","1gn":"@stdlib/string-dotcase","1Oc":"@stdlib/string/ends-with","1Od":"@stdlib/string-ends-with","1go":"@stdlib/string/first","1gp":"@stdlib/string-first","1gq":"@stdlib/string/for-each","1gr":"@stdlib/string-for-each","1Oe":"@stdlib/string/format","1Of":"@stdlib/string-format","1Og":"@stdlib/string/from-code-point","1Oh":"@stdlib/string-from-code-point","1gs":"@stdlib/string/headercase","1gt":"@stdlib/string-headercase","1Oi":"@stdlib/string/kebabcase","1Oj":"@stdlib/string-kebabcase","1vU":"@stdlib/string/last","1vV":"@stdlib/string-last","1Ok":"@stdlib/string/left-pad","1Ol":"@stdlib/string-left-pad","1Om":"@stdlib/string/left-trim-n","1On":"@stdlib/string-left-trim-n","1Oo":"@stdlib/string/left-trim","1Op":"@stdlib/string-left-trim","1Oq":"@stdlib/string/lowercase","1Or":"@stdlib/string-lowercase","1le":"@stdlib/string/next-code-point-index","1lf":"@stdlib/string-next-code-point-index","1Os":"@stdlib/string/next-grapheme-cluster-break","1Ot":"@stdlib/string-next-grapheme-cluster-break","2DW":"@stdlib/string/num-code-points","2DX":"@stdlib/string-num-code-points","1Ou":"@stdlib/string/num-grapheme-clusters","1Ov":"@stdlib/string-num-grapheme-clusters","1gu":"@stdlib/string/num2words","1gv":"@stdlib/string-num2words","1Ox":"@stdlib/string","1Oy":"@stdlib/string/pad","1Oz":"@stdlib/string-pad","1P0":"@stdlib/string/pascalcase","1P1":"@stdlib/string-pascalcase","1P2":"@stdlib/string/percent-encode","1P3":"@stdlib/string-percent-encode","1P4":"@stdlib/string/prev-grapheme-cluster-break","1P5":"@stdlib/string-prev-grapheme-cluster-break","1P6":"@stdlib/string/remove-first","1P7":"@stdlib/string-remove-first","1P8":"@stdlib/string/remove-last","1P9":"@stdlib/string-remove-last","1PA":"@stdlib/string/remove-punctuation","1PB":"@stdlib/string-remove-punctuation","1PC":"@stdlib/string/remove-utf8-bom","1PD":"@stdlib/string-remove-utf8-bom","1PE":"@stdlib/string/remove-words","1PF":"@stdlib/string-remove-words","1PG":"@stdlib/string/repeat","1PH":"@stdlib/string-repeat","1gw":"@stdlib/string/replace-before","1gx":"@stdlib/string-replace-before","1PI":"@stdlib/string/replace","1PJ":"@stdlib/string-replace","1PK":"@stdlib/string/reverse","1PL":"@stdlib/string-reverse","1PM":"@stdlib/string/right-pad","1PN":"@stdlib/string-right-pad","1PO":"@stdlib/string/right-trim-n","1PP":"@stdlib/string-right-trim-n","1PQ":"@stdlib/string/right-trim","1PR":"@stdlib/string-right-trim","1PS":"@stdlib/string/snakecase","1PT":"@stdlib/string-snakecase","1PU":"@stdlib/string/split-grapheme-clusters","1PV":"@stdlib/string-split-grapheme-clusters","1PW":"@stdlib/string/startcase","1PX":"@stdlib/string-startcase","1PY":"@stdlib/string/starts-with","1PZ":"@stdlib/string-starts-with","1Pa":"@stdlib/string/substring-after-last","1Pb":"@stdlib/string-substring-after-last","1Pc":"@stdlib/string/substring-after","1Pd":"@stdlib/string-substring-after","1Pe":"@stdlib/string/substring-before-last","1Pf":"@stdlib/string-substring-before-last","1Pg":"@stdlib/string/substring-before","1Ph":"@stdlib/string-substring-before","1gy":"@stdlib/string/to-grapheme-cluster-iterator-right","1gz":"@stdlib/string-to-grapheme-cluster-iterator-right","1h0":"@stdlib/string/to-grapheme-cluster-iterator","1h1":"@stdlib/string-to-grapheme-cluster-iterator","1u8":"@stdlib/string/to-well-formed","1u9":"@stdlib/string-to-well-formed","1Pi":"@stdlib/string/tools/grapheme-cluster-break","1Pj":"@stdlib/string-tools-grapheme-cluster-break","1Pk":"@stdlib/string/tools","1Pl":"@stdlib/string-tools","1Pm":"@stdlib/string/trim","1Pn":"@stdlib/string-trim","1Po":"@stdlib/string/truncate-middle","1Pp":"@stdlib/string-truncate-middle","1Pq":"@stdlib/string/truncate","1Pr":"@stdlib/string-truncate","1Ps":"@stdlib/string/uncapitalize","1Pt":"@stdlib/string-uncapitalize","1Pu":"@stdlib/string/uppercase","1Pv":"@stdlib/string-uppercase","1Pw":"@stdlib/string/utf16-to-utf8-array","1Px":"@stdlib/string-utf16-to-utf8-array","1Py":"@stdlib/symbol/async-iterator","1Pz":"@stdlib/symbol-async-iterator","1Q0":"@stdlib/symbol/ctor","1Q1":"@stdlib/symbol-ctor","2YM":"@stdlib/symbol/has-instance","2YN":"@stdlib/symbol-has-instance","2XW":"@stdlib/symbol/is-concat-spreadable","2XX":"@stdlib/symbol-is-concat-spreadable","1Q2":"@stdlib/symbol/iterator","1Q3":"@stdlib/symbol-iterator","1Q5":"@stdlib/symbol","2Yu":"@stdlib/symbol/replace","2Yv":"@stdlib/symbol-replace","2YO":"@stdlib/symbol/to-primitive","2YP":"@stdlib/symbol-to-primitive","1h2":"@stdlib/time/base","1h3":"@stdlib/time-base","1h4":"@stdlib/time/base/parse-duration","1h5":"@stdlib/time-base-parse-duration","1h6":"@stdlib/time/current-year","1h7":"@stdlib/time-current-year","1Q6":"@stdlib/time/day-of-quarter","1Q7":"@stdlib/time-day-of-quarter","1Q8":"@stdlib/time/day-of-year","1Q9":"@stdlib/time-day-of-year","1QA":"@stdlib/time/days-in-month","1QB":"@stdlib/time-days-in-month","1QC":"@stdlib/time/days-in-year","1QD":"@stdlib/time-days-in-year","1h8":"@stdlib/time/duration2ms","1h9":"@stdlib/time-duration2ms","1QE":"@stdlib/time/hours-in-month","1QF":"@stdlib/time-hours-in-month","1QG":"@stdlib/time/hours-in-year","1QH":"@stdlib/time-hours-in-year","1QI":"@stdlib/time/iso-weeks-in-year","1QJ":"@stdlib/time-iso-weeks-in-year","1QK":"@stdlib/time/minutes-in-month","1QL":"@stdlib/time-minutes-in-month","1QM":"@stdlib/time/minutes-in-year","1QN":"@stdlib/time-minutes-in-year","1hA":"@stdlib/time/ms2duration","1hB":"@stdlib/time-ms2duration","1QO":"@stdlib/time/now","1QP":"@stdlib/time-now","1QR":"@stdlib/time","1QS":"@stdlib/time/quarter-of-year","1QT":"@stdlib/time-quarter-of-year","1QU":"@stdlib/time/seconds-in-month","1QV":"@stdlib/time-seconds-in-month","1QW":"@stdlib/time/seconds-in-year","1QX":"@stdlib/time-seconds-in-year","1QY":"@stdlib/time/tic","1QZ":"@stdlib/time-tic","1Qa":"@stdlib/time/toc","1Qb":"@stdlib/time-toc","1Qd":"@stdlib/types","1Qe":"@stdlib/utils/any-by-right","1Qf":"@stdlib/utils-any-by-right","1Qg":"@stdlib/utils/any-by","1Qh":"@stdlib/utils-any-by","1Qi":"@stdlib/utils/any","1Qj":"@stdlib/utils-any","1Qk":"@stdlib/utils/append","1Ql":"@stdlib/utils-append","1Qm":"@stdlib/utils/argument-function","1Qn":"@stdlib/utils-argument-function","1Qo":"@stdlib/utils/async/any-by-right","1Qp":"@stdlib/utils-async-any-by-right","1Qq":"@stdlib/utils/async/any-by","1Qr":"@stdlib/utils-async-any-by","1Qs":"@stdlib/utils/async/bifurcate-by","1Qt":"@stdlib/utils-async-bifurcate-by","1Qu":"@stdlib/utils/async/compose","1Qv":"@stdlib/utils-async-compose","1Qw":"@stdlib/utils/async/count-by","1Qx":"@stdlib/utils-async-count-by","1Qy":"@stdlib/utils/async/do-until","1Qz":"@stdlib/utils-async-do-until","1R0":"@stdlib/utils/async/do-while","1R1":"@stdlib/utils-async-do-while","1R2":"@stdlib/utils/async/every-by-right","1R3":"@stdlib/utils-async-every-by-right","1R4":"@stdlib/utils/async/every-by","1R5":"@stdlib/utils-async-every-by","1R6":"@stdlib/utils/async/for-each-right","1R7":"@stdlib/utils-async-for-each-right","1R8":"@stdlib/utils/async/for-each","1R9":"@stdlib/utils-async-for-each","1RA":"@stdlib/utils/async/function-sequence","1RB":"@stdlib/utils-async-function-sequence","1RC":"@stdlib/utils/async/group-by","1RD":"@stdlib/utils-async-group-by","1RE":"@stdlib/utils/async/if-else","1RF":"@stdlib/utils-async-if-else","1RG":"@stdlib/utils/async/if-then","1RH":"@stdlib/utils-async-if-then","1RI":"@stdlib/utils/async/inmap-right","1RJ":"@stdlib/utils-async-inmap-right","1RK":"@stdlib/utils/async/inmap","1RL":"@stdlib/utils-async-inmap","1RM":"@stdlib/utils/async/map-function","1RN":"@stdlib/utils-async-map-function","1RO":"@stdlib/utils/async/map-keys","1RP":"@stdlib/utils-async-map-keys","1RQ":"@stdlib/utils/async/map-values","1RR":"@stdlib/utils-async-map-values","1RS":"@stdlib/utils/async/none-by-right","1RT":"@stdlib/utils-async-none-by-right","1RU":"@stdlib/utils/async/none-by","1RV":"@stdlib/utils-async-none-by","1RW":"@stdlib/utils/async","1RX":"@stdlib/utils-async","1xW":"@stdlib/utils/async/parallel","1xX":"@stdlib/utils-async-parallel","1RY":"@stdlib/utils/async/reduce-right","1RZ":"@stdlib/utils-async-reduce-right","1Ra":"@stdlib/utils/async/reduce","1Rb":"@stdlib/utils-async-reduce","1Rc":"@stdlib/utils/async/series-waterfall","1Rd":"@stdlib/utils-async-series-waterfall","1Re":"@stdlib/utils/async/some-by-right","1Rf":"@stdlib/utils-async-some-by-right","1Rg":"@stdlib/utils/async/some-by","1Rh":"@stdlib/utils-async-some-by","1Ri":"@stdlib/utils/async/tabulate-by","1Rj":"@stdlib/utils-async-tabulate-by","1Rk":"@stdlib/utils/async/try-catch","1Rl":"@stdlib/utils-async-try-catch","1Rm":"@stdlib/utils/async/try-then","1Rn":"@stdlib/utils-async-try-then","1Ro":"@stdlib/utils/async/until","1Rp":"@stdlib/utils-async-until","1Rq":"@stdlib/utils/async/while","1Rr":"@stdlib/utils-async-while","1Rs":"@stdlib/utils/bifurcate-by","1Rt":"@stdlib/utils-bifurcate-by","1Ry":"@stdlib/utils/bifurcate","1Rz":"@stdlib/utils-bifurcate","1SA":"@stdlib/utils/compose","1SB":"@stdlib/utils-compose","1SC":"@stdlib/utils/constant-function","1SD":"@stdlib/utils-constant-function","1SE":"@stdlib/utils/constructor-name","1SF":"@stdlib/utils-constructor-name","1SG":"@stdlib/utils/convert-path","1SH":"@stdlib/utils-convert-path","1SI":"@stdlib/utils/copy","1SJ":"@stdlib/utils-copy","1SK":"@stdlib/utils/count-by","1SL":"@stdlib/utils-count-by","1SM":"@stdlib/utils/curry-right","1SN":"@stdlib/utils-curry-right","1SO":"@stdlib/utils/curry","1SP":"@stdlib/utils-curry","1hC":"@stdlib/utils/decorate-after","1hD":"@stdlib/utils-decorate-after","1SS":"@stdlib/utils/deep-pluck","1ST":"@stdlib/utils-deep-pluck","1SW":"@stdlib/utils/define-configurable-read-only-accessor","1SX":"@stdlib/utils-define-configurable-read-only-accessor","1SY":"@stdlib/utils/define-configurable-read-only-property","1SZ":"@stdlib/utils-define-configurable-read-only-property","1Sa":"@stdlib/utils/define-configurable-read-write-accessor","1Sb":"@stdlib/utils-define-configurable-read-write-accessor","1Sc":"@stdlib/utils/define-configurable-write-only-accessor","1Sd":"@stdlib/utils-define-configurable-write-only-accessor","1Se":"@stdlib/utils/define-memoized-configurable-read-only-property","1Sf":"@stdlib/utils-define-memoized-configurable-read-only-property","1Sg":"@stdlib/utils/define-memoized-property","1Sh":"@stdlib/utils-define-memoized-property","1Si":"@stdlib/utils/define-memoized-read-only-property","1Sj":"@stdlib/utils-define-memoized-read-only-property","1Sk":"@stdlib/utils/define-nonenumerable-property","1Sl":"@stdlib/utils-define-nonenumerable-property","1Sm":"@stdlib/utils/define-nonenumerable-read-only-accessor","1Sn":"@stdlib/utils-define-nonenumerable-read-only-accessor","1So":"@stdlib/utils/define-nonenumerable-read-only-property","1Sp":"@stdlib/utils-define-nonenumerable-read-only-property","1Sq":"@stdlib/utils/define-nonenumerable-read-write-accessor","1Sr":"@stdlib/utils-define-nonenumerable-read-write-accessor","1Ss":"@stdlib/utils/define-nonenumerable-write-only-accessor","1St":"@stdlib/utils-define-nonenumerable-write-only-accessor","1Su":"@stdlib/utils/define-properties","1Sv":"@stdlib/utils-define-properties","1Sw":"@stdlib/utils/define-property","1Sx":"@stdlib/utils-define-property","1Sy":"@stdlib/utils/define-read-only-accessor","1Sz":"@stdlib/utils-define-read-only-accessor","1T0":"@stdlib/utils/define-read-only-property","1T1":"@stdlib/utils-define-read-only-property","1T2":"@stdlib/utils/define-read-write-accessor","1T3":"@stdlib/utils-define-read-write-accessor","1T4":"@stdlib/utils/define-write-only-accessor","1T5":"@stdlib/utils-define-write-only-accessor","1T6":"@stdlib/utils/dirname","1T7":"@stdlib/utils-dirname","1T8":"@stdlib/utils/do-until-each-right","1T9":"@stdlib/utils-do-until-each-right","1TA":"@stdlib/utils/do-until-each","1TB":"@stdlib/utils-do-until-each","1TC":"@stdlib/utils/do-until","1TD":"@stdlib/utils-do-until","1TE":"@stdlib/utils/do-while-each-right","1TF":"@stdlib/utils-do-while-each-right","1TG":"@stdlib/utils/do-while-each","1TH":"@stdlib/utils-do-while-each","1TI":"@stdlib/utils/do-while","1TJ":"@stdlib/utils-do-while","1hE":"@stdlib/utils/dsv/base","1hF":"@stdlib/utils-dsv-base","1hG":"@stdlib/utils/dsv/base/parse","1hH":"@stdlib/utils-dsv-base-parse","1hI":"@stdlib/utils/dsv","1hJ":"@stdlib/utils-dsv","1TM":"@stdlib/utils/entries-in","1TN":"@stdlib/utils-entries-in","1TO":"@stdlib/utils/entries","1TP":"@stdlib/utils-entries","1TQ":"@stdlib/utils/enumerable-properties-in","1TR":"@stdlib/utils-enumerable-properties-in","1TS":"@stdlib/utils/enumerable-properties","1TT":"@stdlib/utils-enumerable-properties","1TU":"@stdlib/utils/enumerable-property-symbols-in","1TV":"@stdlib/utils-enumerable-property-symbols-in","1TW":"@stdlib/utils/enumerable-property-symbols","1TX":"@stdlib/utils-enumerable-property-symbols","1TY":"@stdlib/utils/escape-regexp-string","1TZ":"@stdlib/utils-escape-regexp-string","1Ta":"@stdlib/utils/eval","1Tb":"@stdlib/utils-eval","1Tc":"@stdlib/utils/every-by-right","1Td":"@stdlib/utils-every-by-right","1Te":"@stdlib/utils/every-by","1Tf":"@stdlib/utils-every-by","1Tg":"@stdlib/utils/every","1Th":"@stdlib/utils-every","1Ti":"@stdlib/utils/extname","1Tj":"@stdlib/utils-extname","1Tm":"@stdlib/utils/filter-arguments","1Tn":"@stdlib/utils-filter-arguments","1To":"@stdlib/utils/find","1Tp":"@stdlib/utils-find","1Tq":"@stdlib/utils/flatten-array","1Tr":"@stdlib/utils-flatten-array","1Ts":"@stdlib/utils/flatten-object","1Tt":"@stdlib/utils-flatten-object","1Tu":"@stdlib/utils/for-each-right","1Tv":"@stdlib/utils-for-each-right","1Tw":"@stdlib/utils/for-each","1Tx":"@stdlib/utils-for-each","1U2":"@stdlib/utils/from-entries","1U3":"@stdlib/utils-from-entries","1U4":"@stdlib/utils/function-name","1U5":"@stdlib/utils-function-name","1U6":"@stdlib/utils/function-sequence","1U7":"@stdlib/utils-function-sequence","1U8":"@stdlib/utils/get-prototype-of","1U9":"@stdlib/utils-get-prototype-of","1UA":"@stdlib/utils/global","1UB":"@stdlib/utils-global","1UC":"@stdlib/utils/group-by","1UD":"@stdlib/utils-group-by","1UE":"@stdlib/utils/group-in","1UF":"@stdlib/utils-group-in","1UG":"@stdlib/utils/group-own","1UH":"@stdlib/utils-group-own","1UI":"@stdlib/utils/group","1UJ":"@stdlib/utils-group","1UK":"@stdlib/utils/identity-function","1UL":"@stdlib/utils-identity-function","1UM":"@stdlib/utils/if-else","1UN":"@stdlib/utils-if-else","1UO":"@stdlib/utils/if-then","1UP":"@stdlib/utils-if-then","1UQ":"@stdlib/utils/index-of","1UR":"@stdlib/utils-index-of","1US":"@stdlib/utils/inherit","1UT":"@stdlib/utils-inherit","1UU":"@stdlib/utils/inherited-enumerable-properties","1UV":"@stdlib/utils-inherited-enumerable-properties","1UW":"@stdlib/utils/inherited-enumerable-property-symbols","1UX":"@stdlib/utils-inherited-enumerable-property-symbols","1UY":"@stdlib/utils/inherited-keys","1UZ":"@stdlib/utils-inherited-keys","1Ua":"@stdlib/utils/inherited-nonenumerable-properties","1Ub":"@stdlib/utils-inherited-nonenumerable-properties","1Uc":"@stdlib/utils/inherited-nonenumerable-property-names","1Ud":"@stdlib/utils-inherited-nonenumerable-property-names","1Ue":"@stdlib/utils/inherited-nonenumerable-property-symbols","1Uf":"@stdlib/utils-inherited-nonenumerable-property-symbols","1Ug":"@stdlib/utils/inherited-properties","1Uh":"@stdlib/utils-inherited-properties","1Ui":"@stdlib/utils/inherited-property-descriptor","1Uj":"@stdlib/utils-inherited-property-descriptor","1Uk":"@stdlib/utils/inherited-property-descriptors","1Ul":"@stdlib/utils-inherited-property-descriptors","1Um":"@stdlib/utils/inherited-property-names","1Un":"@stdlib/utils-inherited-property-names","1Uo":"@stdlib/utils/inherited-property-symbols","1Up":"@stdlib/utils-inherited-property-symbols","1Uq":"@stdlib/utils/inherited-writable-properties","1Ur":"@stdlib/utils-inherited-writable-properties","1Us":"@stdlib/utils/inherited-writable-property-names","1Ut":"@stdlib/utils-inherited-writable-property-names","1Uu":"@stdlib/utils/inherited-writable-property-symbols","1Uv":"@stdlib/utils-inherited-writable-property-symbols","1Uw":"@stdlib/utils/inmap-right","1Ux":"@stdlib/utils-inmap-right","1Uy":"@stdlib/utils/inmap","1Uz":"@stdlib/utils-inmap","1V0":"@stdlib/utils/key-by-right","1V1":"@stdlib/utils-key-by-right","1V2":"@stdlib/utils/key-by","1V3":"@stdlib/utils-key-by","1V4":"@stdlib/utils/keys-in","1V5":"@stdlib/utils-keys-in","1V6":"@stdlib/utils/keys","1V7":"@stdlib/utils-keys","1V8":"@stdlib/utils/library-manifest","1V9":"@stdlib/utils-library-manifest","1VE":"@stdlib/utils/map-arguments","1VF":"@stdlib/utils-map-arguments","1VG":"@stdlib/utils/map-function","1VH":"@stdlib/utils-map-function","1VI":"@stdlib/utils/map-keys","1VJ":"@stdlib/utils-map-keys","1VK":"@stdlib/utils/map-reduce-right","1VL":"@stdlib/utils-map-reduce-right","1VM":"@stdlib/utils/map-reduce","1VN":"@stdlib/utils-map-reduce","1VO":"@stdlib/utils/map-right","1VP":"@stdlib/utils-map-right","1VQ":"@stdlib/utils/map-values","1VR":"@stdlib/utils-map-values","1VS":"@stdlib/utils/map","1VT":"@stdlib/utils-map","1VU":"@stdlib/utils/map2-right","1VV":"@stdlib/utils-map2-right","1VW":"@stdlib/utils/map2","1VX":"@stdlib/utils-map2","1VY":"@stdlib/utils/map2d","1VZ":"@stdlib/utils-map2d","1Va":"@stdlib/utils/map3d","1Vb":"@stdlib/utils-map3d","1Vc":"@stdlib/utils/map4d","1Vd":"@stdlib/utils-map4d","1Ve":"@stdlib/utils/map5d","1Vf":"@stdlib/utils-map5d","1Vg":"@stdlib/utils/mask-arguments","1Vh":"@stdlib/utils-mask-arguments","1Vi":"@stdlib/utils/memoize","1Vj":"@stdlib/utils-memoize","1Vk":"@stdlib/utils/merge","1Vl":"@stdlib/utils-merge","1Vq":"@stdlib/utils/nary-function","1Vr":"@stdlib/utils-nary-function","1Vs":"@stdlib/utils/native-class","1Vt":"@stdlib/utils-native-class","1Vu":"@stdlib/utils/next-tick","1Vv":"@stdlib/utils-next-tick","1Vw":"@stdlib/utils/none-by-right","1Vx":"@stdlib/utils-none-by-right","1Vy":"@stdlib/utils/none-by","1Vz":"@stdlib/utils-none-by","1W0":"@stdlib/utils/none","1W1":"@stdlib/utils-none","1W2":"@stdlib/utils/nonenumerable-properties-in","1W3":"@stdlib/utils-nonenumerable-properties-in","1W4":"@stdlib/utils/nonenumerable-properties","1W5":"@stdlib/utils-nonenumerable-properties","1W6":"@stdlib/utils/nonenumerable-property-names-in","1W7":"@stdlib/utils-nonenumerable-property-names-in","1W8":"@stdlib/utils/nonenumerable-property-names","1W9":"@stdlib/utils-nonenumerable-property-names","1WA":"@stdlib/utils/nonenumerable-property-symbols-in","1WB":"@stdlib/utils-nonenumerable-property-symbols-in","1WC":"@stdlib/utils/nonenumerable-property-symbols","1WD":"@stdlib/utils-nonenumerable-property-symbols","1WE":"@stdlib/utils/nonindex-keys","1WF":"@stdlib/utils-nonindex-keys","1WG":"@stdlib/utils/noop","1WH":"@stdlib/utils-noop","1WM":"@stdlib/utils/omit-by","1WN":"@stdlib/utils-omit-by","1WO":"@stdlib/utils/omit","1WP":"@stdlib/utils-omit","1WQ":"@stdlib/utils/open-url","1WR":"@stdlib/utils-open-url","1WT":"@stdlib/utils","1WU":"@stdlib/utils/papply-right","1WV":"@stdlib/utils-papply-right","1WW":"@stdlib/utils/papply","1WX":"@stdlib/utils-papply","1WY":"@stdlib/utils/parallel","1WZ":"@stdlib/utils-parallel","1Wa":"@stdlib/utils/parse-json","1Wb":"@stdlib/utils-parse-json","1uI":"@stdlib/utils/parse-ndjson","1uJ":"@stdlib/utils-parse-ndjson","1Wc":"@stdlib/utils/pick-arguments","1Wd":"@stdlib/utils-pick-arguments","1We":"@stdlib/utils/pick-by","1Wf":"@stdlib/utils-pick-by","1Wg":"@stdlib/utils/pick","1Wh":"@stdlib/utils-pick","1Wi":"@stdlib/utils/pluck","1Wj":"@stdlib/utils-pluck","1Wk":"@stdlib/utils/pop","1Wl":"@stdlib/utils-pop","1Wm":"@stdlib/utils/prepend","1Wn":"@stdlib/utils-prepend","1Wo":"@stdlib/utils/properties-in","1Wp":"@stdlib/utils-properties-in","1Wq":"@stdlib/utils/properties","1Wr":"@stdlib/utils-properties","1Ws":"@stdlib/utils/property-descriptor-in","1Wt":"@stdlib/utils-property-descriptor-in","1Wu":"@stdlib/utils/property-descriptor","1Wv":"@stdlib/utils-property-descriptor","1Ww":"@stdlib/utils/property-descriptors-in","1Wx":"@stdlib/utils-property-descriptors-in","1Wy":"@stdlib/utils/property-descriptors","1Wz":"@stdlib/utils-property-descriptors","1X0":"@stdlib/utils/property-names-in","1X1":"@stdlib/utils-property-names-in","1X2":"@stdlib/utils/property-names","1X3":"@stdlib/utils-property-names","1X4":"@stdlib/utils/property-symbols-in","1X5":"@stdlib/utils-property-symbols-in","1X6":"@stdlib/utils/property-symbols","1X7":"@stdlib/utils-property-symbols","1X8":"@stdlib/utils/push","1X9":"@stdlib/utils-push","1XA":"@stdlib/utils/real-max","1XB":"@stdlib/utils-real-max","1XC":"@stdlib/utils/real-min","1XD":"@stdlib/utils-real-min","1XE":"@stdlib/utils/reduce-right","1XF":"@stdlib/utils-reduce-right","1XG":"@stdlib/utils/reduce","1XH":"@stdlib/utils-reduce","1XI":"@stdlib/utils/reduce2d","1XJ":"@stdlib/utils-reduce2d","1XK":"@stdlib/utils/regexp-from-string","1XL":"@stdlib/utils-regexp-from-string","1XM":"@stdlib/utils/reject-arguments","1XN":"@stdlib/utils-reject-arguments","1XO":"@stdlib/utils/reorder-arguments","1XP":"@stdlib/utils-reorder-arguments","1XQ":"@stdlib/utils/reverse-arguments","1XR":"@stdlib/utils-reverse-arguments","1XS":"@stdlib/utils/safe-int-max","1XT":"@stdlib/utils-safe-int-max","1XU":"@stdlib/utils/safe-int-min","1XV":"@stdlib/utils-safe-int-min","1XW":"@stdlib/utils/shift","1XX":"@stdlib/utils-shift","1XY":"@stdlib/utils/size-of","1XZ":"@stdlib/utils-size-of","1Xa":"@stdlib/utils/some-by-right","1Xb":"@stdlib/utils-some-by-right","1Xc":"@stdlib/utils/some-by","1Xd":"@stdlib/utils-some-by","1Xe":"@stdlib/utils/some","1Xf":"@stdlib/utils-some","1Xi":"@stdlib/utils/tabulate-by","1Xj":"@stdlib/utils-tabulate-by","1Xk":"@stdlib/utils/tabulate","1Xl":"@stdlib/utils-tabulate","1Xm":"@stdlib/utils/timeit","1Xn":"@stdlib/utils-timeit","1Xo":"@stdlib/utils/try-catch","1Xp":"@stdlib/utils-try-catch","1Xq":"@stdlib/utils/try-function","1Xr":"@stdlib/utils-try-function","1Xs":"@stdlib/utils/try-require","1Xt":"@stdlib/utils-try-require","1Xu":"@stdlib/utils/try-then","1Xv":"@stdlib/utils-try-then","1Xw":"@stdlib/utils/type-max","1Xx":"@stdlib/utils-type-max","1Xy":"@stdlib/utils/type-min","1Xz":"@stdlib/utils-type-min","1Y0":"@stdlib/utils/type-of","1Y1":"@stdlib/utils-type-of","1Y4":"@stdlib/utils/uncurry-right","1Y5":"@stdlib/utils-uncurry-right","1Y6":"@stdlib/utils/uncurry","1Y7":"@stdlib/utils-uncurry","1Y8":"@stdlib/utils/unshift","1Y9":"@stdlib/utils-unshift","1YA":"@stdlib/utils/until-each-right","1YB":"@stdlib/utils-until-each-right","1YC":"@stdlib/utils/until-each","1YD":"@stdlib/utils-until-each","1YE":"@stdlib/utils/until","1YF":"@stdlib/utils-until","1YG":"@stdlib/utils/unzip","1YH":"@stdlib/utils-unzip","1YK":"@stdlib/utils/values-in","1YL":"@stdlib/utils-values-in","1YM":"@stdlib/utils/values","1YN":"@stdlib/utils-values","1YO":"@stdlib/utils/while-each-right","1YP":"@stdlib/utils-while-each-right","1YQ":"@stdlib/utils/while-each","1YR":"@stdlib/utils-while-each","1YS":"@stdlib/utils/while","1YT":"@stdlib/utils-while","1YU":"@stdlib/utils/writable-properties-in","1YV":"@stdlib/utils-writable-properties-in","1YW":"@stdlib/utils/writable-properties","1YX":"@stdlib/utils-writable-properties","1YY":"@stdlib/utils/writable-property-names-in","1YZ":"@stdlib/utils-writable-property-names-in","1Ya":"@stdlib/utils/writable-property-names","1Yb":"@stdlib/utils-writable-property-names","1Yc":"@stdlib/utils/writable-property-symbols-in","1Yd":"@stdlib/utils-writable-property-symbols-in","1Ye":"@stdlib/utils/writable-property-symbols","1Yf":"@stdlib/utils-writable-property-symbols","1Yg":"@stdlib/utils/zip","1Yh":"@stdlib/utils-zip","21E":"@stdlib/wasm/base/array2dtype","21F":"@stdlib/wasm-base-array2dtype","21G":"@stdlib/wasm/base/arrays2ptrs","21H":"@stdlib/wasm-base-arrays2ptrs","21I":"@stdlib/wasm/base/dtype2wasm","21J":"@stdlib/wasm-base-dtype2wasm","21K":"@stdlib/wasm/base","21L":"@stdlib/wasm-base","21M":"@stdlib/wasm/base/strided2object","21N":"@stdlib/wasm-base-strided2object","21O":"@stdlib/wasm/memory","21P":"@stdlib/wasm-memory","21Q":"@stdlib/wasm/module-wrapper","21R":"@stdlib/wasm-module-wrapper","21T":"@stdlib/wasm","2Rc":"@stdlib/wasm/types","2Rd":"@stdlib/wasm-types"} diff --git a/tools/id2pkg/datapackage.json b/tools/id2pkg/datapackage.json deleted file mode 100644 index 54ff8e1..0000000 --- a/tools/id2pkg/datapackage.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "stdlib-id2pkg", - "version": "", - "title": "Error Identifiers and Standard Library Package Names", - "description": "A mapping between error identifier prefixes and standard library package names.", - "resources": [ - { - "name": "stdlib-id2pkg-json", - "title": "Error Identifiers and Standard Library Package Names", - "description": "A mapping between error identifier prefixes and standard library package names.", - "format": "json", - "mediatype": "application/json", - "encoding": "UTF-8", - "hash": "", - "path": "./data/data.json" - }, - { - "name": "stdlib-id2pkg-csv", - "title": "Error Identifiers and Standard Library Package Names", - "description": "A mapping between error identifier prefixes and standard library package names.", - "format": "csv", - "mediatype": "plain/csv", - "encoding": "UTF-8", - "hash": "", - "path": "./data/data.csv", - "schema": { - "fields": [ - { - "name": "identifier", - "title": "Identifier", - "description": "Error identifier.", - "type": "string", - "format": "default" - }, - { - "name": "pkg", - "title": "Package Name", - "description": "Package name.", - "type": "string", - "format": "default" - } - ] - } - } - ], - "sources": [], - "keywords": [ - "stdlib", - "namespace", - "identifier", - "error", - "ids", - "package", - "name", - "pkg" - ], - "license": "PDDL-1.0 AND CC0-1.0" -} diff --git a/tools/id2pkg/docs/repl.txt b/tools/id2pkg/docs/repl.txt deleted file mode 100644 index dc3017c..0000000 --- a/tools/id2pkg/docs/repl.txt +++ /dev/null @@ -1,21 +0,0 @@ - -{{alias}}( id ) - Returns the package name associated with a provided error identifier prefix. - - Parameters - ---------- - id: string - Identifier prefix. - - Returns - ------- - out: string|null - Package name. - - Examples - -------- - > var v = {{alias}}( '0YK' ) - '@stdlib/math/base/special/sin' - - See Also - -------- diff --git a/tools/id2pkg/docs/types/index.d.ts b/tools/id2pkg/docs/types/index.d.ts deleted file mode 100644 index 17c3424..0000000 --- a/tools/id2pkg/docs/types/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Returns a package name associated with a specified error code identifier prefix. -* -* @param id - identifier prefix -* @returns package name -* -* @example -* var v = id2pkg( '0YK' ); -* // returns '@stdlib/math/base/special/sin' -*/ -declare function id2pkg( id: string ): string | null; - - -// EXPORTS // - -export = id2pkg; diff --git a/tools/id2pkg/docs/types/test.ts b/tools/id2pkg/docs/types/test.ts deleted file mode 100644 index fe82b42..0000000 --- a/tools/id2pkg/docs/types/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import id2pkg = require( './index' ); - - -// TESTS // - -// The function returns a string or null... -{ - id2pkg( '0H5' ); // $ExpectType string | null -} - -// The compiler throws an error if the function is not provided a string... -{ - id2pkg( 5 ); // $ExpectError - id2pkg( true ); // $ExpectError - id2pkg( false ); // $ExpectError - id2pkg( null ); // $ExpectError - id2pkg( undefined ); // $ExpectError - id2pkg( [] ); // $ExpectError - id2pkg( {} ); // $ExpectError - id2pkg( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided an unsupported number of arguments... -{ - id2pkg( 'base.sin', 'beep' ); // $ExpectError -} diff --git a/tools/id2pkg/docs/usage.txt b/tools/id2pkg/docs/usage.txt deleted file mode 100644 index f6a659a..0000000 --- a/tools/id2pkg/docs/usage.txt +++ /dev/null @@ -1,7 +0,0 @@ - -Usage: stdlib-id2pkg [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. diff --git a/tools/id2pkg/etc/cli_opts.json b/tools/id2pkg/etc/cli_opts.json deleted file mode 100644 index 92119c4..0000000 --- a/tools/id2pkg/etc/cli_opts.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "string": [], - "boolean": [ - "help", - "version" - ], - "alias": { - "help": [ - "h" - ], - "version": [ - "V" - ] - } -} diff --git a/tools/id2pkg/examples/index.js b/tools/id2pkg/examples/index.js deleted file mode 100644 index e8badca..0000000 --- a/tools/id2pkg/examples/index.js +++ /dev/null @@ -1,38 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var id2pkg = require( './../lib' ); - -var list; -var len; -var v; -var i; - -list = [ - '001', - '0A3', - '0Ab' -]; -len = list.length; - -for ( i = 0; i < len; i++ ) { - v = list[ i ]; - console.log( 'id: %s. pkg: %s.', v, id2pkg( v ) ); -} diff --git a/tools/id2pkg/lib/index.js b/tools/id2pkg/lib/index.js deleted file mode 100644 index d07d8ac..0000000 --- a/tools/id2pkg/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return the package name associated with a specified error identifier prefix. -* -* @module @stdlib/error/tools/id2pkg -* -* @example -* var id2pkg = require( '@stdlib/error/tools/id2pkg' ); -* -* var v = id2pkg( '0YK' ); -* // returns '@stdlib/math/base/special/sin' -*/ - -// MODULES // - -var id2pkg = require( './main.js' ); - - -// EXPORTS // - -module.exports = id2pkg; diff --git a/tools/id2pkg/lib/main.js b/tools/id2pkg/lib/main.js deleted file mode 100644 index 930bfb2..0000000 --- a/tools/id2pkg/lib/main.js +++ /dev/null @@ -1,55 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var hasOwnProp = require( '@stdlib/assert/has-own-property' ); -var format = require( '@stdlib/string/format' ); -var ID_TO_PKG = require( './../data/data.json' ); - - -// MAIN // - -/** -* Returns a package name associated with a specified error code identifier prefix. -* -* @param {string} id - identifier prefix -* @throws {TypeError} must provide a string -* @returns {(string|null)} package name -* -* @example -* var v = id2pkg( '0YK' ); -* // returns '@stdlib/math/base/special/sin' -*/ -function id2pkg( id ) { - if ( !isString( id ) ) { - throw new TypeError( format( 'invalid argument. Must provide a string. Value: `%s`.', id ) ); - } - if ( hasOwnProp( ID_TO_PKG, id ) ) { - return ID_TO_PKG[ id ]; - } - return null; -} - - -// EXPORTS // - -module.exports = id2pkg; diff --git a/tools/id2pkg/package.json b/tools/id2pkg/package.json deleted file mode 100644 index 9c310b0..0000000 --- a/tools/id2pkg/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "name": "@stdlib/error/tools/id2pkg", - "version": "0.0.0", - "description": "Return the package name associated with a specified error identifier prefix.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "bin": { - "stdlib-id2pkg": "./bin/cli" - }, - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "data": "./data", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "scripts": "./scripts", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "standard", - "library", - "lib", - "identifier", - "id", - "error", - "package", - "name", - "pkg" - ] -} diff --git a/tools/id2pkg/scripts/build.js b/tools/id2pkg/scripts/build.js deleted file mode 100644 index a73cc64..0000000 --- a/tools/id2pkg/scripts/build.js +++ /dev/null @@ -1,111 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// WARNING: Make sure that the `@stdlib/error/tools/pkg2id` data is up-to-date before running this script (i.e., run the build script in said package directory). - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var logger = require( 'debug' ); -var writeFile = require( '@stdlib/fs/write-file' ).sync; -var objectKeys = require( '@stdlib/utils/keys' ); -var pkgs = require( '@stdlib/_tools/pkgs/names' ).sync; -var pkg2id = require( './../../../tools/pkg2id' ); -var replace = require( '@stdlib/string/replace' ); - - -// VARIABLES // - -var debug = logger( 'error:id2pkg:build' ); - -// Output file paths: -var OUTPUT_JSON = resolve( __dirname, '..', 'data', 'data.json' ); -var OUTPUT_CSV = resolve( __dirname, '..', 'data', 'data.csv' ); - - -// FUNCTIONS // - -/** -* Converts an internal package name to a standalone package name. -* -* @private -* @param {string} name - internal package name -* @returns {string} standalone package name -*/ -function pkg2standalone( name ) { - // Note: every internal package name begins with `@stdlib/`, which is 8 characters long... - return '@stdlib/' + replace( name.substring( 8 ), '/', '-' ); -} - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var fopts; - var names; - var name; - var keys; - var json; - var csv; - var id; - var i; - - debug( 'Extracting package names and generate identifiers if not yet present...' ); - names = pkgs(); - json = {}; - for ( i = 0; i < names.length; i++ ) { - name = names[ i ]; - id = pkg2id( name ); - if ( id ) { - json[ id ] = name; - } - name = pkg2standalone( name ); - id = pkg2id( name ); - if ( id ) { - json[ id ] = name; - } - } - - debug( 'Writing to JSON file...' ); - fopts = { - 'encoding': 'utf8' - }; - writeFile( OUTPUT_JSON, JSON.stringify( json )+'\n', fopts ); - - debug( 'Writing to CSV file...' ); - fopts = { - 'encoding': 'utf8' - }; - keys = objectKeys( json ); - csv = ''; - for ( i = 0; i < keys.length; i++ ) { - csv += '"' + keys[ i ] + '",' + json[ keys[i] ] + '\n'; // Note: ensures trailing newline - } - writeFile( OUTPUT_CSV, csv, fopts ); -} - - -// MAIN // - -main(); diff --git a/tools/id2pkg/test/test.cli.js b/tools/id2pkg/test/test.cli.js deleted file mode 100644 index 18b69ff..0000000 --- a/tools/id2pkg/test/test.cli.js +++ /dev/null @@ -1,183 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var exec = require( 'child_process' ).exec; -var tape = require( 'tape' ); -var IS_BROWSER = require( '@stdlib/assert/is-browser' ); -var IS_WINDOWS = require( '@stdlib/assert/is-windows' ); -var EXEC_PATH = require( '@stdlib/process/exec-path' ); -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var id2pkg = require( './../lib' ); - - -// VARIABLES // - -var fpath = resolve( __dirname, '..', 'bin', 'cli' ); -var opts = { - 'skip': IS_BROWSER || IS_WINDOWS -}; - - -// FIXTURES // - -var PKG_VERSION = require( './../package.json' ).version; - - -// TESTS // - -tape( 'command-line interface', function test( t ) { - t.ok( true, __filename ); - t.end(); -}); - -tape( 'when invoked with a `--help` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '--help' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-h` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '-h' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `--version` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '--version' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-V` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '-V' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'the command-line interface prints a package name', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '0A3' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), id2pkg( '0A3' ) + '\n', 'prints expected value' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - } - t.end(); - } -}); - -tape( 'if unable to resolve a package name, the command-line interface sets a non-zero exit code', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - 'fjaldfjadljfeoejreandfljasdfjadsfjs' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.pass( error.message ); - t.strictEqual( error.code, 1, 'expected exit code' ); - } - t.strictEqual( stdout.toString(), '', 'does not print to` stdout`' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - t.end(); - } -}); diff --git a/tools/id2pkg/test/test.js b/tools/id2pkg/test/test.js deleted file mode 100644 index 61f1b33..0000000 --- a/tools/id2pkg/test/test.js +++ /dev/null @@ -1,97 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var pkg2id = require( './../../../tools/pkg2id' ); -var id2pkg = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof id2pkg, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function throws an error if not provided a string', function test( t ) { - var values; - var i; - - values = [ - 5, - NaN, - true, - false, - null, - void 0, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - id2pkg( value ); - }; - } -}); - -tape( 'the function returns a package name', function test( t ) { - var expected; - var actual; - var list; - var i; - - list = [ - '@stdlib/math-base-special-sin', - '@stdlib/math-base-special-cos', - '@stdlib/math-base-special-tan', - '@stdlib/math-base-special-asin' - ]; - for ( i = 0; i < list.length; i++ ) { - expected = list[ i ]; - actual = id2pkg( pkg2id( list[ i ] ) ); - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.strictEqual( actual, expected, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns `null` if provided an unrecognized identifier prefix', function test( t ) { - var values; - var i; - - values = [ - 'adfkaljdfdsafs', - 'adklfadjflajdslfjalsdf', - 'adflkajdlkfjasdlkfjsadlkfjlasdjflsdjfla' - ]; - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( id2pkg( values[ i ] ), null, 'returns expected value' ); - } - t.end(); -}); diff --git a/tools/lib/index.js b/tools/lib/index.js deleted file mode 100644 index 46d6f18..0000000 --- a/tools/lib/index.js +++ /dev/null @@ -1,105 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/* -* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name. -*/ - -// MODULES // - -var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); - - -// MAIN // - -/** -* Top-level namespace. -* -* @namespace ns -*/ -var ns = {}; - -/** -* @name database -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/database} -*/ -setReadOnly( ns, 'database', require( './../../tools/database' ) ); - -/** -* @name fmtprodmsg -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/fmtprodmsg} -*/ -setReadOnly( ns, 'fmtprodmsg', require( './../../tools/fmtprodmsg' ) ); - -/** -* @name fmtprodmsgFactory -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/fmtprodmsg-factory} -*/ -setReadOnly( ns, 'fmtprodmsgFactory', require( './../../tools/fmtprodmsg-factory' ) ); - -/** -* @name id2msg -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/id2msg} -*/ -setReadOnly( ns, 'id2msg', require( './../../tools/id2msg' ) ); - -/** -* @name id2pkg -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/id2pkg} -*/ -setReadOnly( ns, 'id2pkg', require( './../../tools/id2pkg' ) ); - -/** -* @name msg2id -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/msg2id} -*/ -setReadOnly( ns, 'msg2id', require( './../../tools/msg2id' ) ); - -/** -* @name pkg2id -* @memberof ns -* @readonly -* @type {Function} -* @see {@link module:@stdlib/error/tools/pkg2id} -*/ -setReadOnly( ns, 'pkg2id', require( './../../tools/pkg2id' ) ); - - -// EXPORTS // - -module.exports = ns; diff --git a/tools/msg2id/README.md b/tools/msg2id/README.md deleted file mode 100644 index 59dfe88..0000000 --- a/tools/msg2id/README.md +++ /dev/null @@ -1,185 +0,0 @@ - - -# msg2id - -> Return a two-character error identifier corresponding to a provided error message. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var msg2id = require( '@stdlib/error/tools/msg2id' ); -``` - -#### msg2id( msg ) - -Returns a two-character error identifier corresponding to a provided error message. - -```javascript -var v = msg2id( 'invalid value. `%s` must be a number. Value: `%s`.' ); -// e.g., returns '6d' -``` - -If provided an unrecognized error message, the function returns `null`. - -```javascript -var v = msg2id( 'beep boop baz' ); -// returns null -``` - -
- - - - - -
- -
- - - - - -
- -## Examples - - - -```javascript -var msg2id = require( '@stdlib/error/tools/msg2id' ); - -var list; -var v; -var i; - -list = [ - 'invalid argument. First argument must be a number and not `NaN`. Value: `%s`.', - 'invalid argument. First argument must be a positive integer. Value: `%s`.' -]; - -for ( i = 0; i < list.length; i++ ) { - v = list[ i ]; - console.log( 'msg: "%s". id: "%s".', v, msg2id( v ) ); -} -``` - -
- - - - - -* * * - -
- -## CLI - - - -
- -### Usage - -```text -Usage: stdlib-msg2id [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. -``` - -
- - - - - -
- -
- - - - - -
- -### Examples - -```bash -$ stdlib-msg2id 'invalid value. `%s` must be a number. Value: `%s`.' -6d -``` - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - diff --git a/tools/msg2id/benchmark/benchmark.js b/tools/msg2id/benchmark/benchmark.js deleted file mode 100644 index 0e54af9..0000000 --- a/tools/msg2id/benchmark/benchmark.js +++ /dev/null @@ -1,54 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var pkg = require( './../package.json' ).name; -var msg2id = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var values; - var v; - var i; - - values = [ - 'invalid argument. First argument must be a number and not NaN. Value: `%s`.', - 'invalid argument. First argument must be a positive integer. Value: `%s`.' - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - v = msg2id( values[ i%values.length ] ); - if ( typeof v !== 'string' ) { - b.fail( 'should return a string' ); - } - } - b.toc(); - if ( !isString( v ) ) { - b.fail( 'should return a string' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/tools/msg2id/bin/cli b/tools/msg2id/bin/cli deleted file mode 100755 index 9101b7f..0000000 --- a/tools/msg2id/bin/cli +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var CLI = require( '@stdlib/cli/ctor' ); -var msg2id = require( './../lib' ); - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var flags; - var args; - var cli; - var out; - - // Create a command-line interface: - cli = new CLI({ - 'pkg': require( './../package.json' ), - 'options': require( './../etc/cli_opts.json' ), - 'help': readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }) - }); - - // Get any provided command-line options: - flags = cli.flags(); - if ( flags.help || flags.version ) { - return; - } - - // Get any provided command-line arguments: - args = cli.args(); - - // Resolve an error message to a two-character error identifier: - out = msg2id( args[ 0 ] ); - if ( out ) { - console.log( out ); // eslint-disable-line no-console - } else { - cli.close( 1 ); - } -} - -main(); diff --git a/tools/msg2id/docs/repl.txt b/tools/msg2id/docs/repl.txt deleted file mode 100644 index 0b66c97..0000000 --- a/tools/msg2id/docs/repl.txt +++ /dev/null @@ -1,22 +0,0 @@ - -{{alias}}( msg ) - Returns a two-character error identifier corresponding to a provided error - message. - - Parameters - ---------- - msg: string - Error message. - - Returns - ------- - out: string|null - Error identifier. - - Examples - -------- - > var v = {{alias}}( 'invalid argument. First argument must be a positive integer. Value: `%s`.' ) - '4o' - - See Also - -------- diff --git a/tools/msg2id/docs/types/index.d.ts b/tools/msg2id/docs/types/index.d.ts deleted file mode 100644 index ce48a7a..0000000 --- a/tools/msg2id/docs/types/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Returns a two-character error identifier corresponding to a provided error message. -* -* @param msg - error message -* @returns two-character error identifier -* -* @example -* var v = msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ); -* // returns '8Z' -*/ -declare function msg2id( msg: string ): string | null; - - -// EXPORTS // - -export = msg2id; diff --git a/tools/msg2id/docs/types/test.ts b/tools/msg2id/docs/types/test.ts deleted file mode 100644 index c63cd16..0000000 --- a/tools/msg2id/docs/types/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import msg2id = require( './index' ); - - -// TESTS // - -// The function returns a string or null... -{ - msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ); // $ExpectType string | null -} - -// The compiler throws an error if the function is not provided a string... -{ - msg2id( 5 ); // $ExpectError - msg2id( true ); // $ExpectError - msg2id( false ); // $ExpectError - msg2id( null ); // $ExpectError - msg2id( undefined ); // $ExpectError - msg2id( [] ); // $ExpectError - msg2id( {} ); // $ExpectError - msg2id( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided an unsupported number of arguments... -{ - msg2id( 'beep', 'boop' ); // $ExpectError -} diff --git a/tools/msg2id/docs/usage.txt b/tools/msg2id/docs/usage.txt deleted file mode 100644 index e2d1da6..0000000 --- a/tools/msg2id/docs/usage.txt +++ /dev/null @@ -1,7 +0,0 @@ - -Usage: stdlib-msg2id [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. diff --git a/tools/msg2id/etc/cli_opts.json b/tools/msg2id/etc/cli_opts.json deleted file mode 100644 index 92119c4..0000000 --- a/tools/msg2id/etc/cli_opts.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "string": [], - "boolean": [ - "help", - "version" - ], - "alias": { - "help": [ - "h" - ], - "version": [ - "V" - ] - } -} diff --git a/tools/msg2id/examples/index.js b/tools/msg2id/examples/index.js deleted file mode 100644 index 18502c3..0000000 --- a/tools/msg2id/examples/index.js +++ /dev/null @@ -1,35 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var msg2id = require( './../lib' ); - -var list; -var v; -var i; - -list = [ - 'invalid argument. First argument must be a number and not NaN. Value: `%s`.', - 'invalid argument. First argument must be a positive integer. Value: `%s`.' -]; - -for ( i = 0; i < list.length; i++ ) { - v = list[ i ]; - console.log( 'msg: "%s". id: "%s".', v, msg2id( v ) ); -} diff --git a/tools/msg2id/lib/index.js b/tools/msg2id/lib/index.js deleted file mode 100644 index 4a2c2d9..0000000 --- a/tools/msg2id/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return a two-character error identifier corresponding to a provided error message. -* -* @module @stdlib/error/tools/msg2id -* -* @example -* var msg2id = require( '@stdlib/error/tools/msg2id' ); -* -* var v = msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ); -* // returns '8Z' -*/ - -// MODULES // - -var msg2id = require( './main.js' ); - - -// EXPORTS // - -module.exports = msg2id; diff --git a/tools/msg2id/lib/main.js b/tools/msg2id/lib/main.js deleted file mode 100644 index c2853cf..0000000 --- a/tools/msg2id/lib/main.js +++ /dev/null @@ -1,66 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var hasOwnProp = require( '@stdlib/assert/has-own-property' ); -var database = require( './../../../tools/database' ); -var inverse = require( '@stdlib/object/inverse' ); -var format = require( '@stdlib/string/format' ); - - -// VARIABLES // - -var db; - - -// MAIN // - -/** -* Returns a two-character error identifier corresponding to a provided error message. -* -* @param {string} msg - error message -* @throws {TypeError} must provide a string -* @returns {(string|null)} two-character error identifier -* -* @example -* var v = msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ); -* // returns '8Z' -*/ -function msg2id( msg ) { - if ( !isString( msg ) ) { - throw new TypeError( format( 'invalid argument. Must provide a string. Value: `%s`.', msg ) ); - } - if ( !db ) { - db = inverse( database(), { - 'duplicates': false - }); - } - if ( hasOwnProp( db, msg ) ) { - return db[ msg ]; - } - return null; -} - - -// EXPORTS // - -module.exports = msg2id; diff --git a/tools/msg2id/package.json b/tools/msg2id/package.json deleted file mode 100644 index e2ad678..0000000 --- a/tools/msg2id/package.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "name": "@stdlib/error/tools/msg2id", - "version": "0.0.0", - "description": "Return a two-character error identifier corresponding to a provided error message.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "bin": { - "stdlib-msg2id": "./bin/cli" - }, - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "standard", - "library", - "lib", - "identifier", - "id", - "error", - "err", - "message", - "msg" - ] -} diff --git a/tools/msg2id/test/test.cli.js b/tools/msg2id/test/test.cli.js deleted file mode 100644 index cc721e9..0000000 --- a/tools/msg2id/test/test.cli.js +++ /dev/null @@ -1,183 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var exec = require( 'child_process' ).exec; -var tape = require( 'tape' ); -var IS_BROWSER = require( '@stdlib/assert/is-browser' ); -var IS_WINDOWS = require( '@stdlib/assert/is-windows' ); -var EXEC_PATH = require( '@stdlib/process/exec-path' ); -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var msg2id = require( './../lib' ); - - -// VARIABLES // - -var fpath = resolve( __dirname, '..', 'bin', 'cli' ); -var opts = { - 'skip': IS_BROWSER || IS_WINDOWS -}; - - -// FIXTURES // - -var PKG_VERSION = require( './../package.json' ).version; - - -// TESTS // - -tape( 'command-line interface', function test( t ) { - t.ok( true, __filename ); - t.end(); -}); - -tape( 'when invoked with a `--help` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '--help' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-h` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '-h' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `--version` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '--version' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-V` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '-V' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'the command-line interface prints a two-character error identifier', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '\'invalid option. `%s` option must be an array. Option: `%s`.\'' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' ) + '\n', 'prints expected value' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - } - t.end(); - } -}); - -tape( 'if unable to resolve a package name, the command-line interface sets a non-zero exit code', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - 'fjaldfjadljfeoejreandfljasdfjadsfjs' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.pass( error.message ); - t.strictEqual( error.code, 1, 'expected exit code' ); - } - t.strictEqual( stdout.toString(), '', 'does not print to` stdout`' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - t.end(); - } -}); diff --git a/tools/msg2id/test/test.js b/tools/msg2id/test/test.js deleted file mode 100644 index ca93e97..0000000 --- a/tools/msg2id/test/test.js +++ /dev/null @@ -1,93 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var id2msg = require( './../../../tools/id2msg' ); -var msg2id = require( './../lib' ); - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof msg2id, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function throws an error if not provided a string', function test( t ) { - var values; - var i; - - values = [ - 5, - NaN, - true, - false, - null, - void 0, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - msg2id( value ); - }; - } -}); - -tape( 'the function returns a two-character error identifier', function test( t ) { - var actual; - var list; - var i; - - list = [ - 'invalid argument. First argument must be a number. Value: `%s`.', - 'invalid argument. First argument must be a positive integer. Value: `%s`.' - ]; - for ( i = 0; i < list.length; i++ ) { - actual = msg2id( list[ i ] ); - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.strictEqual( actual.length, 2, 'returns a two-character string' ); - t.strictEqual( id2msg( actual ), list[ i ], 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns `null` if provided an unrecognized error message', function test( t ) { - var values; - var i; - - values = [ - 'invalid parameter', - 'beep boop baz' - ]; - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( msg2id( values[ i ] ), null, 'returns expected value' ); - } - t.end(); -}); diff --git a/tools/package.json b/tools/package.json deleted file mode 100644 index 86aa4a4..0000000 --- a/tools/package.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "name": "@stdlib/error/tools", - "version": "0.0.0", - "description": "Error tools.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "main": "./lib", - "directories": { - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "stdutils", - "stdutil", - "stdtypes", - "types", - "error", - "utilities", - "utility", - "utils", - "util", - "tool", - "tools" - ] -} diff --git a/tools/pkg2id/LICENSE b/tools/pkg2id/LICENSE deleted file mode 100644 index dc6d53e..0000000 --- a/tools/pkg2id/LICENSE +++ /dev/null @@ -1,356 +0,0 @@ -The use of the database is licensed under an Open Data Commons Public Domain -Dedication & License 1.0 (PDDL 1.0), while the database contents are licensed -under Creative Commons Zero v1.0 Universal (CC0 1.0). The software is licensed -under an Apache-2.0 license. - - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - - -Creative Commons Zero v1.0 Universal - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: - -the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; -moral rights retained by the original author(s) and/or performer(s); -publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; -rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; -rights protecting the extraction, dissemination, use and reuse of data in a Work; -database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and -other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. -2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. - -4. Limitations and Disclaimers. - -No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. -Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. -Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. -Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. - - - - -Open Data Commons Public Domain Dedication & License 1.0 - -Preamble - -The Open Data Commons – Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. - -Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the "sui generis" database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for those wishing to share databases and their underlying data but retain a limited amount of rights under a "some rights reserved" approach to licensing as outlined in the Science Commons Protocol for Implementing Open Access Data. As a result, this waiver and licence tries to the fullest extent possible to eliminate or fully license any rights that cover this database and data. Any Community Norms or similar statements of use of the database or data do not form a part of this document, and do not act as a contract for access or other terms of use for the database or data. - -The position of the recipient of the work - -Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other databases or data, and share their changes and additions or keep them secret. It is not a requirement that recipients provide further users with a copy of this licence or attribute the original creator of the data or database as a source. The goal is to eliminate restrictions held by the original creator of the data and database on the use of it by others. - -The position of the dedicator of the work - -Copyright law, as with most other law under the banner of "intellectual property", is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of minimum levels of protection. The internet and other communication technologies span these many disparate legal jurisdictions and thus pose special difficulties for a document relinquishing and waiving intellectual property rights, including copyright and database rights, for use by the global community. Because of this feature of intellectual property law, this document first relinquishes the rights and waives the relevant rights and claims. It then goes on to license these same rights for jurisdictions or areas of law that may make it difficult to relinquish or waive rights or claims. - -The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to "dual license" their work by releasing the same work under different licences. This is because they have allowed anyone to use the work in whatever way they choose. Rightsholders therefore can’t re-license it under copyright or database rights on different terms because they have nothing left to license. Doing so creates truly accessible data to build rich applications and advance the progress of science and the arts. - -This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content – not just factual data – rightsholders should use the Open Data Commons – Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed under the terms of this document. Because even factual data can sometimes have intellectual property rights, rightsholders should use this licence to cover both the database and its factual data when making material available under this document; even if it is likely that the data would not be covered by copyright or database rights. - -Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the "Work", which can be either – or both – the database and its contents. As a result, rightsholders need to clearly state what they are dedicating under this document when they dedicate it. - -Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document. - -This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen. - -Part I: Introduction - -The Rightsholder (the Person holding rights or claims over the Work) agrees as follows: - -1.0 Definitions of Capitalised Words - -"Copyright" – Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4. - -"Data" – The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document. - -"Database" – A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document. - -"Database Right" – Means rights over Data resulting from the Chapter III ("sui generis") rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant jurisdiction under Section 6.4. - -"Document" – means this relinquishment and waiver of rights and claims and back up licence agreement. - -"Person" – Means a natural or legal person or a body of persons corporate or incorporate. - -"Use" – As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work. - -"Work" – Means either or both of the Database and Data offered under the terms of this Document. - -"You" – the Person acquiring rights under the licence elements of this Document. - -Words in the singular include the plural and vice versa. - -2.0 What this document covers - -2.1. Legal effect of this Document. This Document is: - -a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and - -b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver. - -2.2. Legal rights covered. - -a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Data stored in the Database. Copyright may also cover the Data depending on the jurisdiction and type of Data; and - -b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in a way that would not infringe any applicable copyright. - -2.2 Rights not covered. - -a. This Document does not apply to computer programs used in the making or operation of the Database; - -b. This Document does not cover any patents over the Data or the Database. Please see Section 4.2 later in this Document for further details; and - -c. This Document does not cover any trade marks associated with the Database. Please see Section 4.3 later in this Document for further details. - -Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -2.3 Facts are free. The Rightsholder takes the position that factual information is not covered by Copyright. This Document however covers the Work in jurisdictions that may protect the factual information in the Work by Copyright, and to cover any information protected by Copyright that is contained in the Work. - -Part II: Dedication to the public domain - -3.0 Dedication, waiver, and licence of Copyright and Database Rights - -3.1 Dedication of Copyright and Database Rights to the public domain. The Rightsholder by using this Document, dedicates the Work to the public domain for the benefit of the public and relinquishes all rights in Copyright and Database Rights over the Work. - -a. The Rightsholder realises that once these rights are relinquished, that the Rightsholder has no further rights in Copyright and Database Rights over the Work, and that the Work is free and open for others to Use. - -b. The Rightsholder intends for their relinquishment to cover all present and future rights in the Work under Copyright and Database Rights, whether they are vested or contingent rights, and that this relinquishment of rights covers all their heirs and successors. - -The above relinquishment of rights applies worldwide and includes media and formats now known or created in the future. - -3.2 Waiver of rights and claims in Copyright and Database Rights when Section 3.1 dedication inapplicable. If the dedication in Section 3.1 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder waives any rights and claims that the Rightsholder may have or acquire in the future over the Work in: - -a. Copyright; and - -b. Database Rights. - -To the extent possible in the relevant jurisdiction, the above waiver of rights and claims applies worldwide and includes media and formats now known or created in the future. The Rightsholder agrees not to assert the above rights and waives the right to enforce them over the Work. - -3.3 Licence of Copyright and Database Rights when Sections 3.1 and 3.2 inapplicable. If the dedication and waiver in Sections 3.1 and 3.2 does not apply in the relevant jurisdiction under Section 6.4, the Rightsholder and You agree as follows: - -a. The Licensor grants to You a worldwide, royalty-free, non-exclusive, licence to Use the Work for the duration of any applicable Copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future. - -3.4 Moral rights. This section covers moral rights, including the right to be identified as the author of the Work or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment: - -a. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Work to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; - -b. If waiver of moral rights under Section 3.4 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Work and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 6.4; and - -c. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 3.4 a and b, the author may retain their moral rights over the copyrighted aspects of the Work. - -Please note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the work in some jurisdictions. - -4.0 Relationship to other rights - -4.1 No other contractual conditions. The Rightsholder makes this Work available to You without any other contractual obligations, either express or implied. Any Community Norms statement associated with the Work is not a contract and does not form part of this Document. - -4.2 Relationship to patents. This Document does not grant You a licence for any patents that the Rightsholder may own. Users of this Database are cautioned that they may have to clear other rights or consult other licences. - -4.3 Relationship to trade marks. This Document does not grant You a licence for any trade marks that the Rightsholder may own or that the Rightsholder may use to cover the Work. Users of this Database are cautioned that they may have to clear other rights or consult other licences. Part III: General provisions - -5.0 Warranties, disclaimer, and limitation of liability - -5.1 The Work is provided by the Rightsholder "as is" and without any warranty of any kind, either express or implied, whether of title, of accuracy or completeness, of the presence of absence of errors, of fitness for purpose, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You. - -5.2 Subject to any liability that may not be excluded or limited by law, the Rightsholder is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this Document, whether by You or by anyone else, and whether caused by any fault on the part of the Rightsholder or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages. This exclusion applies even if the Rightsholder has been advised of the possibility of such damages. - -5.3 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Rightsholder. - -6.0 General - -6.1 If any provision of this Document is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms of this Document. - -6.2 This Document is the entire agreement between the parties with respect to the Work covered here. It replaces any earlier understandings, agreements or representations with respect to the Work not specified here. - -6.3 This Document does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Work, including (for jurisdictions where this Document is a licence) fair dealing, fair use, database exceptions, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws. - -6.4 This Document takes effect in the relevant jurisdiction in which the Document terms are sought to be enforced. If the rights waived or granted under applicable law in the relevant jurisdiction includes additional rights not waived or granted under this Document, these additional rights are included in this Document in order to meet the intent of this Document. diff --git a/tools/pkg2id/README.md b/tools/pkg2id/README.md deleted file mode 100644 index 795a0a6..0000000 --- a/tools/pkg2id/README.md +++ /dev/null @@ -1,201 +0,0 @@ - - -# pkg2id - -> Return the error identifier prefix associated with a specified package name. - - - -
- -
- - - - - -
- -## Usage - -```javascript -var pkg2id = require( '@stdlib/error/tools/pkg2id' ); -``` - -#### pkg2id( pkg ) - -Returns the error identifier prefix associated with a specified package name. - -```javascript -var v = pkg2id( '@stdlib/math/base/special/sin' ); -// returns '0YK' -``` - -If provided an unrecognized `pkg`, the function returns `null`. - -```javascript -var v = pkg2id( 'unrecognized_pkg_beep_boop_bop_bip' ); -// returns null -``` - -
- - - - - -
- -## Notes - -- The function supports providing both internal and standalone package names. - - ```javascript - var v = pkg2id( '@stdlib/math-base-special-sin' ); - // returns '0YL' - ``` - -
- - - - - -
- -## Examples - - - - - -```javascript -var formatProdErrorMessage = require( '@stdlib/error/tools/fmtprodmsg' ); -var pkg2id = require( '@stdlib/error/tools/pkg2id' ); - -var prefix = pkg2id( '@stdlib/math/base/special/sin' ); -var errorCode = '23'; -var code = prefix + errorCode; - -var msg = formatProdErrorMessage( code ); -console.log( msg ); -// => -``` - -
- - - - - -* * * - -
- -## CLI - - - -
- -### Usage - -```text -Usage: stdlib-pkg2id [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. -``` - -
- - - - - -
- -
- - - - - -
- -### Examples - -```bash -$ stdlib-pkg2id '@stdlib/math/base/special/sin' -0YK -``` - -
- - - -
- - - - - -
- -
- - - - - -## License - -The data files (databases) are licensed under an [Open Data Commons Public Domain Dedication & License 1.0][pddl-1.0] and their contents are licensed under [Creative Commons Zero v1.0 Universal][cc0]. The software is licensed under [Apache License, Version 2.0][apache-license]. - - - - - - - - - - - - - - diff --git a/tools/pkg2id/benchmark/benchmark.js b/tools/pkg2id/benchmark/benchmark.js deleted file mode 100644 index 8f61a2e..0000000 --- a/tools/pkg2id/benchmark/benchmark.js +++ /dev/null @@ -1,55 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var bench = require( '@stdlib/bench' ); -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var pkg = require( './../package.json' ).name; -var pkg2id = require( './../lib' ); - - -// MAIN // - -bench( pkg, function benchmark( b ) { - var values; - var v; - var i; - - values = [ - '@stdlib/math/base/special/sin', - '@stdlib/math/base/special/abs', - '@stdlib/math/base/special/cos' - ]; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - v = pkg2id( values[ i%values.length ] ); - if ( typeof v !== 'string' ) { - b.fail( 'should return a string' ); - } - } - b.toc(); - if ( !isString( v ) ) { - b.fail( 'should return a string' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/tools/pkg2id/bin/cli b/tools/pkg2id/bin/cli deleted file mode 100755 index e11d123..0000000 --- a/tools/pkg2id/bin/cli +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var readFileSync = require( '@stdlib/fs/read-file' ).sync; -var CLI = require( '@stdlib/cli/ctor' ); -var pkg2id = require( './../lib' ); - - -// MAIN // - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var flags; - var args; - var cli; - var out; - - // Create a command-line interface: - cli = new CLI({ - 'pkg': require( './../package.json' ), - 'options': require( './../etc/cli_opts.json' ), - 'help': readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }) - }); - - // Get any provided command-line options: - flags = cli.flags(); - if ( flags.help || flags.version ) { - return; - } - - // Get any provided command-line arguments: - args = cli.args(); - - // Resolve a provided package name to an error code identifier prefix... - out = pkg2id( args[ 0 ] ); - if ( out ) { - console.log( out ); // eslint-disable-line no-console - } else { - cli.close( 1 ); - } -} - -main(); diff --git a/tools/pkg2id/data/data.csv b/tools/pkg2id/data/data.csv deleted file mode 100644 index 5aaffa9..0000000 --- a/tools/pkg2id/data/data.csv +++ /dev/null @@ -1,11161 +0,0 @@ -"@stdlib/array/base/arraylike2object",000 -"@stdlib/array-base-arraylike2object",001 -"@stdlib/array/base/copy",002 -"@stdlib/array-base-copy",003 -"@stdlib/array/base/filled-by",004 -"@stdlib/array-base-filled-by",005 -"@stdlib/array/base/filled",006 -"@stdlib/array-base-filled",007 -"@stdlib/array/base/incrspace",008 -"@stdlib/array-base-incrspace",009 -"@stdlib/array/base/linspace",00A -"@stdlib/array-base-linspace",00B -"@stdlib/array/base/logspace",00C -"@stdlib/array-base-logspace",00D -"@stdlib/array/base/ones",00E -"@stdlib/array-base-ones",00F -"@stdlib/array/base",00G -"@stdlib/array-base",00H -"@stdlib/array/base/unitspace",00I -"@stdlib/array-base-unitspace",00J -"@stdlib/array/base/zeros",00K -"@stdlib/array-base-zeros",00L -"@stdlib/array/buffer",00M -"@stdlib/array-buffer",00N -"@stdlib/array/complex128",00O -"@stdlib/array-complex128",00P -"@stdlib/array/complex64",00Q -"@stdlib/array-complex64",00R -"@stdlib/array/convert-same",00S -"@stdlib/array-convert-same",00T -"@stdlib/array/convert",00U -"@stdlib/array-convert",00V -"@stdlib/array/ctors",00W -"@stdlib/array-ctors",00X -"@stdlib/array/dataview",00Y -"@stdlib/array-dataview",00Z -"@stdlib/array/datespace",00a -"@stdlib/array-datespace",00b -"@stdlib/array/dtype",00c -"@stdlib/array-dtype",00d -"@stdlib/array/dtypes",00e -"@stdlib/array-dtypes",00f -"@stdlib/array/filled-by",00g -"@stdlib/array-filled-by",00h -"@stdlib/array/filled",00i -"@stdlib/array-filled",00j -"@stdlib/array/float32",00k -"@stdlib/array-float32",00l -"@stdlib/array/float64",00m -"@stdlib/array-float64",00n -"@stdlib/array/from-iterator",00o -"@stdlib/array-from-iterator",00p -"@stdlib/array/full-like",00q -"@stdlib/array-full-like",00r -"@stdlib/array/full",00s -"@stdlib/array-full",00t -"@stdlib/array/incrspace",00u -"@stdlib/array-incrspace",00v -"@stdlib/array/int16",00w -"@stdlib/array-int16",00x -"@stdlib/array/int32",00y -"@stdlib/array-int32",00z -"@stdlib/array/int8",010 -"@stdlib/array-int8",011 -"@stdlib/array/linspace",012 -"@stdlib/array-linspace",013 -"@stdlib/array/logspace",014 -"@stdlib/array-logspace",015 -"@stdlib/array/min-dtype",016 -"@stdlib/array-min-dtype",017 -"@stdlib/array/next-dtype",018 -"@stdlib/array-next-dtype",019 -"@stdlib/array/ones-like",01A -"@stdlib/array-ones-like",01B -"@stdlib/array/ones",01C -"@stdlib/array-ones",01D -"@stdlib/array",01F -"@stdlib/array/pool",01G -"@stdlib/array-pool",01H -"@stdlib/array/promotion-rules",01I -"@stdlib/array-promotion-rules",01J -"@stdlib/array/reviver",01K -"@stdlib/array-reviver",01L -"@stdlib/array/safe-casts",01M -"@stdlib/array-safe-casts",01N -"@stdlib/array/same-kind-casts",01O -"@stdlib/array-same-kind-casts",01P -"@stdlib/array/shape",01Q -"@stdlib/array-shape",01R -"@stdlib/array/shared-buffer",01S -"@stdlib/array-shared-buffer",01T -"@stdlib/array/to-circular-iterator",01U -"@stdlib/array-to-circular-iterator",01V -"@stdlib/array/to-iterator-right",01W -"@stdlib/array-to-iterator-right",01X -"@stdlib/array/to-iterator",01Y -"@stdlib/array-to-iterator",01Z -"@stdlib/array/to-json",01a -"@stdlib/array-to-json",01b -"@stdlib/array/to-sparse-iterator-right",01c -"@stdlib/array-to-sparse-iterator-right",01d -"@stdlib/array/to-sparse-iterator",01e -"@stdlib/array-to-sparse-iterator",01f -"@stdlib/array/to-strided-iterator",01g -"@stdlib/array-to-strided-iterator",01h -"@stdlib/array/to-view-iterator-right",01i -"@stdlib/array-to-view-iterator-right",01j -"@stdlib/array/to-view-iterator",01k -"@stdlib/array-to-view-iterator",01l -"@stdlib/array/typed-complex-ctors",01m -"@stdlib/array-typed-complex-ctors",01n -"@stdlib/array/typed-complex-dtypes",01o -"@stdlib/array-typed-complex-dtypes",01p -"@stdlib/array/typed-complex",01q -"@stdlib/array-typed-complex",01r -"@stdlib/array/typed-ctors",01s -"@stdlib/array-typed-ctors",01t -"@stdlib/array/typed-dtypes",01u -"@stdlib/array-typed-dtypes",01v -"@stdlib/array/typed-float-ctors",01w -"@stdlib/array-typed-float-ctors",01x -"@stdlib/array/typed-float-dtypes",01y -"@stdlib/array-typed-float-dtypes",01z -"@stdlib/array/typed-integer-ctors",020 -"@stdlib/array-typed-integer-ctors",021 -"@stdlib/array/typed-integer-dtypes",022 -"@stdlib/array-typed-integer-dtypes",023 -"@stdlib/array/typed-real-ctors",024 -"@stdlib/array-typed-real-ctors",025 -"@stdlib/array/typed-real-dtypes",026 -"@stdlib/array-typed-real-dtypes",027 -"@stdlib/array/typed-real-float-ctors",028 -"@stdlib/array-typed-real-float-ctors",029 -"@stdlib/array/typed-real-float-dtypes",02A -"@stdlib/array-typed-real-float-dtypes",02B -"@stdlib/array/typed-real",02C -"@stdlib/array-typed-real",02D -"@stdlib/array/typed-signed-integer-ctors",02E -"@stdlib/array-typed-signed-integer-ctors",02F -"@stdlib/array/typed-signed-integer-dtypes",02G -"@stdlib/array-typed-signed-integer-dtypes",02H -"@stdlib/array/typed-unsigned-integer-ctors",02I -"@stdlib/array-typed-unsigned-integer-ctors",02J -"@stdlib/array/typed-unsigned-integer-dtypes",02K -"@stdlib/array-typed-unsigned-integer-dtypes",02L -"@stdlib/array/typed",02M -"@stdlib/array-typed",02N -"@stdlib/array/uint16",02O -"@stdlib/array-uint16",02P -"@stdlib/array/uint32",02Q -"@stdlib/array-uint32",02R -"@stdlib/array/uint8",02S -"@stdlib/array-uint8",02T -"@stdlib/array/uint8c",02U -"@stdlib/array-uint8c",02V -"@stdlib/array/zeros-like",02W -"@stdlib/array-zeros-like",02X -"@stdlib/array/zeros",02Y -"@stdlib/array-zeros",02Z -"@stdlib/assert/contains",02a -"@stdlib/assert-contains",02b -"@stdlib/assert/deep-equal",02c -"@stdlib/assert-deep-equal",02d -"@stdlib/assert/deep-has-own-property",02e -"@stdlib/assert-deep-has-own-property",02f -"@stdlib/assert/deep-has-property",02g -"@stdlib/assert-deep-has-property",02h -"@stdlib/assert/has-arraybuffer-support",02i -"@stdlib/assert-has-arraybuffer-support",02j -"@stdlib/assert/has-arrow-function-support",02k -"@stdlib/assert-has-arrow-function-support",02l -"@stdlib/assert/has-async-await-support",02m -"@stdlib/assert-has-async-await-support",02n -"@stdlib/assert/has-async-iterator-symbol-support",02o -"@stdlib/assert-has-async-iterator-symbol-support",02p -"@stdlib/assert/has-bigint-support",02q -"@stdlib/assert-has-bigint-support",02r -"@stdlib/assert/has-bigint64array-support",02s -"@stdlib/assert-has-bigint64array-support",02t -"@stdlib/assert/has-biguint64array-support",02u -"@stdlib/assert-has-biguint64array-support",02v -"@stdlib/assert/has-class-support",02w -"@stdlib/assert-has-class-support",02x -"@stdlib/assert/has-dataview-support",02y -"@stdlib/assert-has-dataview-support",02z -"@stdlib/assert/has-define-properties-support",030 -"@stdlib/assert-has-define-properties-support",031 -"@stdlib/assert/has-define-property-support",032 -"@stdlib/assert-has-define-property-support",033 -"@stdlib/assert/has-float32array-support",034 -"@stdlib/assert-has-float32array-support",035 -"@stdlib/assert/has-float64array-support",036 -"@stdlib/assert-has-float64array-support",037 -"@stdlib/assert/has-function-name-support",038 -"@stdlib/assert-has-function-name-support",039 -"@stdlib/assert/has-generator-support",03A -"@stdlib/assert-has-generator-support",03B -"@stdlib/assert/has-globalthis-support",03C -"@stdlib/assert-has-globalthis-support",03D -"@stdlib/assert/has-int16array-support",03E -"@stdlib/assert-has-int16array-support",03F -"@stdlib/assert/has-int32array-support",03G -"@stdlib/assert-has-int32array-support",03H -"@stdlib/assert/has-int8array-support",03I -"@stdlib/assert-has-int8array-support",03J -"@stdlib/assert/has-iterator-symbol-support",03K -"@stdlib/assert-has-iterator-symbol-support",03L -"@stdlib/assert/has-map-support",03M -"@stdlib/assert-has-map-support",03N -"@stdlib/assert/has-node-buffer-support",03O -"@stdlib/assert-has-node-buffer-support",03P -"@stdlib/assert/has-own-property",03Q -"@stdlib/assert-has-own-property",03R -"@stdlib/assert/has-property",03S -"@stdlib/assert-has-property",03T -"@stdlib/assert/has-proxy-support",03U -"@stdlib/assert-has-proxy-support",03V -"@stdlib/assert/has-set-support",03W -"@stdlib/assert-has-set-support",03X -"@stdlib/assert/has-sharedarraybuffer-support",03Y -"@stdlib/assert-has-sharedarraybuffer-support",03Z -"@stdlib/assert/has-symbol-support",03a -"@stdlib/assert-has-symbol-support",03b -"@stdlib/assert/has-tostringtag-support",03c -"@stdlib/assert-has-tostringtag-support",03d -"@stdlib/assert/has-uint16array-support",03e -"@stdlib/assert-has-uint16array-support",03f -"@stdlib/assert/has-uint32array-support",03g -"@stdlib/assert-has-uint32array-support",03h -"@stdlib/assert/has-uint8array-support",03i -"@stdlib/assert-has-uint8array-support",03j -"@stdlib/assert/has-uint8clampedarray-support",03k -"@stdlib/assert-has-uint8clampedarray-support",03l -"@stdlib/assert/has-utf16-surrogate-pair-at",03m -"@stdlib/assert-has-utf16-surrogate-pair-at",03n -"@stdlib/assert/has-wasm-support",03o -"@stdlib/assert-has-wasm-support",03p -"@stdlib/assert/has-weakmap-support",03q -"@stdlib/assert-has-weakmap-support",03r -"@stdlib/assert/has-weakset-support",03s -"@stdlib/assert-has-weakset-support",03t -"@stdlib/assert/instance-of",03u -"@stdlib/assert-instance-of",03v -"@stdlib/assert/is-absolute-http-uri",03w -"@stdlib/assert-is-absolute-http-uri",03x -"@stdlib/assert/is-absolute-path",03y -"@stdlib/assert-is-absolute-path",03z -"@stdlib/assert/is-absolute-uri",040 -"@stdlib/assert-is-absolute-uri",041 -"@stdlib/assert/is-accessor-property-in",042 -"@stdlib/assert-is-accessor-property-in",043 -"@stdlib/assert/is-accessor-property",044 -"@stdlib/assert-is-accessor-property",045 -"@stdlib/assert/is-alphagram",046 -"@stdlib/assert-is-alphagram",047 -"@stdlib/assert/is-alphanumeric",048 -"@stdlib/assert-is-alphanumeric",049 -"@stdlib/assert/is-anagram",04A -"@stdlib/assert-is-anagram",04B -"@stdlib/assert/is-arguments",04C -"@stdlib/assert-is-arguments",04D -"@stdlib/assert/is-array-array",04E -"@stdlib/assert-is-array-array",04F -"@stdlib/assert/is-array-length",04G -"@stdlib/assert-is-array-length",04H -"@stdlib/assert/is-array-like-object",04I -"@stdlib/assert-is-array-like-object",04J -"@stdlib/assert/is-array-like",04K -"@stdlib/assert-is-array-like",04L -"@stdlib/assert/is-array",04M -"@stdlib/assert-is-array",04N -"@stdlib/assert/is-arraybuffer-view",04O -"@stdlib/assert-is-arraybuffer-view",04P -"@stdlib/assert/is-arraybuffer",04Q -"@stdlib/assert-is-arraybuffer",04R -"@stdlib/assert/is-arrow-function",04S -"@stdlib/assert-is-arrow-function",04T -"@stdlib/assert/is-ascii",04U -"@stdlib/assert-is-ascii",04V -"@stdlib/assert/is-between-array",04W -"@stdlib/assert-is-between-array",04X -"@stdlib/assert/is-between",04Y -"@stdlib/assert-is-between",04Z -"@stdlib/assert/is-big-endian",04a -"@stdlib/assert-is-big-endian",04b -"@stdlib/assert/is-bigint",04c -"@stdlib/assert-is-bigint",04d -"@stdlib/assert/is-bigint64array",04e -"@stdlib/assert-is-bigint64array",04f -"@stdlib/assert/is-biguint64array",04g -"@stdlib/assert-is-biguint64array",04h -"@stdlib/assert/is-binary-string",04i -"@stdlib/assert-is-binary-string",04j -"@stdlib/assert/is-blank-string",04k -"@stdlib/assert-is-blank-string",04l -"@stdlib/assert/is-boolean-array",04m -"@stdlib/assert-is-boolean-array",04n -"@stdlib/assert/is-boolean",04o -"@stdlib/assert-is-boolean",04p -"@stdlib/assert/is-boxed-primitive",04q -"@stdlib/assert-is-boxed-primitive",04r -"@stdlib/assert/is-browser",04s -"@stdlib/assert-is-browser",04t -"@stdlib/assert/is-buffer",04u -"@stdlib/assert-is-buffer",04v -"@stdlib/assert/is-capitalized",04w -"@stdlib/assert-is-capitalized",04x -"@stdlib/assert/is-centrosymmetric-matrix",04y -"@stdlib/assert-is-centrosymmetric-matrix",04z -"@stdlib/assert/is-circular-array",050 -"@stdlib/assert-is-circular-array",051 -"@stdlib/assert/is-circular-plain-object",052 -"@stdlib/assert-is-circular-plain-object",053 -"@stdlib/assert/is-circular",054 -"@stdlib/assert-is-circular",055 -"@stdlib/assert/is-class",056 -"@stdlib/assert-is-class",057 -"@stdlib/assert/is-collection",058 -"@stdlib/assert-is-collection",059 -"@stdlib/assert/is-complex-like",05A -"@stdlib/assert-is-complex-like",05B -"@stdlib/assert/is-complex-typed-array-like",05C -"@stdlib/assert-is-complex-typed-array-like",05D -"@stdlib/assert/is-complex-typed-array",05E -"@stdlib/assert-is-complex-typed-array",05F -"@stdlib/assert/is-complex",05G -"@stdlib/assert-is-complex",05H -"@stdlib/assert/is-complex128",05I -"@stdlib/assert-is-complex128",05J -"@stdlib/assert/is-complex128array",05K -"@stdlib/assert-is-complex128array",05L -"@stdlib/assert/is-complex64",05M -"@stdlib/assert-is-complex64",05N -"@stdlib/assert/is-complex64array",05O -"@stdlib/assert-is-complex64array",05P -"@stdlib/assert/is-composite",05Q -"@stdlib/assert-is-composite",05R -"@stdlib/assert/is-configurable-property-in",05S -"@stdlib/assert-is-configurable-property-in",05T -"@stdlib/assert/is-configurable-property",05U -"@stdlib/assert-is-configurable-property",05V -"@stdlib/assert/is-cube-number",05W -"@stdlib/assert-is-cube-number",05X -"@stdlib/assert/is-darwin",05Y -"@stdlib/assert-is-darwin",05Z -"@stdlib/assert/is-data-property-in",05a -"@stdlib/assert-is-data-property-in",05b -"@stdlib/assert/is-data-property",05c -"@stdlib/assert-is-data-property",05d -"@stdlib/assert/is-dataview",05e -"@stdlib/assert-is-dataview",05f -"@stdlib/assert/is-date-object-array",05g -"@stdlib/assert-is-date-object-array",05h -"@stdlib/assert/is-date-object",05i -"@stdlib/assert-is-date-object",05j -"@stdlib/assert/is-digit-string",05k -"@stdlib/assert-is-digit-string",05l -"@stdlib/assert/is-docker",05m -"@stdlib/assert-is-docker",05n -"@stdlib/assert/is-electron-main",05o -"@stdlib/assert-is-electron-main",05p -"@stdlib/assert/is-electron-renderer",05q -"@stdlib/assert-is-electron-renderer",05r -"@stdlib/assert/is-electron",05s -"@stdlib/assert-is-electron",05t -"@stdlib/assert/is-email-address",05u -"@stdlib/assert-is-email-address",05v -"@stdlib/assert/is-empty-array-like-object",05w -"@stdlib/assert-is-empty-array-like-object",05x -"@stdlib/assert/is-empty-array",05y -"@stdlib/assert-is-empty-array",05z -"@stdlib/assert/is-empty-collection",060 -"@stdlib/assert-is-empty-collection",061 -"@stdlib/assert/is-empty-object",062 -"@stdlib/assert-is-empty-object",063 -"@stdlib/assert/is-empty-string",064 -"@stdlib/assert-is-empty-string",065 -"@stdlib/assert/is-enumerable-property-in",066 -"@stdlib/assert-is-enumerable-property-in",067 -"@stdlib/assert/is-enumerable-property",068 -"@stdlib/assert-is-enumerable-property",069 -"@stdlib/assert/is-error",06A -"@stdlib/assert-is-error",06B -"@stdlib/assert/is-eval-error",06C -"@stdlib/assert-is-eval-error",06D -"@stdlib/assert/is-even",06E -"@stdlib/assert-is-even",06F -"@stdlib/assert/is-falsy-array",06G -"@stdlib/assert-is-falsy-array",06H -"@stdlib/assert/is-falsy",06I -"@stdlib/assert-is-falsy",06J -"@stdlib/assert/is-finite-array",06K -"@stdlib/assert-is-finite-array",06L -"@stdlib/assert/is-finite",06M -"@stdlib/assert-is-finite",06N -"@stdlib/assert/is-float32array",06O -"@stdlib/assert-is-float32array",06P -"@stdlib/assert/is-float32matrix-like",06Q -"@stdlib/assert-is-float32matrix-like",06R -"@stdlib/assert/is-float32ndarray-like",06S -"@stdlib/assert-is-float32ndarray-like",06T -"@stdlib/assert/is-float32vector-like",06U -"@stdlib/assert-is-float32vector-like",06V -"@stdlib/assert/is-float64array",06W -"@stdlib/assert-is-float64array",06X -"@stdlib/assert/is-float64matrix-like",06Y -"@stdlib/assert-is-float64matrix-like",06Z -"@stdlib/assert/is-float64ndarray-like",06a -"@stdlib/assert-is-float64ndarray-like",06b -"@stdlib/assert/is-float64vector-like",06c -"@stdlib/assert-is-float64vector-like",06d -"@stdlib/assert/is-function-array",06e -"@stdlib/assert-is-function-array",06f -"@stdlib/assert/is-function",06g -"@stdlib/assert-is-function",06h -"@stdlib/assert/is-generator-object-like",06i -"@stdlib/assert-is-generator-object-like",06j -"@stdlib/assert/is-generator-object",06k -"@stdlib/assert-is-generator-object",06l -"@stdlib/assert/is-gzip-buffer",06m -"@stdlib/assert-is-gzip-buffer",06n -"@stdlib/assert/is-hex-string",06o -"@stdlib/assert-is-hex-string",06p -"@stdlib/assert/is-infinite",06q -"@stdlib/assert-is-infinite",06r -"@stdlib/assert/is-inherited-property",06s -"@stdlib/assert-is-inherited-property",06t -"@stdlib/assert/is-int16array",06u -"@stdlib/assert-is-int16array",06v -"@stdlib/assert/is-int32array",06w -"@stdlib/assert-is-int32array",06x -"@stdlib/assert/is-int8array",06y -"@stdlib/assert-is-int8array",06z -"@stdlib/assert/is-integer-array",070 -"@stdlib/assert-is-integer-array",071 -"@stdlib/assert/is-integer",072 -"@stdlib/assert-is-integer",073 -"@stdlib/assert/is-iterable-like",074 -"@stdlib/assert-is-iterable-like",075 -"@stdlib/assert/is-iterator-like",076 -"@stdlib/assert-is-iterator-like",077 -"@stdlib/assert/is-json",078 -"@stdlib/assert-is-json",079 -"@stdlib/assert/is-leap-year",07A -"@stdlib/assert-is-leap-year",07B -"@stdlib/assert/is-little-endian",07C -"@stdlib/assert-is-little-endian",07D -"@stdlib/assert/is-localhost",07E -"@stdlib/assert-is-localhost",07F -"@stdlib/assert/is-lowercase",07G -"@stdlib/assert-is-lowercase",07H -"@stdlib/assert/is-matrix-like",07I -"@stdlib/assert-is-matrix-like",07J -"@stdlib/assert/is-method-in",07K -"@stdlib/assert-is-method-in",07L -"@stdlib/assert/is-method",07M -"@stdlib/assert-is-method",07N -"@stdlib/assert/is-mobile",07O -"@stdlib/assert-is-mobile",07P -"@stdlib/assert/is-named-typed-tuple-like",07Q -"@stdlib/assert-is-named-typed-tuple-like",07R -"@stdlib/assert/is-nan-array",07S -"@stdlib/assert-is-nan-array",07T -"@stdlib/assert/is-nan",07U -"@stdlib/assert-is-nan",07V -"@stdlib/assert/is-native-function",07W -"@stdlib/assert-is-native-function",07X -"@stdlib/assert/is-ndarray-like",07Y -"@stdlib/assert-is-ndarray-like",07Z -"@stdlib/assert/is-negative-integer-array",07a -"@stdlib/assert-is-negative-integer-array",07b -"@stdlib/assert/is-negative-integer",07c -"@stdlib/assert-is-negative-integer",07d -"@stdlib/assert/is-negative-number-array",07e -"@stdlib/assert-is-negative-number-array",07f -"@stdlib/assert/is-negative-number",07g -"@stdlib/assert-is-negative-number",07h -"@stdlib/assert/is-negative-zero",07i -"@stdlib/assert-is-negative-zero",07j -"@stdlib/assert/is-node-builtin",07k -"@stdlib/assert-is-node-builtin",07l -"@stdlib/assert/is-node-duplex-stream-like",07m -"@stdlib/assert-is-node-duplex-stream-like",07n -"@stdlib/assert/is-node-readable-stream-like",07o -"@stdlib/assert-is-node-readable-stream-like",07p -"@stdlib/assert/is-node-repl",07q -"@stdlib/assert-is-node-repl",07r -"@stdlib/assert/is-node-stream-like",07s -"@stdlib/assert-is-node-stream-like",07t -"@stdlib/assert/is-node-transform-stream-like",07u -"@stdlib/assert-is-node-transform-stream-like",07v -"@stdlib/assert/is-node-writable-stream-like",07w -"@stdlib/assert-is-node-writable-stream-like",07x -"@stdlib/assert/is-node",07y -"@stdlib/assert-is-node",07z -"@stdlib/assert/is-nonconfigurable-property-in",080 -"@stdlib/assert-is-nonconfigurable-property-in",081 -"@stdlib/assert/is-nonconfigurable-property",082 -"@stdlib/assert-is-nonconfigurable-property",083 -"@stdlib/assert/is-nonenumerable-property-in",084 -"@stdlib/assert-is-nonenumerable-property-in",085 -"@stdlib/assert/is-nonenumerable-property",086 -"@stdlib/assert-is-nonenumerable-property",087 -"@stdlib/assert/is-nonnegative-integer-array",088 -"@stdlib/assert-is-nonnegative-integer-array",089 -"@stdlib/assert/is-nonnegative-integer",08A -"@stdlib/assert-is-nonnegative-integer",08B -"@stdlib/assert/is-nonnegative-number-array",08C -"@stdlib/assert-is-nonnegative-number-array",08D -"@stdlib/assert/is-nonnegative-number",08E -"@stdlib/assert-is-nonnegative-number",08F -"@stdlib/assert/is-nonpositive-integer-array",08G -"@stdlib/assert-is-nonpositive-integer-array",08H -"@stdlib/assert/is-nonpositive-integer",08I -"@stdlib/assert-is-nonpositive-integer",08J -"@stdlib/assert/is-nonpositive-number-array",08K -"@stdlib/assert-is-nonpositive-number-array",08L -"@stdlib/assert/is-nonpositive-number",08M -"@stdlib/assert-is-nonpositive-number",08N -"@stdlib/assert/is-nonsymmetric-matrix",08O -"@stdlib/assert-is-nonsymmetric-matrix",08P -"@stdlib/assert/is-null-array",08Q -"@stdlib/assert-is-null-array",08R -"@stdlib/assert/is-null",08S -"@stdlib/assert-is-null",08T -"@stdlib/assert/is-number-array",08U -"@stdlib/assert-is-number-array",08V -"@stdlib/assert/is-number",08W -"@stdlib/assert-is-number",08X -"@stdlib/assert/is-numeric-array",08Y -"@stdlib/assert-is-numeric-array",08Z -"@stdlib/assert/is-object-array",08a -"@stdlib/assert-is-object-array",08b -"@stdlib/assert/is-object-like",08c -"@stdlib/assert-is-object-like",08d -"@stdlib/assert/is-object",08e -"@stdlib/assert-is-object",08f -"@stdlib/assert/is-odd",08g -"@stdlib/assert-is-odd",08h -"@stdlib/assert/is-persymmetric-matrix",08i -"@stdlib/assert-is-persymmetric-matrix",08j -"@stdlib/assert/is-plain-object-array",08k -"@stdlib/assert-is-plain-object-array",08l -"@stdlib/assert/is-plain-object",08m -"@stdlib/assert-is-plain-object",08n -"@stdlib/assert/is-positive-integer-array",08o -"@stdlib/assert-is-positive-integer-array",08p -"@stdlib/assert/is-positive-integer",08q -"@stdlib/assert-is-positive-integer",08r -"@stdlib/assert/is-positive-number-array",08s -"@stdlib/assert-is-positive-number-array",08t -"@stdlib/assert/is-positive-number",08u -"@stdlib/assert-is-positive-number",08v -"@stdlib/assert/is-positive-zero",08w -"@stdlib/assert-is-positive-zero",08x -"@stdlib/assert/is-prime",08y -"@stdlib/assert-is-prime",08z -"@stdlib/assert/is-primitive-array",090 -"@stdlib/assert-is-primitive-array",091 -"@stdlib/assert/is-primitive",092 -"@stdlib/assert-is-primitive",093 -"@stdlib/assert/is-prng-like",094 -"@stdlib/assert-is-prng-like",095 -"@stdlib/assert/is-probability-array",096 -"@stdlib/assert-is-probability-array",097 -"@stdlib/assert/is-probability",098 -"@stdlib/assert-is-probability",099 -"@stdlib/assert/is-property-key",09A -"@stdlib/assert-is-property-key",09B -"@stdlib/assert/is-prototype-of",09C -"@stdlib/assert-is-prototype-of",09D -"@stdlib/assert/is-range-error",09E -"@stdlib/assert-is-range-error",09F -"@stdlib/assert/is-read-only-property-in",09G -"@stdlib/assert-is-read-only-property-in",09H -"@stdlib/assert/is-read-only-property",09I -"@stdlib/assert-is-read-only-property",09J -"@stdlib/assert/is-read-write-property-in",09K -"@stdlib/assert-is-read-write-property-in",09L -"@stdlib/assert/is-read-write-property",09M -"@stdlib/assert-is-read-write-property",09N -"@stdlib/assert/is-readable-property-in",09O -"@stdlib/assert-is-readable-property-in",09P -"@stdlib/assert/is-readable-property",09Q -"@stdlib/assert-is-readable-property",09R -"@stdlib/assert/is-reference-error",09S -"@stdlib/assert-is-reference-error",09T -"@stdlib/assert/is-regexp-string",09U -"@stdlib/assert-is-regexp-string",09V -"@stdlib/assert/is-regexp",09W -"@stdlib/assert-is-regexp",09X -"@stdlib/assert/is-relative-path",09Y -"@stdlib/assert-is-relative-path",09Z -"@stdlib/assert/is-relative-uri",09a -"@stdlib/assert-is-relative-uri",09b -"@stdlib/assert/is-safe-integer-array",09c -"@stdlib/assert-is-safe-integer-array",09d -"@stdlib/assert/is-safe-integer",09e -"@stdlib/assert-is-safe-integer",09f -"@stdlib/assert/is-same-native-class",09g -"@stdlib/assert-is-same-native-class",09h -"@stdlib/assert/is-same-type",09i -"@stdlib/assert-is-same-type",09j -"@stdlib/assert/is-same-value-zero",09k -"@stdlib/assert-is-same-value-zero",09l -"@stdlib/assert/is-same-value",09m -"@stdlib/assert-is-same-value",09n -"@stdlib/assert/is-sharedarraybuffer",09o -"@stdlib/assert-is-sharedarraybuffer",09p -"@stdlib/assert/is-skew-centrosymmetric-matrix",09q -"@stdlib/assert-is-skew-centrosymmetric-matrix",09r -"@stdlib/assert/is-skew-persymmetric-matrix",09s -"@stdlib/assert-is-skew-persymmetric-matrix",09t -"@stdlib/assert/is-skew-symmetric-matrix",09u -"@stdlib/assert-is-skew-symmetric-matrix",09v -"@stdlib/assert/is-square-matrix",09w -"@stdlib/assert-is-square-matrix",09x -"@stdlib/assert/is-square-number",09y -"@stdlib/assert-is-square-number",09z -"@stdlib/assert/is-square-triangular-number",0A0 -"@stdlib/assert-is-square-triangular-number",0A1 -"@stdlib/assert/is-strict-equal",0A2 -"@stdlib/assert-is-strict-equal",0A3 -"@stdlib/assert/is-string-array",0A4 -"@stdlib/assert-is-string-array",0A5 -"@stdlib/assert/is-string",0A6 -"@stdlib/assert-is-string",0A7 -"@stdlib/assert/is-symbol-array",0A8 -"@stdlib/assert-is-symbol-array",0A9 -"@stdlib/assert/is-symbol",0AA -"@stdlib/assert-is-symbol",0AB -"@stdlib/assert/is-symmetric-matrix",0AC -"@stdlib/assert-is-symmetric-matrix",0AD -"@stdlib/assert/is-syntax-error",0AE -"@stdlib/assert-is-syntax-error",0AF -"@stdlib/assert/is-touch-device",0AG -"@stdlib/assert-is-touch-device",0AH -"@stdlib/assert/is-triangular-number",0AI -"@stdlib/assert-is-triangular-number",0AJ -"@stdlib/assert/is-truthy-array",0AK -"@stdlib/assert-is-truthy-array",0AL -"@stdlib/assert/is-truthy",0AM -"@stdlib/assert-is-truthy",0AN -"@stdlib/assert/is-type-error",0AO -"@stdlib/assert-is-type-error",0AP -"@stdlib/assert/is-typed-array-length",0AQ -"@stdlib/assert-is-typed-array-length",0AR -"@stdlib/assert/is-typed-array-like",0AS -"@stdlib/assert-is-typed-array-like",0AT -"@stdlib/assert/is-typed-array",0AU -"@stdlib/assert-is-typed-array",0AV -"@stdlib/assert/is-uint16array",0AW -"@stdlib/assert-is-uint16array",0AX -"@stdlib/assert/is-uint32array",0AY -"@stdlib/assert-is-uint32array",0AZ -"@stdlib/assert/is-uint8array",0Aa -"@stdlib/assert-is-uint8array",0Ab -"@stdlib/assert/is-uint8clampedarray",0Ac -"@stdlib/assert-is-uint8clampedarray",0Ad -"@stdlib/assert/is-unc-path",0Ae -"@stdlib/assert-is-unc-path",0Af -"@stdlib/assert/is-undefined-or-null",0Ag -"@stdlib/assert-is-undefined-or-null",0Ah -"@stdlib/assert/is-undefined",0Ai -"@stdlib/assert-is-undefined",0Aj -"@stdlib/assert/is-unity-probability-array",0Ak -"@stdlib/assert-is-unity-probability-array",0Al -"@stdlib/assert/is-uppercase",0Am -"@stdlib/assert-is-uppercase",0An -"@stdlib/assert/is-uri-error",0Ao -"@stdlib/assert-is-uri-error",0Ap -"@stdlib/assert/is-uri",0Aq -"@stdlib/assert-is-uri",0Ar -"@stdlib/assert/is-vector-like",0As -"@stdlib/assert-is-vector-like",0At -"@stdlib/assert/is-web-worker",0Au -"@stdlib/assert-is-web-worker",0Av -"@stdlib/assert/is-whitespace",0Aw -"@stdlib/assert-is-whitespace",0Ax -"@stdlib/assert/is-windows",0Ay -"@stdlib/assert-is-windows",0Az -"@stdlib/assert/is-writable-property-in",0B0 -"@stdlib/assert-is-writable-property-in",0B1 -"@stdlib/assert/is-writable-property",0B2 -"@stdlib/assert-is-writable-property",0B3 -"@stdlib/assert/is-write-only-property-in",0B4 -"@stdlib/assert-is-write-only-property-in",0B5 -"@stdlib/assert/is-write-only-property",0B6 -"@stdlib/assert-is-write-only-property",0B7 -"@stdlib/assert",0B9 -"@stdlib/assert/tools/array-function",0BA -"@stdlib/assert-tools-array-function",0BB -"@stdlib/assert/tools/array-like-function",0BC -"@stdlib/assert-tools-array-like-function",0BD -"@stdlib/assert/tools",0BE -"@stdlib/assert-tools",0BF -"@stdlib/assert/tools/typed-array-function",0BG -"@stdlib/assert-tools-typed-array-function",0BH -"@stdlib/bench/harness",0BI -"@stdlib/bench-harness",0BJ -"@stdlib/bench",0BL -"@stdlib/bigint/ctor",0BM -"@stdlib/bigint-ctor",0BN -"@stdlib/bigint",0BP -"@stdlib/blas/base/ccopy",0BQ -"@stdlib/blas-base-ccopy",0BR -"@stdlib/blas/base/cswap",0BS -"@stdlib/blas-base-cswap",0BT -"@stdlib/blas/base/dasum",0BU -"@stdlib/blas-base-dasum",0BV -"@stdlib/blas/base/daxpy",0BW -"@stdlib/blas-base-daxpy",0BX -"@stdlib/blas/base/dcopy",0BY -"@stdlib/blas-base-dcopy",0BZ -"@stdlib/blas/base/ddot",0Ba -"@stdlib/blas-base-ddot",0Bb -"@stdlib/blas/base/dnrm2",0Bc -"@stdlib/blas-base-dnrm2",0Bd -"@stdlib/blas/base/dscal",0Be -"@stdlib/blas-base-dscal",0Bf -"@stdlib/blas/base/dsdot",0Bg -"@stdlib/blas-base-dsdot",0Bh -"@stdlib/blas/base/dswap",0Bi -"@stdlib/blas-base-dswap",0Bj -"@stdlib/blas/base/gasum",0Bk -"@stdlib/blas-base-gasum",0Bl -"@stdlib/blas/base/gaxpy",0Bm -"@stdlib/blas-base-gaxpy",0Bn -"@stdlib/blas/base/gcopy",0Bo -"@stdlib/blas-base-gcopy",0Bp -"@stdlib/blas/base/gdot",0Bq -"@stdlib/blas-base-gdot",0Br -"@stdlib/blas/base/gnrm2",0Bs -"@stdlib/blas-base-gnrm2",0Bt -"@stdlib/blas/base/gscal",0Bu -"@stdlib/blas-base-gscal",0Bv -"@stdlib/blas/base/gswap",0Bw -"@stdlib/blas-base-gswap",0Bx -"@stdlib/blas/base",0By -"@stdlib/blas-base",0Bz -"@stdlib/blas/base/sasum",0C0 -"@stdlib/blas-base-sasum",0C1 -"@stdlib/blas/base/saxpy",0C2 -"@stdlib/blas-base-saxpy",0C3 -"@stdlib/blas/base/scopy",0C4 -"@stdlib/blas-base-scopy",0C5 -"@stdlib/blas/base/sdot",0C6 -"@stdlib/blas-base-sdot",0C7 -"@stdlib/blas/base/sdsdot",0C8 -"@stdlib/blas-base-sdsdot",0C9 -"@stdlib/blas/base/snrm2",0CA -"@stdlib/blas-base-snrm2",0CB -"@stdlib/blas/base/sscal",0CC -"@stdlib/blas-base-sscal",0CD -"@stdlib/blas/base/sswap",0CE -"@stdlib/blas-base-sswap",0CF -"@stdlib/blas/ddot",0CG -"@stdlib/blas-ddot",0CH -"@stdlib/blas/dswap",0CI -"@stdlib/blas-dswap",0CJ -"@stdlib/blas/ext/base/dapx",0CK -"@stdlib/blas-ext-base-dapx",0CL -"@stdlib/blas/ext/base/dapxsum",0CM -"@stdlib/blas-ext-base-dapxsum",0CN -"@stdlib/blas/ext/base/dapxsumkbn",0CO -"@stdlib/blas-ext-base-dapxsumkbn",0CP -"@stdlib/blas/ext/base/dapxsumkbn2",0CQ -"@stdlib/blas-ext-base-dapxsumkbn2",0CR -"@stdlib/blas/ext/base/dapxsumors",0CS -"@stdlib/blas-ext-base-dapxsumors",0CT -"@stdlib/blas/ext/base/dapxsumpw",0CU -"@stdlib/blas-ext-base-dapxsumpw",0CV -"@stdlib/blas/ext/base/dasumpw",0CW -"@stdlib/blas-ext-base-dasumpw",0CX -"@stdlib/blas/ext/base/dcusum",0CY -"@stdlib/blas-ext-base-dcusum",0CZ -"@stdlib/blas/ext/base/dcusumkbn",0Ca -"@stdlib/blas-ext-base-dcusumkbn",0Cb -"@stdlib/blas/ext/base/dcusumkbn2",0Cc -"@stdlib/blas-ext-base-dcusumkbn2",0Cd -"@stdlib/blas/ext/base/dcusumors",0Ce -"@stdlib/blas-ext-base-dcusumors",0Cf -"@stdlib/blas/ext/base/dcusumpw",0Cg -"@stdlib/blas-ext-base-dcusumpw",0Ch -"@stdlib/blas/ext/base/dfill",0Ci -"@stdlib/blas-ext-base-dfill",0Cj -"@stdlib/blas/ext/base/dnanasum",0Ck -"@stdlib/blas-ext-base-dnanasum",0Cl -"@stdlib/blas/ext/base/dnanasumors",0Cm -"@stdlib/blas-ext-base-dnanasumors",0Cn -"@stdlib/blas/ext/base/dnannsum",0Co -"@stdlib/blas-ext-base-dnannsum",0Cp -"@stdlib/blas/ext/base/dnannsumkbn",0Cq -"@stdlib/blas-ext-base-dnannsumkbn",0Cr -"@stdlib/blas/ext/base/dnannsumkbn2",0Cs -"@stdlib/blas-ext-base-dnannsumkbn2",0Ct -"@stdlib/blas/ext/base/dnannsumors",0Cu -"@stdlib/blas-ext-base-dnannsumors",0Cv -"@stdlib/blas/ext/base/dnannsumpw",0Cw -"@stdlib/blas-ext-base-dnannsumpw",0Cx -"@stdlib/blas/ext/base/dnansum",0Cy -"@stdlib/blas-ext-base-dnansum",0Cz -"@stdlib/blas/ext/base/dnansumkbn",0D0 -"@stdlib/blas-ext-base-dnansumkbn",0D1 -"@stdlib/blas/ext/base/dnansumkbn2",0D2 -"@stdlib/blas-ext-base-dnansumkbn2",0D3 -"@stdlib/blas/ext/base/dnansumors",0D4 -"@stdlib/blas-ext-base-dnansumors",0D5 -"@stdlib/blas/ext/base/dnansumpw",0D6 -"@stdlib/blas-ext-base-dnansumpw",0D7 -"@stdlib/blas/ext/base/drev",0D8 -"@stdlib/blas-ext-base-drev",0D9 -"@stdlib/blas/ext/base/dsapxsum",0DA -"@stdlib/blas-ext-base-dsapxsum",0DB -"@stdlib/blas/ext/base/dsapxsumpw",0DC -"@stdlib/blas-ext-base-dsapxsumpw",0DD -"@stdlib/blas/ext/base/dsnannsumors",0DE -"@stdlib/blas-ext-base-dsnannsumors",0DF -"@stdlib/blas/ext/base/dsnansum",0DG -"@stdlib/blas-ext-base-dsnansum",0DH -"@stdlib/blas/ext/base/dsnansumors",0DI -"@stdlib/blas-ext-base-dsnansumors",0DJ -"@stdlib/blas/ext/base/dsnansumpw",0DK -"@stdlib/blas-ext-base-dsnansumpw",0DL -"@stdlib/blas/ext/base/dsort2hp",0DM -"@stdlib/blas-ext-base-dsort2hp",0DN -"@stdlib/blas/ext/base/dsort2ins",0DO -"@stdlib/blas-ext-base-dsort2ins",0DP -"@stdlib/blas/ext/base/dsort2sh",0DQ -"@stdlib/blas-ext-base-dsort2sh",0DR -"@stdlib/blas/ext/base/dsorthp",0DS -"@stdlib/blas-ext-base-dsorthp",0DT -"@stdlib/blas/ext/base/dsortins",0DU -"@stdlib/blas-ext-base-dsortins",0DV -"@stdlib/blas/ext/base/dsortsh",0DW -"@stdlib/blas-ext-base-dsortsh",0DX -"@stdlib/blas/ext/base/dssum",0DY -"@stdlib/blas-ext-base-dssum",0DZ -"@stdlib/blas/ext/base/dssumors",0Da -"@stdlib/blas-ext-base-dssumors",0Db -"@stdlib/blas/ext/base/dssumpw",0Dc -"@stdlib/blas-ext-base-dssumpw",0Dd -"@stdlib/blas/ext/base/dsum",0De -"@stdlib/blas-ext-base-dsum",0Df -"@stdlib/blas/ext/base/dsumkbn",0Dg -"@stdlib/blas-ext-base-dsumkbn",0Dh -"@stdlib/blas/ext/base/dsumkbn2",0Di -"@stdlib/blas-ext-base-dsumkbn2",0Dj -"@stdlib/blas/ext/base/dsumors",0Dk -"@stdlib/blas-ext-base-dsumors",0Dl -"@stdlib/blas/ext/base/dsumpw",0Dm -"@stdlib/blas-ext-base-dsumpw",0Dn -"@stdlib/blas/ext/base/gapx",0Do -"@stdlib/blas-ext-base-gapx",0Dp -"@stdlib/blas/ext/base/gapxsum",0Dq -"@stdlib/blas-ext-base-gapxsum",0Dr -"@stdlib/blas/ext/base/gapxsumkbn",0Ds -"@stdlib/blas-ext-base-gapxsumkbn",0Dt -"@stdlib/blas/ext/base/gapxsumkbn2",0Du -"@stdlib/blas-ext-base-gapxsumkbn2",0Dv -"@stdlib/blas/ext/base/gapxsumors",0Dw -"@stdlib/blas-ext-base-gapxsumors",0Dx -"@stdlib/blas/ext/base/gapxsumpw",0Dy -"@stdlib/blas-ext-base-gapxsumpw",0Dz -"@stdlib/blas/ext/base/gasumpw",0E0 -"@stdlib/blas-ext-base-gasumpw",0E1 -"@stdlib/blas/ext/base/gcusum",0E2 -"@stdlib/blas-ext-base-gcusum",0E3 -"@stdlib/blas/ext/base/gcusumkbn",0E4 -"@stdlib/blas-ext-base-gcusumkbn",0E5 -"@stdlib/blas/ext/base/gcusumkbn2",0E6 -"@stdlib/blas-ext-base-gcusumkbn2",0E7 -"@stdlib/blas/ext/base/gcusumors",0E8 -"@stdlib/blas-ext-base-gcusumors",0E9 -"@stdlib/blas/ext/base/gcusumpw",0EA -"@stdlib/blas-ext-base-gcusumpw",0EB -"@stdlib/blas/ext/base/gfill-by",0EC -"@stdlib/blas-ext-base-gfill-by",0ED -"@stdlib/blas/ext/base/gfill",0EE -"@stdlib/blas-ext-base-gfill",0EF -"@stdlib/blas/ext/base/gnannsumkbn",0EG -"@stdlib/blas-ext-base-gnannsumkbn",0EH -"@stdlib/blas/ext/base/gnansum",0EI -"@stdlib/blas-ext-base-gnansum",0EJ -"@stdlib/blas/ext/base/gnansumkbn",0EK -"@stdlib/blas-ext-base-gnansumkbn",0EL -"@stdlib/blas/ext/base/gnansumkbn2",0EM -"@stdlib/blas-ext-base-gnansumkbn2",0EN -"@stdlib/blas/ext/base/gnansumors",0EO -"@stdlib/blas-ext-base-gnansumors",0EP -"@stdlib/blas/ext/base/gnansumpw",0EQ -"@stdlib/blas-ext-base-gnansumpw",0ER -"@stdlib/blas/ext/base/grev",0ES -"@stdlib/blas-ext-base-grev",0ET -"@stdlib/blas/ext/base/gsort2hp",0EU -"@stdlib/blas-ext-base-gsort2hp",0EV -"@stdlib/blas/ext/base/gsort2ins",0EW -"@stdlib/blas-ext-base-gsort2ins",0EX -"@stdlib/blas/ext/base/gsort2sh",0EY -"@stdlib/blas-ext-base-gsort2sh",0EZ -"@stdlib/blas/ext/base/gsorthp",0Ea -"@stdlib/blas-ext-base-gsorthp",0Eb -"@stdlib/blas/ext/base/gsortins",0Ec -"@stdlib/blas-ext-base-gsortins",0Ed -"@stdlib/blas/ext/base/gsortsh",0Ee -"@stdlib/blas-ext-base-gsortsh",0Ef -"@stdlib/blas/ext/base/gsum",0Eg -"@stdlib/blas-ext-base-gsum",0Eh -"@stdlib/blas/ext/base/gsumkbn",0Ei -"@stdlib/blas-ext-base-gsumkbn",0Ej -"@stdlib/blas/ext/base/gsumkbn2",0Ek -"@stdlib/blas-ext-base-gsumkbn2",0El -"@stdlib/blas/ext/base/gsumors",0Em -"@stdlib/blas-ext-base-gsumors",0En -"@stdlib/blas/ext/base/gsumpw",0Eo -"@stdlib/blas-ext-base-gsumpw",0Ep -"@stdlib/blas/ext/base",0Eq -"@stdlib/blas-ext-base",0Er -"@stdlib/blas/ext/base/sapx",0Es -"@stdlib/blas-ext-base-sapx",0Et -"@stdlib/blas/ext/base/sapxsum",0Eu -"@stdlib/blas-ext-base-sapxsum",0Ev -"@stdlib/blas/ext/base/sapxsumkbn",0Ew -"@stdlib/blas-ext-base-sapxsumkbn",0Ex -"@stdlib/blas/ext/base/sapxsumkbn2",0Ey -"@stdlib/blas-ext-base-sapxsumkbn2",0Ez -"@stdlib/blas/ext/base/sapxsumors",0F0 -"@stdlib/blas-ext-base-sapxsumors",0F1 -"@stdlib/blas/ext/base/sapxsumpw",0F2 -"@stdlib/blas-ext-base-sapxsumpw",0F3 -"@stdlib/blas/ext/base/sasumpw",0F4 -"@stdlib/blas-ext-base-sasumpw",0F5 -"@stdlib/blas/ext/base/scusum",0F6 -"@stdlib/blas-ext-base-scusum",0F7 -"@stdlib/blas/ext/base/scusumkbn",0F8 -"@stdlib/blas-ext-base-scusumkbn",0F9 -"@stdlib/blas/ext/base/scusumkbn2",0FA -"@stdlib/blas-ext-base-scusumkbn2",0FB -"@stdlib/blas/ext/base/scusumors",0FC -"@stdlib/blas-ext-base-scusumors",0FD -"@stdlib/blas/ext/base/scusumpw",0FE -"@stdlib/blas-ext-base-scusumpw",0FF -"@stdlib/blas/ext/base/sdsapxsum",0FG -"@stdlib/blas-ext-base-sdsapxsum",0FH -"@stdlib/blas/ext/base/sdsapxsumpw",0FI -"@stdlib/blas-ext-base-sdsapxsumpw",0FJ -"@stdlib/blas/ext/base/sdsnansum",0FK -"@stdlib/blas-ext-base-sdsnansum",0FL -"@stdlib/blas/ext/base/sdsnansumpw",0FM -"@stdlib/blas-ext-base-sdsnansumpw",0FN -"@stdlib/blas/ext/base/sdssum",0FO -"@stdlib/blas-ext-base-sdssum",0FP -"@stdlib/blas/ext/base/sdssumpw",0FQ -"@stdlib/blas-ext-base-sdssumpw",0FR -"@stdlib/blas/ext/base/sfill",0FS -"@stdlib/blas-ext-base-sfill",0FT -"@stdlib/blas/ext/base/snansum",0FU -"@stdlib/blas-ext-base-snansum",0FV -"@stdlib/blas/ext/base/snansumkbn",0FW -"@stdlib/blas-ext-base-snansumkbn",0FX -"@stdlib/blas/ext/base/snansumkbn2",0FY -"@stdlib/blas-ext-base-snansumkbn2",0FZ -"@stdlib/blas/ext/base/snansumors",0Fa -"@stdlib/blas-ext-base-snansumors",0Fb -"@stdlib/blas/ext/base/snansumpw",0Fc -"@stdlib/blas-ext-base-snansumpw",0Fd -"@stdlib/blas/ext/base/srev",0Fe -"@stdlib/blas-ext-base-srev",0Ff -"@stdlib/blas/ext/base/ssort2hp",0Fg -"@stdlib/blas-ext-base-ssort2hp",0Fh -"@stdlib/blas/ext/base/ssort2ins",0Fi -"@stdlib/blas-ext-base-ssort2ins",0Fj -"@stdlib/blas/ext/base/ssort2sh",0Fk -"@stdlib/blas-ext-base-ssort2sh",0Fl -"@stdlib/blas/ext/base/ssorthp",0Fm -"@stdlib/blas-ext-base-ssorthp",0Fn -"@stdlib/blas/ext/base/ssortins",0Fo -"@stdlib/blas-ext-base-ssortins",0Fp -"@stdlib/blas/ext/base/ssortsh",0Fq -"@stdlib/blas-ext-base-ssortsh",0Fr -"@stdlib/blas/ext/base/ssum",0Fs -"@stdlib/blas-ext-base-ssum",0Ft -"@stdlib/blas/ext/base/ssumkbn",0Fu -"@stdlib/blas-ext-base-ssumkbn",0Fv -"@stdlib/blas/ext/base/ssumkbn2",0Fw -"@stdlib/blas-ext-base-ssumkbn2",0Fx -"@stdlib/blas/ext/base/ssumors",0Fy -"@stdlib/blas-ext-base-ssumors",0Fz -"@stdlib/blas/ext/base/ssumpw",0G0 -"@stdlib/blas-ext-base-ssumpw",0G1 -"@stdlib/blas/ext",0G2 -"@stdlib/blas-ext",0G3 -"@stdlib/blas/gdot",0G4 -"@stdlib/blas-gdot",0G5 -"@stdlib/blas/gswap",0G6 -"@stdlib/blas-gswap",0G7 -"@stdlib/blas",0G9 -"@stdlib/blas/sdot",0GA -"@stdlib/blas-sdot",0GB -"@stdlib/blas/sswap",0GC -"@stdlib/blas-sswap",0GD -"@stdlib/buffer/alloc-unsafe",0GE -"@stdlib/buffer-alloc-unsafe",0GF -"@stdlib/buffer/ctor",0GG -"@stdlib/buffer-ctor",0GH -"@stdlib/buffer/from-array",0GI -"@stdlib/buffer-from-array",0GJ -"@stdlib/buffer/from-arraybuffer",0GK -"@stdlib/buffer-from-arraybuffer",0GL -"@stdlib/buffer/from-buffer",0GM -"@stdlib/buffer-from-buffer",0GN -"@stdlib/buffer/from-string",0GO -"@stdlib/buffer-from-string",0GP -"@stdlib/buffer",0GR -"@stdlib/buffer/reviver",0GS -"@stdlib/buffer-reviver",0GT -"@stdlib/buffer/to-json",0GU -"@stdlib/buffer-to-json",0GV -"@stdlib/cli/ctor",0GW -"@stdlib/cli-ctor",0GX -"@stdlib/cli",0GZ -"@stdlib/complex/base/wrap-function",0Ga -"@stdlib/complex-base-wrap-function",0Gb -"@stdlib/complex/cmplx",0Gc -"@stdlib/complex-cmplx",0Gd -"@stdlib/complex/conj",0Ge -"@stdlib/complex-conj",0Gf -"@stdlib/complex/conjf",0Gg -"@stdlib/complex-conjf",0Gh -"@stdlib/complex/ctors",0Gi -"@stdlib/complex-ctors",0Gj -"@stdlib/complex/dtype",0Gk -"@stdlib/complex-dtype",0Gl -"@stdlib/complex/dtypes",0Gm -"@stdlib/complex-dtypes",0Gn -"@stdlib/complex/float32/ctor",0Go -"@stdlib/complex-float32",1ur -"@stdlib/complex/float64/ctor",0Gq -"@stdlib/complex-float64",1uz -"@stdlib/complex/imag",0Gs -"@stdlib/complex-imag",0Gt -"@stdlib/complex/imagf",0Gu -"@stdlib/complex-imagf",0Gv -"@stdlib/complex",0Gx -"@stdlib/complex/promotion-rules",0Gy -"@stdlib/complex-promotion-rules",0Gz -"@stdlib/complex/real",0H0 -"@stdlib/complex-real",0H1 -"@stdlib/complex/realf",0H2 -"@stdlib/complex-realf",0H3 -"@stdlib/complex/reim",0H4 -"@stdlib/complex-reim",0H5 -"@stdlib/complex/reimf",0H6 -"@stdlib/complex-reimf",0H7 -"@stdlib/complex/float32/reviver",0H8 -"@stdlib/complex-reviver-float32",0H9 -"@stdlib/complex/float64/reviver",0HA -"@stdlib/complex-reviver-float64",0HB -"@stdlib/complex/reviver",0HC -"@stdlib/complex-reviver",0HD -"@stdlib/constants/array/max-array-length",0HE -"@stdlib/constants-array-max-array-length",0HF -"@stdlib/constants/array/max-typed-array-length",0HG -"@stdlib/constants-array-max-typed-array-length",0HH -"@stdlib/constants/array",0HI -"@stdlib/constants-array",0HJ -"@stdlib/constants/complex128/num-bytes",0HK -"@stdlib/constants-complex128-num-bytes",0HL -"@stdlib/constants/complex128",0HM -"@stdlib/constants-complex128",0HN -"@stdlib/constants/complex64/num-bytes",0HO -"@stdlib/constants-complex64-num-bytes",0HP -"@stdlib/constants/complex64",0HQ -"@stdlib/constants-complex64",0HR -"@stdlib/constants/float16/cbrt-eps",0HS -"@stdlib/constants-float16-cbrt-eps",0HT -"@stdlib/constants/float16/eps",0HU -"@stdlib/constants-float16-eps",0HV -"@stdlib/constants/float16/exponent-bias",0HW -"@stdlib/constants-float16-exponent-bias",0HX -"@stdlib/constants/float16/max-safe-integer",0HY -"@stdlib/constants-float16-max-safe-integer",0HZ -"@stdlib/constants/float16/max",0Ha -"@stdlib/constants-float16-max",0Hb -"@stdlib/constants/float16/min-safe-integer",0Hc -"@stdlib/constants-float16-min-safe-integer",0Hd -"@stdlib/constants/float16/ninf",0He -"@stdlib/constants-float16-ninf",0Hf -"@stdlib/constants/float16/num-bytes",0Hg -"@stdlib/constants-float16-num-bytes",0Hh -"@stdlib/constants/float16",0Hi -"@stdlib/constants-float16",0Hj -"@stdlib/constants/float16/pinf",0Hk -"@stdlib/constants-float16-pinf",0Hl -"@stdlib/constants/float16/precision",0Hm -"@stdlib/constants-float16-precision",0Hn -"@stdlib/constants/float16/smallest-normal",0Ho -"@stdlib/constants-float16-smallest-normal",0Hp -"@stdlib/constants/float16/smallest-subnormal",0Hq -"@stdlib/constants-float16-smallest-subnormal",0Hr -"@stdlib/constants/float16/sqrt-eps",0Hs -"@stdlib/constants-float16-sqrt-eps",0Ht -"@stdlib/constants/float32/cbrt-eps",0Hu -"@stdlib/constants-float32-cbrt-eps",0Hv -"@stdlib/constants/float32/eps",0Hw -"@stdlib/constants-float32-eps",0Hx -"@stdlib/constants/float32/exponent-bias",0Hy -"@stdlib/constants-float32-exponent-bias",0Hz -"@stdlib/constants/float32/max-safe-integer",0I0 -"@stdlib/constants-float32-max-safe-integer",0I1 -"@stdlib/constants/float32/max",0I2 -"@stdlib/constants-float32-max",0I3 -"@stdlib/constants/float32/min-safe-integer",0I4 -"@stdlib/constants-float32-min-safe-integer",0I5 -"@stdlib/constants/float32/ninf",0I6 -"@stdlib/constants-float32-ninf",0I7 -"@stdlib/constants/float32/num-bytes",0I8 -"@stdlib/constants-float32-num-bytes",0I9 -"@stdlib/constants/float32",0IA -"@stdlib/constants-float32",0IB -"@stdlib/constants/float32/pinf",0IC -"@stdlib/constants-float32-pinf",0ID -"@stdlib/constants/float32/precision",0IE -"@stdlib/constants-float32-precision",0IF -"@stdlib/constants/float32/smallest-normal",0IG -"@stdlib/constants-float32-smallest-normal",0IH -"@stdlib/constants/float32/smallest-subnormal",0II -"@stdlib/constants-float32-smallest-subnormal",0IJ -"@stdlib/constants/float32/sqrt-eps",0IK -"@stdlib/constants-float32-sqrt-eps",0IL -"@stdlib/constants/float64/apery",0IM -"@stdlib/constants-float64-apery",0IN -"@stdlib/constants/float64/catalan",0IO -"@stdlib/constants-float64-catalan",0IP -"@stdlib/constants/float64/cbrt-eps",0IQ -"@stdlib/constants-float64-cbrt-eps",0IR -"@stdlib/constants/float64/e",0IS -"@stdlib/constants-float64-e",0IT -"@stdlib/constants/float64/eps",0IU -"@stdlib/constants-float64-eps",0IV -"@stdlib/constants/float64/eulergamma",0IW -"@stdlib/constants-float64-eulergamma",0IX -"@stdlib/constants/float64/exponent-bias",0IY -"@stdlib/constants-float64-exponent-bias",0IZ -"@stdlib/constants/float64/fourth-pi",0Ia -"@stdlib/constants-float64-fourth-pi",0Ib -"@stdlib/constants/float64/fourth-root-eps",0Ic -"@stdlib/constants-float64-fourth-root-eps",0Id -"@stdlib/constants/float64/gamma-lanczos-g",0Ie -"@stdlib/constants-float64-gamma-lanczos-g",0If -"@stdlib/constants/float64/glaisher-kinkelin",0Ig -"@stdlib/constants-float64-glaisher-kinkelin",0Ih -"@stdlib/constants/float64/half-ln-two",0Ii -"@stdlib/constants-float64-half-ln-two",0Ij -"@stdlib/constants/float64/half-pi",0Ik -"@stdlib/constants-float64-half-pi",0Il -"@stdlib/constants/float64/high-word-exponent-mask",0Im -"@stdlib/constants-float64-high-word-exponent-mask",0In -"@stdlib/constants/float64/high-word-significand-mask",0Io -"@stdlib/constants-float64-high-word-significand-mask",0Ip -"@stdlib/constants/float64/ln-half",0Iq -"@stdlib/constants-float64-ln-half",0Ir -"@stdlib/constants/float64/ln-pi",0Is -"@stdlib/constants-float64-ln-pi",0It -"@stdlib/constants/float64/ln-sqrt-two-pi",0Iu -"@stdlib/constants-float64-ln-sqrt-two-pi",0Iv -"@stdlib/constants/float64/ln-ten",0Iw -"@stdlib/constants-float64-ln-ten",0Ix -"@stdlib/constants/float64/ln-two-pi",0Iy -"@stdlib/constants-float64-ln-two-pi",0Iz -"@stdlib/constants/float64/ln-two",0J0 -"@stdlib/constants-float64-ln-two",0J1 -"@stdlib/constants/float64/log10-e",0J2 -"@stdlib/constants-float64-log10-e",0J3 -"@stdlib/constants/float64/log2-e",0J4 -"@stdlib/constants-float64-log2-e",0J5 -"@stdlib/constants/float64/max-base10-exponent-subnormal",0J6 -"@stdlib/constants-float64-max-base10-exponent-subnormal",0J7 -"@stdlib/constants/float64/max-base10-exponent",0J8 -"@stdlib/constants-float64-max-base10-exponent",0J9 -"@stdlib/constants/float64/max-base2-exponent-subnormal",0JA -"@stdlib/constants-float64-max-base2-exponent-subnormal",0JB -"@stdlib/constants/float64/max-base2-exponent",0JC -"@stdlib/constants-float64-max-base2-exponent",0JD -"@stdlib/constants/float64/max-ln",0JE -"@stdlib/constants-float64-max-ln",0JF -"@stdlib/constants/float64/max-safe-fibonacci",0JG -"@stdlib/constants-float64-max-safe-fibonacci",0JH -"@stdlib/constants/float64/max-safe-integer",0JI -"@stdlib/constants-float64-max-safe-integer",0JJ -"@stdlib/constants/float64/max-safe-lucas",0JK -"@stdlib/constants-float64-max-safe-lucas",0JL -"@stdlib/constants/float64/max-safe-nth-fibonacci",0JM -"@stdlib/constants-float64-max-safe-nth-fibonacci",0JN -"@stdlib/constants/float64/max-safe-nth-lucas",0JO -"@stdlib/constants-float64-max-safe-nth-lucas",0JP -"@stdlib/constants/float64/max",0JQ -"@stdlib/constants-float64-max",0JR -"@stdlib/constants/float64/min-base10-exponent-subnormal",0JS -"@stdlib/constants-float64-min-base10-exponent-subnormal",0JT -"@stdlib/constants/float64/min-base10-exponent",0JU -"@stdlib/constants-float64-min-base10-exponent",0JV -"@stdlib/constants/float64/min-base2-exponent-subnormal",0JW -"@stdlib/constants-float64-min-base2-exponent-subnormal",0JX -"@stdlib/constants/float64/min-base2-exponent",0JY -"@stdlib/constants-float64-min-base2-exponent",0JZ -"@stdlib/constants/float64/min-ln",0Ja -"@stdlib/constants-float64-min-ln",0Jb -"@stdlib/constants/float64/min-safe-integer",0Jc -"@stdlib/constants-float64-min-safe-integer",0Jd -"@stdlib/constants/float64/ninf",0Je -"@stdlib/constants-float64-ninf",0Jf -"@stdlib/constants/float64/num-bytes",0Jg -"@stdlib/constants-float64-num-bytes",0Jh -"@stdlib/constants/float64",0Ji -"@stdlib/constants-float64",0Jj -"@stdlib/constants/float64/phi",0Jk -"@stdlib/constants-float64-phi",0Jl -"@stdlib/constants/float64/pi-squared",0Jm -"@stdlib/constants-float64-pi-squared",0Jn -"@stdlib/constants/float64/pi",0Jo -"@stdlib/constants-float64-pi",0Jp -"@stdlib/constants/float64/pinf",0Jq -"@stdlib/constants-float64-pinf",0Jr -"@stdlib/constants/float64/precision",0Js -"@stdlib/constants-float64-precision",0Jt -"@stdlib/constants/float64/smallest-normal",0Ju -"@stdlib/constants-float64-smallest-normal",0Jv -"@stdlib/constants/float64/smallest-subnormal",0Jw -"@stdlib/constants-float64-smallest-subnormal",0Jx -"@stdlib/constants/float64/sqrt-eps",0Jy -"@stdlib/constants-float64-sqrt-eps",0Jz -"@stdlib/constants/float64/sqrt-half-pi",0K0 -"@stdlib/constants-float64-sqrt-half-pi",0K1 -"@stdlib/constants/float64/sqrt-half",0K2 -"@stdlib/constants-float64-sqrt-half",0K3 -"@stdlib/constants/float64/sqrt-phi",0K4 -"@stdlib/constants-float64-sqrt-phi",0K5 -"@stdlib/constants/float64/sqrt-pi",0K6 -"@stdlib/constants-float64-sqrt-pi",0K7 -"@stdlib/constants/float64/sqrt-three",0K8 -"@stdlib/constants-float64-sqrt-three",0K9 -"@stdlib/constants/float64/sqrt-two-pi",0KA -"@stdlib/constants-float64-sqrt-two-pi",0KB -"@stdlib/constants/float64/sqrt-two",0KC -"@stdlib/constants-float64-sqrt-two",0KD -"@stdlib/constants/float64/two-pi",0KE -"@stdlib/constants-float64-two-pi",0KF -"@stdlib/constants/int16/max",0KG -"@stdlib/constants-int16-max",0KH -"@stdlib/constants/int16/min",0KI -"@stdlib/constants-int16-min",0KJ -"@stdlib/constants/int16/num-bytes",0KK -"@stdlib/constants-int16-num-bytes",0KL -"@stdlib/constants/int16",0KM -"@stdlib/constants-int16",0KN -"@stdlib/constants/int32/max",0KO -"@stdlib/constants-int32-max",0KP -"@stdlib/constants/int32/min",0KQ -"@stdlib/constants-int32-min",0KR -"@stdlib/constants/int32/num-bytes",0KS -"@stdlib/constants-int32-num-bytes",0KT -"@stdlib/constants/int32",0KU -"@stdlib/constants-int32",0KV -"@stdlib/constants/int8/max",0KW -"@stdlib/constants-int8-max",0KX -"@stdlib/constants/int8/min",0KY -"@stdlib/constants-int8-min",0KZ -"@stdlib/constants/int8/num-bytes",0Ka -"@stdlib/constants-int8-num-bytes",0Kb -"@stdlib/constants/int8",0Kc -"@stdlib/constants-int8",0Kd -"@stdlib/constants",0Kf -"@stdlib/constants/path/delimiter-posix",0Kg -"@stdlib/constants-path-delimiter-posix",0Kh -"@stdlib/constants/path/delimiter-win32",0Ki -"@stdlib/constants-path-delimiter-win32",0Kj -"@stdlib/constants/path/delimiter",0Kk -"@stdlib/constants-path-delimiter",0Kl -"@stdlib/constants/path",0Km -"@stdlib/constants-path",0Kn -"@stdlib/constants/path/sep-posix",0Ko -"@stdlib/constants-path-sep-posix",0Kp -"@stdlib/constants/path/sep-win32",0Kq -"@stdlib/constants-path-sep-win32",0Kr -"@stdlib/constants/path/sep",0Ks -"@stdlib/constants-path-sep",0Kt -"@stdlib/constants/time/hours-in-day",0Ku -"@stdlib/constants-time-hours-in-day",0Kv -"@stdlib/constants/time/hours-in-week",0Kw -"@stdlib/constants-time-hours-in-week",0Kx -"@stdlib/constants/time/milliseconds-in-day",0Ky -"@stdlib/constants-time-milliseconds-in-day",0Kz -"@stdlib/constants/time/milliseconds-in-hour",0L0 -"@stdlib/constants-time-milliseconds-in-hour",0L1 -"@stdlib/constants/time/milliseconds-in-minute",0L2 -"@stdlib/constants-time-milliseconds-in-minute",0L3 -"@stdlib/constants/time/milliseconds-in-second",0L4 -"@stdlib/constants-time-milliseconds-in-second",0L5 -"@stdlib/constants/time/milliseconds-in-week",0L6 -"@stdlib/constants-time-milliseconds-in-week",0L7 -"@stdlib/constants/time/minutes-in-day",0L8 -"@stdlib/constants-time-minutes-in-day",0L9 -"@stdlib/constants/time/minutes-in-hour",0LA -"@stdlib/constants-time-minutes-in-hour",0LB -"@stdlib/constants/time/minutes-in-week",0LC -"@stdlib/constants-time-minutes-in-week",0LD -"@stdlib/constants/time/months-in-year",0LE -"@stdlib/constants-time-months-in-year",0LF -"@stdlib/constants/time",0LG -"@stdlib/constants-time",0LH -"@stdlib/constants/time/seconds-in-day",0LI -"@stdlib/constants-time-seconds-in-day",0LJ -"@stdlib/constants/time/seconds-in-hour",0LK -"@stdlib/constants-time-seconds-in-hour",0LL -"@stdlib/constants/time/seconds-in-minute",0LM -"@stdlib/constants-time-seconds-in-minute",0LN -"@stdlib/constants/time/seconds-in-week",0LO -"@stdlib/constants-time-seconds-in-week",0LP -"@stdlib/constants/uint16/max",0LQ -"@stdlib/constants-uint16-max",0LR -"@stdlib/constants/uint16/num-bytes",0LS -"@stdlib/constants-uint16-num-bytes",0LT -"@stdlib/constants/uint16",0LU -"@stdlib/constants-uint16",0LV -"@stdlib/constants/uint32/max",0LW -"@stdlib/constants-uint32-max",0LX -"@stdlib/constants/uint32/num-bytes",0LY -"@stdlib/constants-uint32-num-bytes",0LZ -"@stdlib/constants/uint32",0La -"@stdlib/constants-uint32",0Lb -"@stdlib/constants/uint8/max",0Lc -"@stdlib/constants-uint8-max",0Ld -"@stdlib/constants/uint8/num-bytes",0Le -"@stdlib/constants-uint8-num-bytes",0Lf -"@stdlib/constants/uint8",0Lg -"@stdlib/constants-uint8",0Lh -"@stdlib/constants/unicode/max-bmp",0Li -"@stdlib/constants-unicode-max-bmp",0Lj -"@stdlib/constants/unicode/max",0Lk -"@stdlib/constants-unicode-max",0Ll -"@stdlib/constants/unicode",0Lm -"@stdlib/constants-unicode",0Ln -"@stdlib/datasets/afinn-111",0Lo -"@stdlib/datasets-afinn-111",0Lp -"@stdlib/datasets/afinn-96",0Lq -"@stdlib/datasets-afinn-96",0Lr -"@stdlib/datasets/anscombes-quartet",0Ls -"@stdlib/datasets-anscombes-quartet",0Lt -"@stdlib/datasets/berndt-cps-wages-1985",0Lu -"@stdlib/datasets-berndt-cps-wages-1985",0Lv -"@stdlib/datasets/cdc-nchs-us-births-1969-1988",0Lw -"@stdlib/datasets-cdc-nchs-us-births-1969-1988",0Lx -"@stdlib/datasets/cdc-nchs-us-births-1994-2003",0Ly -"@stdlib/datasets-cdc-nchs-us-births-1994-2003",0Lz -"@stdlib/datasets/cdc-nchs-us-infant-mortality-bw-1915-2013",0M0 -"@stdlib/datasets-cdc-nchs-us-infant-mortality-bw-1915-2013",0M1 -"@stdlib/datasets/cmudict",0M2 -"@stdlib/datasets-cmudict",0M3 -"@stdlib/datasets/dale-chall-new",0M4 -"@stdlib/datasets-dale-chall-new",0M5 -"@stdlib/datasets/emoji-code-picto",0M6 -"@stdlib/datasets-emoji-code-picto",0M7 -"@stdlib/datasets/emoji-picto-code",0M8 -"@stdlib/datasets-emoji-picto-code",0M9 -"@stdlib/datasets/emoji",0MA -"@stdlib/datasets-emoji",0MB -"@stdlib/datasets/female-first-names-en",0MC -"@stdlib/datasets-female-first-names-en",0MD -"@stdlib/datasets/fivethirtyeight-ffq",0ME -"@stdlib/datasets-fivethirtyeight-ffq",0MF -"@stdlib/datasets/frb-sf-wage-rigidity",0MG -"@stdlib/datasets-frb-sf-wage-rigidity",0MH -"@stdlib/datasets/harrison-boston-house-prices-corrected",0MI -"@stdlib/datasets-harrison-boston-house-prices-corrected",0MJ -"@stdlib/datasets/harrison-boston-house-prices",0MK -"@stdlib/datasets-harrison-boston-house-prices",0ML -"@stdlib/datasets/herndon-venus-semidiameters",0MM -"@stdlib/datasets-herndon-venus-semidiameters",0MN -"@stdlib/datasets/img-acanthus-mollis",0MO -"@stdlib/datasets-img-acanthus-mollis",0MP -"@stdlib/datasets/img-airplane-from-above",0MQ -"@stdlib/datasets-img-airplane-from-above",0MR -"@stdlib/datasets/img-allium-oreophilum",0MS -"@stdlib/datasets-img-allium-oreophilum",0MT -"@stdlib/datasets/img-black-canyon",0MU -"@stdlib/datasets-img-black-canyon",0MV -"@stdlib/datasets/img-dust-bowl-home",0MW -"@stdlib/datasets-img-dust-bowl-home",0MX -"@stdlib/datasets/img-french-alpine-landscape",0MY -"@stdlib/datasets-img-french-alpine-landscape",0MZ -"@stdlib/datasets/img-locomotion-house-cat",0Ma -"@stdlib/datasets-img-locomotion-house-cat",0Mb -"@stdlib/datasets/img-locomotion-nude-male",0Mc -"@stdlib/datasets-img-locomotion-nude-male",0Md -"@stdlib/datasets/img-march-pastoral",0Me -"@stdlib/datasets-img-march-pastoral",0Mf -"@stdlib/datasets/img-nagasaki-boats",0Mg -"@stdlib/datasets-img-nagasaki-boats",0Mh -"@stdlib/datasets/liu-negative-opinion-words-en",0Mi -"@stdlib/datasets-liu-negative-opinion-words-en",0Mj -"@stdlib/datasets/liu-positive-opinion-words-en",0Mk -"@stdlib/datasets-liu-positive-opinion-words-en",0Ml -"@stdlib/datasets/male-first-names-en",0Mm -"@stdlib/datasets-male-first-names-en",0Mn -"@stdlib/datasets/minard-napoleons-march",0Mo -"@stdlib/datasets-minard-napoleons-march",0Mp -"@stdlib/datasets/moby-dick",0Mq -"@stdlib/datasets-moby-dick",0Mr -"@stdlib/datasets/month-names-en",0Ms -"@stdlib/datasets-month-names-en",0Mt -"@stdlib/datasets/nightingales-rose",0Mu -"@stdlib/datasets-nightingales-rose",0Mv -"@stdlib/datasets/pace-boston-house-prices",0Mw -"@stdlib/datasets-pace-boston-house-prices",0Mx -"@stdlib/datasets",0Mz -"@stdlib/datasets/primes-100k",0N0 -"@stdlib/datasets-primes-100k",0N1 -"@stdlib/datasets/savoy-stopwords-fin",0N2 -"@stdlib/datasets-savoy-stopwords-fin",0N3 -"@stdlib/datasets/savoy-stopwords-fr",0N4 -"@stdlib/datasets-savoy-stopwords-fr",0N5 -"@stdlib/datasets/savoy-stopwords-ger",0N6 -"@stdlib/datasets-savoy-stopwords-ger",0N7 -"@stdlib/datasets/savoy-stopwords-it",0N8 -"@stdlib/datasets-savoy-stopwords-it",0N9 -"@stdlib/datasets/savoy-stopwords-por",0NA -"@stdlib/datasets-savoy-stopwords-por",0NB -"@stdlib/datasets/savoy-stopwords-sp",0NC -"@stdlib/datasets-savoy-stopwords-sp",0ND -"@stdlib/datasets/savoy-stopwords-swe",0NE -"@stdlib/datasets-savoy-stopwords-swe",0NF -"@stdlib/datasets/sotu",0NG -"@stdlib/datasets-sotu",0NH -"@stdlib/datasets/spache-revised",0NI -"@stdlib/datasets-spache-revised",0NJ -"@stdlib/datasets/spam-assassin",0NK -"@stdlib/datasets-spam-assassin",0NL -"@stdlib/datasets/ssa-us-births-2000-2014",0NM -"@stdlib/datasets-ssa-us-births-2000-2014",0NN -"@stdlib/datasets/standard-card-deck",0NO -"@stdlib/datasets-standard-card-deck",0NP -"@stdlib/datasets/stopwords-en",0NQ -"@stdlib/datasets-stopwords-en",0NR -"@stdlib/datasets/suthaharan-multi-hop-sensor-network",0NS -"@stdlib/datasets-suthaharan-multi-hop-sensor-network",0NT -"@stdlib/datasets/suthaharan-single-hop-sensor-network",0NU -"@stdlib/datasets-suthaharan-single-hop-sensor-network",0NV -"@stdlib/datasets/us-states-abbr",0NW -"@stdlib/datasets-us-states-abbr",0NX -"@stdlib/datasets/us-states-capitals-names",0NY -"@stdlib/datasets-us-states-capitals-names",0NZ -"@stdlib/datasets/us-states-capitals",0Na -"@stdlib/datasets-us-states-capitals",0Nb -"@stdlib/datasets/us-states-names-capitals",0Nc -"@stdlib/datasets-us-states-names-capitals",0Nd -"@stdlib/datasets/us-states-names",0Ne -"@stdlib/datasets-us-states-names",0Nf -"@stdlib/error",0Nh -"@stdlib/error/reviver",0Ni -"@stdlib/error-reviver",0Nj -"@stdlib/error/to-json",0Nk -"@stdlib/error-to-json",0Nl -"@stdlib/error/tools/database",0Nm -"@stdlib/error-tools-database",0Nn -"@stdlib/error/tools/fmtprodmsg-factory",0No -"@stdlib/error-tools-fmtprodmsg-factory",0Np -"@stdlib/error/tools/fmtprodmsg",0Nq -"@stdlib/error-tools-fmtprodmsg",0Nr -"@stdlib/error/tools/id2msg",0Ns -"@stdlib/error-tools-id2msg",0Nt -"@stdlib/error/tools/id2pkg",0Nu -"@stdlib/error-tools-id2pkg",0Nv -"@stdlib/error/tools/msg2id",0Nw -"@stdlib/error-tools-msg2id",0Nx -"@stdlib/error/tools",0Ny -"@stdlib/error-tools",0Nz -"@stdlib/error/tools/pkg2id",0O0 -"@stdlib/error-tools-pkg2id",0O1 -"@stdlib/fs/close",0O2 -"@stdlib/fs-close",0O3 -"@stdlib/fs/exists",0O4 -"@stdlib/fs-exists",0O5 -"@stdlib/fs/open",0O6 -"@stdlib/fs-open",0O7 -"@stdlib/fs",0O9 -"@stdlib/fs/read-dir",0OA -"@stdlib/fs-read-dir",0OB -"@stdlib/fs/read-file-list",0OC -"@stdlib/fs-read-file-list",0OD -"@stdlib/fs/read-file",0OE -"@stdlib/fs-read-file",0OF -"@stdlib/fs/read-json",0OG -"@stdlib/fs-read-json",0OH -"@stdlib/fs/read-wasm",0OI -"@stdlib/fs-read-wasm",0OJ -"@stdlib/fs/rename",0OK -"@stdlib/fs-rename",0OL -"@stdlib/fs/resolve-parent-path-by",0OM -"@stdlib/fs-resolve-parent-path-by",0ON -"@stdlib/fs/resolve-parent-path",0OO -"@stdlib/fs-resolve-parent-path",0OP -"@stdlib/fs/unlink",0OQ -"@stdlib/fs-unlink",0OR -"@stdlib/fs/write-file",0OS -"@stdlib/fs-write-file",0OT -"@stdlib/iter/advance",0OU -"@stdlib/iter-advance",0OV -"@stdlib/iter/any-by",0OW -"@stdlib/iter-any-by",0OX -"@stdlib/iter/any",0OY -"@stdlib/iter-any",0OZ -"@stdlib/iter/concat",0Oa -"@stdlib/iter-concat",0Ob -"@stdlib/iter/constant",0Oc -"@stdlib/iter-constant",0Od -"@stdlib/iter/counter",0Oe -"@stdlib/iter-counter",0Of -"@stdlib/iter/datespace",0Og -"@stdlib/iter-datespace",0Oh -"@stdlib/iter/dedupe-by",0Oi -"@stdlib/iter-dedupe-by",0Oj -"@stdlib/iter/dedupe",0Ok -"@stdlib/iter-dedupe",0Ol -"@stdlib/iter/empty",0Om -"@stdlib/iter-empty",0On -"@stdlib/iter/every-by",0Oo -"@stdlib/iter-every-by",0Op -"@stdlib/iter/every",0Oq -"@stdlib/iter-every",0Or -"@stdlib/iter/fill",0Os -"@stdlib/iter-fill",0Ot -"@stdlib/iter/filter-map",0Ou -"@stdlib/iter-filter-map",0Ov -"@stdlib/iter/filter",0Ow -"@stdlib/iter-filter",0Ox -"@stdlib/iter/first",0Oy -"@stdlib/iter-first",0Oz -"@stdlib/iter/flow",0P0 -"@stdlib/iter-flow",0P1 -"@stdlib/iter/for-each",0P2 -"@stdlib/iter-for-each",0P3 -"@stdlib/iter/head",0P4 -"@stdlib/iter-head",0P5 -"@stdlib/iter/incrspace",0P6 -"@stdlib/iter-incrspace",0P7 -"@stdlib/iter/intersection-by-hash",0P8 -"@stdlib/iter-intersection-by-hash",0P9 -"@stdlib/iter/intersection",0PA -"@stdlib/iter-intersection",0PB -"@stdlib/iter/last",0PC -"@stdlib/iter-last",0PD -"@stdlib/iter/length",0PE -"@stdlib/iter-length",0PF -"@stdlib/iter/linspace",0PG -"@stdlib/iter-linspace",0PH -"@stdlib/iter/logspace",0PI -"@stdlib/iter-logspace",0PJ -"@stdlib/iter/map",0PK -"@stdlib/iter-map",0PL -"@stdlib/iter/mapn",0PM -"@stdlib/iter-mapn",0PN -"@stdlib/iter/none-by",0PO -"@stdlib/iter-none-by",0PP -"@stdlib/iter/none",0PQ -"@stdlib/iter-none",0PR -"@stdlib/iter/nth",0PS -"@stdlib/iter-nth",0PT -"@stdlib/iter",0PV -"@stdlib/iter/pipeline-thunk",0PW -"@stdlib/iter-pipeline-thunk",0PX -"@stdlib/iter/pipeline",0PY -"@stdlib/iter-pipeline",0PZ -"@stdlib/iter/pop",0Pa -"@stdlib/iter-pop",0Pb -"@stdlib/iter/push",0Pc -"@stdlib/iter-push",0Pd -"@stdlib/iter/reject",0Pe -"@stdlib/iter-reject",0Pf -"@stdlib/iter/replicate-by",0Pg -"@stdlib/iter-replicate-by",0Ph -"@stdlib/iter/replicate",0Pi -"@stdlib/iter-replicate",0Pj -"@stdlib/iter/shift",0Pk -"@stdlib/iter-shift",0Pl -"@stdlib/iter/slice",0Pm -"@stdlib/iter-slice",0Pn -"@stdlib/iter/some-by",0Po -"@stdlib/iter-some-by",0Pp -"@stdlib/iter/some",0Pq -"@stdlib/iter-some",0Pr -"@stdlib/iter/step",0Ps -"@stdlib/iter-step",0Pt -"@stdlib/iter/strided-by",0Pu -"@stdlib/iter-strided-by",0Pv -"@stdlib/iter/strided",0Pw -"@stdlib/iter-strided",0Px -"@stdlib/iter/to-array-view-right",0Py -"@stdlib/iter-to-array-view-right",0Pz -"@stdlib/iter/to-array-view",0Q0 -"@stdlib/iter-to-array-view",0Q1 -"@stdlib/iter/union",0Q2 -"@stdlib/iter-union",0Q3 -"@stdlib/iter/unique-by-hash",0Q4 -"@stdlib/iter-unique-by-hash",0Q5 -"@stdlib/iter/unique-by",0Q6 -"@stdlib/iter-unique-by",0Q7 -"@stdlib/iter/unique",0Q8 -"@stdlib/iter-unique",0Q9 -"@stdlib/iter/unitspace",0QA -"@stdlib/iter-unitspace",0QB -"@stdlib/iter/unshift",0QC -"@stdlib/iter-unshift",0QD -"@stdlib/math/base/assert/int32-is-even",0QE -"@stdlib/math-base-assert-int32-is-even",0QF -"@stdlib/math/base/assert/int32-is-odd",0QG -"@stdlib/math-base-assert-int32-is-odd",0QH -"@stdlib/math/base/assert/is-composite",0QI -"@stdlib/math-base-assert-is-composite",0QJ -"@stdlib/math/base/assert/is-coprime",0QK -"@stdlib/math-base-assert-is-coprime",0QL -"@stdlib/math/base/assert/is-even",0QM -"@stdlib/math-base-assert-is-even",0QN -"@stdlib/math/base/assert/is-finite",0QO -"@stdlib/math-base-assert-is-finite",0QP -"@stdlib/math/base/assert/is-finitef",0QQ -"@stdlib/math-base-assert-is-finitef",0QR -"@stdlib/math/base/assert/is-infinite",0QS -"@stdlib/math-base-assert-is-infinite",0QT -"@stdlib/math/base/assert/is-infinitef",0QU -"@stdlib/math-base-assert-is-infinitef",0QV -"@stdlib/math/base/assert/is-integer",0QW -"@stdlib/math-base-assert-is-integer",0QX -"@stdlib/math/base/assert/is-nan",0QY -"@stdlib/math-base-assert-is-nan",0QZ -"@stdlib/math/base/assert/is-nanf",0Qa -"@stdlib/math-base-assert-is-nanf",0Qb -"@stdlib/math/base/assert/is-negative-integer",0Qc -"@stdlib/math-base-assert-is-negative-integer",0Qd -"@stdlib/math/base/assert/is-negative-zero",0Qe -"@stdlib/math-base-assert-is-negative-zero",0Qf -"@stdlib/math/base/assert/is-negative-zerof",0Qg -"@stdlib/math-base-assert-is-negative-zerof",0Qh -"@stdlib/math/base/assert/is-nonnegative-integer",0Qi -"@stdlib/math-base-assert-is-nonnegative-integer",0Qj -"@stdlib/math/base/assert/is-nonpositive-integer",0Qk -"@stdlib/math-base-assert-is-nonpositive-integer",0Ql -"@stdlib/math/base/assert/is-odd",0Qm -"@stdlib/math-base-assert-is-odd",0Qn -"@stdlib/math/base/assert/is-positive-integer",0Qo -"@stdlib/math-base-assert-is-positive-integer",0Qp -"@stdlib/math/base/assert/is-positive-zero",0Qq -"@stdlib/math-base-assert-is-positive-zero",0Qr -"@stdlib/math/base/assert/is-positive-zerof",0Qs -"@stdlib/math-base-assert-is-positive-zerof",0Qt -"@stdlib/math/base/assert/is-prime",0Qu -"@stdlib/math-base-assert-is-prime",0Qv -"@stdlib/math/base/assert/is-probability",0Qw -"@stdlib/math-base-assert-is-probability",0Qx -"@stdlib/math/base/assert/is-safe-integer",0Qy -"@stdlib/math-base-assert-is-safe-integer",0Qz -"@stdlib/math/base/assert",0R0 -"@stdlib/math-base-assert",0R1 -"@stdlib/math/base/assert/uint32-is-pow2",0R2 -"@stdlib/math-base-assert-uint32-is-pow2",0R3 -"@stdlib/math/base/napi/binary",0R4 -"@stdlib/math-base-napi-binary",0R5 -"@stdlib/math/base/napi",0R6 -"@stdlib/math-base-napi",0R7 -"@stdlib/math/base/napi/ternary",0R8 -"@stdlib/math-base-napi-ternary",0R9 -"@stdlib/math/base/napi/unary",0RA -"@stdlib/math-base-napi-unary",0RB -"@stdlib/math/base/ops/add",0RC -"@stdlib/math-base-ops-add",0RD -"@stdlib/math/base/ops/addf",0RE -"@stdlib/math-base-ops-addf",0RF -"@stdlib/math/base/ops/cadd",0RG -"@stdlib/math-base-ops-cadd",0RH -"@stdlib/math/base/ops/caddf",0RI -"@stdlib/math-base-ops-caddf",0RJ -"@stdlib/math/base/ops/cdiv",0RK -"@stdlib/math-base-ops-cdiv",0RL -"@stdlib/math/base/ops/cmul",0RM -"@stdlib/math-base-ops-cmul",0RN -"@stdlib/math/base/ops/cmulf",0RO -"@stdlib/math-base-ops-cmulf",0RP -"@stdlib/math/base/ops/cneg",0RQ -"@stdlib/math-base-ops-cneg",0RR -"@stdlib/math/base/ops/csub",0RS -"@stdlib/math-base-ops-csub",0RT -"@stdlib/math/base/ops/csubf",0RU -"@stdlib/math-base-ops-csubf",0RV -"@stdlib/math/base/ops/imul",0RW -"@stdlib/math-base-ops-imul",0RX -"@stdlib/math/base/ops/imuldw",0RY -"@stdlib/math-base-ops-imuldw",0RZ -"@stdlib/math/base/ops/mul",0Ra -"@stdlib/math-base-ops-mul",0Rb -"@stdlib/math/base/ops/mulf",0Rc -"@stdlib/math-base-ops-mulf",0Rd -"@stdlib/math/base/ops",0Re -"@stdlib/math-base-ops",0Rf -"@stdlib/math/base/ops/sub",0Rg -"@stdlib/math-base-ops-sub",0Rh -"@stdlib/math/base/ops/subf",0Ri -"@stdlib/math-base-ops-subf",0Rj -"@stdlib/math/base/ops/umul",0Rk -"@stdlib/math-base-ops-umul",0Rl -"@stdlib/math/base/ops/umuldw",0Rm -"@stdlib/math-base-ops-umuldw",0Rn -"@stdlib/math/base",0Ro -"@stdlib/math-base",0Rp -"@stdlib/math/base/special/abs",0Rq -"@stdlib/math-base-special-abs",0Rr -"@stdlib/math/base/special/abs2",0Rs -"@stdlib/math-base-special-abs2",0Rt -"@stdlib/math/base/special/abs2f",0Ru -"@stdlib/math-base-special-abs2f",0Rv -"@stdlib/math/base/special/absf",0Rw -"@stdlib/math-base-special-absf",0Rx -"@stdlib/math/base/special/acos",0Ry -"@stdlib/math-base-special-acos",0Rz -"@stdlib/math/base/special/acosh",0S0 -"@stdlib/math-base-special-acosh",0S1 -"@stdlib/math/base/special/acot",0S2 -"@stdlib/math-base-special-acot",0S3 -"@stdlib/math/base/special/acoth",0S4 -"@stdlib/math-base-special-acoth",0S5 -"@stdlib/math/base/special/acovercos",0S6 -"@stdlib/math-base-special-acovercos",0S7 -"@stdlib/math/base/special/acoversin",0S8 -"@stdlib/math-base-special-acoversin",0S9 -"@stdlib/math/base/special/acsc",0SA -"@stdlib/math-base-special-acsc",0SB -"@stdlib/math/base/special/acsch",0SC -"@stdlib/math-base-special-acsch",0SD -"@stdlib/math/base/special/ahavercos",0SE -"@stdlib/math-base-special-ahavercos",0SF -"@stdlib/math/base/special/ahaversin",0SG -"@stdlib/math-base-special-ahaversin",0SH -"@stdlib/math/base/special/asech",0SI -"@stdlib/math-base-special-asech",0SJ -"@stdlib/math/base/special/asin",0SK -"@stdlib/math-base-special-asin",0SL -"@stdlib/math/base/special/asinh",0SM -"@stdlib/math-base-special-asinh",0SN -"@stdlib/math/base/special/atan",0SO -"@stdlib/math-base-special-atan",0SP -"@stdlib/math/base/special/atan2",0SQ -"@stdlib/math-base-special-atan2",0SR -"@stdlib/math/base/special/atanh",0SS -"@stdlib/math-base-special-atanh",0ST -"@stdlib/math/base/special/avercos",0SU -"@stdlib/math-base-special-avercos",0SV -"@stdlib/math/base/special/aversin",0SW -"@stdlib/math-base-special-aversin",0SX -"@stdlib/math/base/special/bernoulli",0SY -"@stdlib/math-base-special-bernoulli",0SZ -"@stdlib/math/base/special/besselj0",0Sa -"@stdlib/math-base-special-besselj0",0Sb -"@stdlib/math/base/special/besselj1",0Sc -"@stdlib/math-base-special-besselj1",0Sd -"@stdlib/math/base/special/bessely0",0Se -"@stdlib/math-base-special-bessely0",0Sf -"@stdlib/math/base/special/bessely1",0Sg -"@stdlib/math-base-special-bessely1",0Sh -"@stdlib/math/base/special/beta",0Si -"@stdlib/math-base-special-beta",0Sj -"@stdlib/math/base/special/betainc",0Sk -"@stdlib/math-base-special-betainc",0Sl -"@stdlib/math/base/special/betaincinv",0Sm -"@stdlib/math-base-special-betaincinv",0Sn -"@stdlib/math/base/special/betaln",0So -"@stdlib/math-base-special-betaln",0Sp -"@stdlib/math/base/special/binet",0Sq -"@stdlib/math-base-special-binet",0Sr -"@stdlib/math/base/special/binomcoef",0Ss -"@stdlib/math-base-special-binomcoef",0St -"@stdlib/math/base/special/binomcoefln",0Su -"@stdlib/math-base-special-binomcoefln",0Sv -"@stdlib/math/base/special/boxcox",0Sw -"@stdlib/math-base-special-boxcox",0Sx -"@stdlib/math/base/special/boxcox1p",0Sy -"@stdlib/math-base-special-boxcox1p",0Sz -"@stdlib/math/base/special/boxcox1pinv",0T0 -"@stdlib/math-base-special-boxcox1pinv",0T1 -"@stdlib/math/base/special/boxcoxinv",0T2 -"@stdlib/math-base-special-boxcoxinv",0T3 -"@stdlib/math/base/special/cabs",0T4 -"@stdlib/math-base-special-cabs",0T5 -"@stdlib/math/base/special/cabs2",0T6 -"@stdlib/math-base-special-cabs2",0T7 -"@stdlib/math/base/special/cabs2f",0T8 -"@stdlib/math-base-special-cabs2f",0T9 -"@stdlib/math/base/special/cabsf",0TA -"@stdlib/math-base-special-cabsf",0TB -"@stdlib/math/base/special/cbrt",0TC -"@stdlib/math-base-special-cbrt",0TD -"@stdlib/math/base/special/cbrtf",0TE -"@stdlib/math-base-special-cbrtf",0TF -"@stdlib/math/base/special/cceil",0TG -"@stdlib/math-base-special-cceil",0TH -"@stdlib/math/base/special/cceilf",0TI -"@stdlib/math-base-special-cceilf",0TJ -"@stdlib/math/base/special/cceiln",0TK -"@stdlib/math-base-special-cceiln",0TL -"@stdlib/math/base/special/ccis",0TM -"@stdlib/math-base-special-ccis",0TN -"@stdlib/math/base/special/ceil",0TO -"@stdlib/math-base-special-ceil",0TP -"@stdlib/math/base/special/ceil10",0TQ -"@stdlib/math-base-special-ceil10",0TR -"@stdlib/math/base/special/ceil2",0TS -"@stdlib/math-base-special-ceil2",0TT -"@stdlib/math/base/special/ceilb",0TU -"@stdlib/math-base-special-ceilb",0TV -"@stdlib/math/base/special/ceilf",0TW -"@stdlib/math-base-special-ceilf",0TX -"@stdlib/math/base/special/ceiln",0TY -"@stdlib/math-base-special-ceiln",0TZ -"@stdlib/math/base/special/ceilsd",0Ta -"@stdlib/math-base-special-ceilsd",0Tb -"@stdlib/math/base/special/cexp",0Tc -"@stdlib/math-base-special-cexp",0Td -"@stdlib/math/base/special/cflipsign",0Te -"@stdlib/math-base-special-cflipsign",0Tf -"@stdlib/math/base/special/cflipsignf",0Tg -"@stdlib/math-base-special-cflipsignf",0Th -"@stdlib/math/base/special/cfloor",0Ti -"@stdlib/math-base-special-cfloor",0Tj -"@stdlib/math/base/special/cfloorn",0Tk -"@stdlib/math-base-special-cfloorn",0Tl -"@stdlib/math/base/special/cidentity",0Tm -"@stdlib/math-base-special-cidentity",0Tn -"@stdlib/math/base/special/cidentityf",0To -"@stdlib/math-base-special-cidentityf",0Tp -"@stdlib/math/base/special/cinv",0Tq -"@stdlib/math-base-special-cinv",0Tr -"@stdlib/math/base/special/clamp",0Ts -"@stdlib/math-base-special-clamp",0Tt -"@stdlib/math/base/special/clampf",0Tu -"@stdlib/math-base-special-clampf",0Tv -"@stdlib/math/base/special/copysign",0Tw -"@stdlib/math-base-special-copysign",0Tx -"@stdlib/math/base/special/copysignf",0Ty -"@stdlib/math-base-special-copysignf",0Tz -"@stdlib/math/base/special/cos",0U0 -"@stdlib/math-base-special-cos",0U1 -"@stdlib/math/base/special/cosh",0U2 -"@stdlib/math-base-special-cosh",0U3 -"@stdlib/math/base/special/cosm1",0U4 -"@stdlib/math-base-special-cosm1",0U5 -"@stdlib/math/base/special/cospi",0U6 -"@stdlib/math-base-special-cospi",0U7 -"@stdlib/math/base/special/cot",0U8 -"@stdlib/math-base-special-cot",0U9 -"@stdlib/math/base/special/coth",0UA -"@stdlib/math-base-special-coth",0UB -"@stdlib/math/base/special/covercos",0UC -"@stdlib/math-base-special-covercos",0UD -"@stdlib/math/base/special/coversin",0UE -"@stdlib/math-base-special-coversin",0UF -"@stdlib/math/base/special/cphase",0UG -"@stdlib/math-base-special-cphase",0UH -"@stdlib/math/base/special/cpolar",0UI -"@stdlib/math-base-special-cpolar",0UJ -"@stdlib/math/base/special/cround",0UK -"@stdlib/math-base-special-cround",0UL -"@stdlib/math/base/special/croundn",0UM -"@stdlib/math-base-special-croundn",0UN -"@stdlib/math/base/special/csch",0UO -"@stdlib/math-base-special-csch",0UP -"@stdlib/math/base/special/csignum",0UQ -"@stdlib/math-base-special-csignum",0UR -"@stdlib/math/base/special/deg2rad",0US -"@stdlib/math-base-special-deg2rad",0UT -"@stdlib/math/base/special/deg2radf",0UU -"@stdlib/math-base-special-deg2radf",0UV -"@stdlib/math/base/special/digamma",0UW -"@stdlib/math-base-special-digamma",0UX -"@stdlib/math/base/special/dirac-delta",0UY -"@stdlib/math-base-special-dirac-delta",0UZ -"@stdlib/math/base/special/dirichlet-eta",0Ua -"@stdlib/math-base-special-dirichlet-eta",0Ub -"@stdlib/math/base/special/ellipe",0Uc -"@stdlib/math-base-special-ellipe",0Ud -"@stdlib/math/base/special/ellipk",0Ue -"@stdlib/math-base-special-ellipk",0Uf -"@stdlib/math/base/special/erf",0Ug -"@stdlib/math-base-special-erf",0Uh -"@stdlib/math/base/special/erfc",0Ui -"@stdlib/math-base-special-erfc",0Uj -"@stdlib/math/base/special/erfcinv",0Uk -"@stdlib/math-base-special-erfcinv",0Ul -"@stdlib/math/base/special/erfinv",0Um -"@stdlib/math-base-special-erfinv",0Un -"@stdlib/math/base/special/exp",0Uo -"@stdlib/math-base-special-exp",0Up -"@stdlib/math/base/special/exp10",0Uq -"@stdlib/math-base-special-exp10",0Ur -"@stdlib/math/base/special/exp2",0Us -"@stdlib/math-base-special-exp2",0Ut -"@stdlib/math/base/special/expit",0Uu -"@stdlib/math-base-special-expit",0Uv -"@stdlib/math/base/special/expm1",0Uw -"@stdlib/math-base-special-expm1",0Ux -"@stdlib/math/base/special/expm1rel",0Uy -"@stdlib/math-base-special-expm1rel",0Uz -"@stdlib/math/base/special/factorial",0V0 -"@stdlib/math-base-special-factorial",0V1 -"@stdlib/math/base/special/factorialln",0V2 -"@stdlib/math-base-special-factorialln",0V3 -"@stdlib/math/base/special/falling-factorial",0V4 -"@stdlib/math-base-special-falling-factorial",0V5 -"@stdlib/math/base/special/fast/abs",0V6 -"@stdlib/math-base-special-fast-abs",0V7 -"@stdlib/math/base/special/fast/acosh",0V8 -"@stdlib/math-base-special-fast-acosh",0V9 -"@stdlib/math/base/special/fast/alpha-max-plus-beta-min",0VA -"@stdlib/math-base-special-fast-alpha-max-plus-beta-min",0VB -"@stdlib/math/base/special/fast/asinh",0VC -"@stdlib/math-base-special-fast-asinh",0VD -"@stdlib/math/base/special/fast/atanh",0VE -"@stdlib/math-base-special-fast-atanh",0VF -"@stdlib/math/base/special/fast/hypot",0VG -"@stdlib/math-base-special-fast-hypot",0VH -"@stdlib/math/base/special/fast/max",0VI -"@stdlib/math-base-special-fast-max",0VJ -"@stdlib/math/base/special/fast/min",0VK -"@stdlib/math-base-special-fast-min",0VL -"@stdlib/math/base/special/fast",0VM -"@stdlib/math-base-special-fast",0VN -"@stdlib/math/base/special/fast/pow-int",0VO -"@stdlib/math-base-special-fast-pow-int",0VP -"@stdlib/math/base/special/fast/uint32-log2",0VQ -"@stdlib/math-base-special-fast-uint32-log2",0VR -"@stdlib/math/base/special/fast/uint32-sqrt",0VS -"@stdlib/math-base-special-fast-uint32-sqrt",0VT -"@stdlib/math/base/special/fibonacci-index",0VU -"@stdlib/math-base-special-fibonacci-index",0VV -"@stdlib/math/base/special/fibonacci",0VW -"@stdlib/math-base-special-fibonacci",0VX -"@stdlib/math/base/special/flipsign",0VY -"@stdlib/math-base-special-flipsign",0VZ -"@stdlib/math/base/special/flipsignf",0Va -"@stdlib/math-base-special-flipsignf",0Vb -"@stdlib/math/base/special/floor",0Vc -"@stdlib/math-base-special-floor",0Vd -"@stdlib/math/base/special/floor10",0Ve -"@stdlib/math-base-special-floor10",0Vf -"@stdlib/math/base/special/floor2",0Vg -"@stdlib/math-base-special-floor2",0Vh -"@stdlib/math/base/special/floorb",0Vi -"@stdlib/math-base-special-floorb",0Vj -"@stdlib/math/base/special/floorf",0Vk -"@stdlib/math-base-special-floorf",0Vl -"@stdlib/math/base/special/floorn",0Vm -"@stdlib/math-base-special-floorn",0Vn -"@stdlib/math/base/special/floorsd",0Vo -"@stdlib/math-base-special-floorsd",0Vp -"@stdlib/math/base/special/fresnel",0Vq -"@stdlib/math-base-special-fresnel",0Vr -"@stdlib/math/base/special/fresnelc",0Vs -"@stdlib/math-base-special-fresnelc",0Vt -"@stdlib/math/base/special/fresnels",0Vu -"@stdlib/math-base-special-fresnels",0Vv -"@stdlib/math/base/special/frexp",0Vw -"@stdlib/math-base-special-frexp",0Vx -"@stdlib/math/base/special/gamma-delta-ratio",0Vy -"@stdlib/math-base-special-gamma-delta-ratio",0Vz -"@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled",0W0 -"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled",0W1 -"@stdlib/math/base/special/gamma-lanczos-sum",0W2 -"@stdlib/math-base-special-gamma-lanczos-sum",0W3 -"@stdlib/math/base/special/gamma",0W4 -"@stdlib/math-base-special-gamma",0W5 -"@stdlib/math/base/special/gamma1pm1",0W6 -"@stdlib/math-base-special-gamma1pm1",0W7 -"@stdlib/math/base/special/gammainc",0W8 -"@stdlib/math-base-special-gammainc",0W9 -"@stdlib/math/base/special/gammaincinv",0WA -"@stdlib/math-base-special-gammaincinv",0WB -"@stdlib/math/base/special/gammaln",0WC -"@stdlib/math-base-special-gammaln",0WD -"@stdlib/math/base/special/gcd",0WE -"@stdlib/math-base-special-gcd",0WF -"@stdlib/math/base/special/hacovercos",0WG -"@stdlib/math-base-special-hacovercos",0WH -"@stdlib/math/base/special/hacoversin",0WI -"@stdlib/math-base-special-hacoversin",0WJ -"@stdlib/math/base/special/havercos",0WK -"@stdlib/math-base-special-havercos",0WL -"@stdlib/math/base/special/haversin",0WM -"@stdlib/math-base-special-haversin",0WN -"@stdlib/math/base/special/heaviside",0WO -"@stdlib/math-base-special-heaviside",0WP -"@stdlib/math/base/special/hypot",0WQ -"@stdlib/math-base-special-hypot",0WR -"@stdlib/math/base/special/hypotf",0WS -"@stdlib/math-base-special-hypotf",0WT -"@stdlib/math/base/special/identity",0WU -"@stdlib/math-base-special-identity",0WV -"@stdlib/math/base/special/identityf",0WW -"@stdlib/math-base-special-identityf",0WX -"@stdlib/math/base/special/inv",0WY -"@stdlib/math-base-special-inv",0WZ -"@stdlib/math/base/special/invf",0Wa -"@stdlib/math-base-special-invf",0Wb -"@stdlib/math/base/special/kernel-betainc",0Wc -"@stdlib/math-base-special-kernel-betainc",0Wd -"@stdlib/math/base/special/kernel-betaincinv",0We -"@stdlib/math-base-special-kernel-betaincinv",0Wf -"@stdlib/math/base/special/kernel-cos",0Wg -"@stdlib/math-base-special-kernel-cos",0Wh -"@stdlib/math/base/special/kernel-sin",0Wi -"@stdlib/math-base-special-kernel-sin",0Wj -"@stdlib/math/base/special/kernel-tan",0Wk -"@stdlib/math-base-special-kernel-tan",0Wl -"@stdlib/math/base/special/kronecker-delta",0Wm -"@stdlib/math-base-special-kronecker-delta",0Wn -"@stdlib/math/base/special/kronecker-deltaf",0Wo -"@stdlib/math-base-special-kronecker-deltaf",0Wp -"@stdlib/math/base/special/labs",0Wq -"@stdlib/math-base-special-labs",0Wr -"@stdlib/math/base/special/lcm",0Ws -"@stdlib/math-base-special-lcm",0Wt -"@stdlib/math/base/special/ldexp",0Wu -"@stdlib/math-base-special-ldexp",0Wv -"@stdlib/math/base/special/ln",0Ww -"@stdlib/math-base-special-ln",0Wx -"@stdlib/math/base/special/log",0Wy -"@stdlib/math-base-special-log",0Wz -"@stdlib/math/base/special/log10",0X0 -"@stdlib/math-base-special-log10",0X1 -"@stdlib/math/base/special/log1mexp",0X2 -"@stdlib/math-base-special-log1mexp",0X3 -"@stdlib/math/base/special/log1p",0X4 -"@stdlib/math-base-special-log1p",0X5 -"@stdlib/math/base/special/log1pexp",0X6 -"@stdlib/math-base-special-log1pexp",0X7 -"@stdlib/math/base/special/log2",0X8 -"@stdlib/math-base-special-log2",0X9 -"@stdlib/math/base/special/logaddexp",0XA -"@stdlib/math-base-special-logaddexp",0XB -"@stdlib/math/base/special/logit",0XC -"@stdlib/math-base-special-logit",0XD -"@stdlib/math/base/special/lucas",0XE -"@stdlib/math-base-special-lucas",0XF -"@stdlib/math/base/special/max",0XG -"@stdlib/math-base-special-max",0XH -"@stdlib/math/base/special/maxabs",0XI -"@stdlib/math-base-special-maxabs",0XJ -"@stdlib/math/base/special/min",0XK -"@stdlib/math-base-special-min",0XL -"@stdlib/math/base/special/minabs",0XM -"@stdlib/math-base-special-minabs",0XN -"@stdlib/math/base/special/minmax",0XO -"@stdlib/math-base-special-minmax",0XP -"@stdlib/math/base/special/minmaxabs",0XQ -"@stdlib/math-base-special-minmaxabs",0XR -"@stdlib/math/base/special/modf",0XS -"@stdlib/math-base-special-modf",0XT -"@stdlib/math/base/special/negafibonacci",0XU -"@stdlib/math-base-special-negafibonacci",0XV -"@stdlib/math/base/special/negalucas",0XW -"@stdlib/math-base-special-negalucas",0XX -"@stdlib/math/base/special/nonfibonacci",0XY -"@stdlib/math-base-special-nonfibonacci",0XZ -"@stdlib/math/base/special",0Xa -"@stdlib/math-base-special",0Xb -"@stdlib/math/base/special/pdiff",0Xc -"@stdlib/math-base-special-pdiff",0Xd -"@stdlib/math/base/special/pdifff",0Xe -"@stdlib/math-base-special-pdifff",0Xf -"@stdlib/math/base/special/polygamma",0Xg -"@stdlib/math-base-special-polygamma",0Xh -"@stdlib/math/base/special/pow",0Xi -"@stdlib/math-base-special-pow",0Xj -"@stdlib/math/base/special/powm1",0Xk -"@stdlib/math-base-special-powm1",0Xl -"@stdlib/math/base/special/rad2deg",0Xm -"@stdlib/math-base-special-rad2deg",0Xn -"@stdlib/math/base/special/ramp",0Xo -"@stdlib/math-base-special-ramp",0Xp -"@stdlib/math/base/special/rampf",0Xq -"@stdlib/math-base-special-rampf",0Xr -"@stdlib/math/base/special/rempio2",0Xs -"@stdlib/math-base-special-rempio2",0Xt -"@stdlib/math/base/special/riemann-zeta",0Xu -"@stdlib/math-base-special-riemann-zeta",0Xv -"@stdlib/math/base/special/rising-factorial",0Xw -"@stdlib/math-base-special-rising-factorial",0Xx -"@stdlib/math/base/special/round",0Xy -"@stdlib/math-base-special-round",0Xz -"@stdlib/math/base/special/round10",0Y0 -"@stdlib/math-base-special-round10",0Y1 -"@stdlib/math/base/special/round2",0Y2 -"@stdlib/math-base-special-round2",0Y3 -"@stdlib/math/base/special/roundb",0Y4 -"@stdlib/math-base-special-roundb",0Y5 -"@stdlib/math/base/special/roundn",0Y6 -"@stdlib/math-base-special-roundn",0Y7 -"@stdlib/math/base/special/roundsd",0Y8 -"@stdlib/math-base-special-roundsd",0Y9 -"@stdlib/math/base/special/rsqrt",0YA -"@stdlib/math-base-special-rsqrt",0YB -"@stdlib/math/base/special/rsqrtf",0YC -"@stdlib/math-base-special-rsqrtf",0YD -"@stdlib/math/base/special/sici",0YE -"@stdlib/math-base-special-sici",0YF -"@stdlib/math/base/special/signum",0YG -"@stdlib/math-base-special-signum",0YH -"@stdlib/math/base/special/signumf",0YI -"@stdlib/math-base-special-signumf",0YJ -"@stdlib/math/base/special/sin",0YK -"@stdlib/math-base-special-sin",0YL -"@stdlib/math/base/special/sinc",0YM -"@stdlib/math-base-special-sinc",0YN -"@stdlib/math/base/special/sincos",0YO -"@stdlib/math-base-special-sincos",0YP -"@stdlib/math/base/special/sincospi",0YQ -"@stdlib/math-base-special-sincospi",0YR -"@stdlib/math/base/special/sinh",0YS -"@stdlib/math-base-special-sinh",0YT -"@stdlib/math/base/special/sinpi",0YU -"@stdlib/math-base-special-sinpi",0YV -"@stdlib/math/base/special/spence",0YW -"@stdlib/math-base-special-spence",0YX -"@stdlib/math/base/special/sqrt",0YY -"@stdlib/math-base-special-sqrt",0YZ -"@stdlib/math/base/special/sqrt1pm1",0Ya -"@stdlib/math-base-special-sqrt1pm1",0Yb -"@stdlib/math/base/special/sqrtf",0Yc -"@stdlib/math-base-special-sqrtf",0Yd -"@stdlib/math/base/special/tan",0Ye -"@stdlib/math-base-special-tan",0Yf -"@stdlib/math/base/special/tanh",0Yg -"@stdlib/math-base-special-tanh",0Yh -"@stdlib/math/base/special/tribonacci",0Yi -"@stdlib/math-base-special-tribonacci",0Yj -"@stdlib/math/base/special/trigamma",0Yk -"@stdlib/math-base-special-trigamma",0Yl -"@stdlib/math/base/special/trunc",0Ym -"@stdlib/math-base-special-trunc",0Yn -"@stdlib/math/base/special/trunc10",0Yo -"@stdlib/math-base-special-trunc10",0Yp -"@stdlib/math/base/special/trunc2",0Yq -"@stdlib/math-base-special-trunc2",0Yr -"@stdlib/math/base/special/truncb",0Ys -"@stdlib/math-base-special-truncb",0Yt -"@stdlib/math/base/special/truncf",0Yu -"@stdlib/math-base-special-truncf",0Yv -"@stdlib/math/base/special/truncn",0Yw -"@stdlib/math-base-special-truncn",0Yx -"@stdlib/math/base/special/truncsd",0Yy -"@stdlib/math-base-special-truncsd",0Yz -"@stdlib/math/base/special/vercos",0Z0 -"@stdlib/math-base-special-vercos",0Z1 -"@stdlib/math/base/special/versin",0Z2 -"@stdlib/math-base-special-versin",0Z3 -"@stdlib/math/base/special/wrap",0Z4 -"@stdlib/math-base-special-wrap",0Z5 -"@stdlib/math/base/special/xlog1py",0Z6 -"@stdlib/math-base-special-xlog1py",0Z7 -"@stdlib/math/base/special/xlogy",0Z8 -"@stdlib/math-base-special-xlogy",0Z9 -"@stdlib/math/base/tools/continued-fraction",0ZA -"@stdlib/math-base-tools-continued-fraction",0ZB -"@stdlib/math/base/tools/evalpoly-compile",0ZC -"@stdlib/math-base-tools-evalpoly-compile",0ZD -"@stdlib/math/base/tools/evalpoly",0ZE -"@stdlib/math-base-tools-evalpoly",0ZF -"@stdlib/math/base/tools/evalrational-compile",0ZG -"@stdlib/math-base-tools-evalrational-compile",0ZH -"@stdlib/math/base/tools/evalrational",0ZI -"@stdlib/math-base-tools-evalrational",0ZJ -"@stdlib/math/base/tools/fibpoly",0ZK -"@stdlib/math-base-tools-fibpoly",0ZL -"@stdlib/math/base/tools/hermitepoly",0ZM -"@stdlib/math-base-tools-hermitepoly",0ZN -"@stdlib/math/base/tools/lucaspoly",0ZO -"@stdlib/math-base-tools-lucaspoly",0ZP -"@stdlib/math/base/tools/normhermitepoly",0ZQ -"@stdlib/math-base-tools-normhermitepoly",0ZR -"@stdlib/math/base/tools",0ZS -"@stdlib/math-base-tools",0ZT -"@stdlib/math/base/tools/sum-series",0ZU -"@stdlib/math-base-tools-sum-series",0ZV -"@stdlib/math/base/utils/absolute-difference",0ZW -"@stdlib/math-base-utils-absolute-difference",0ZX -"@stdlib/math/base/utils/float64-epsilon-difference",0ZY -"@stdlib/math-base-utils-float64-epsilon-difference",0ZZ -"@stdlib/math/base/utils",0Za -"@stdlib/math-base-utils",0Zb -"@stdlib/math/base/utils/relative-difference",0Zc -"@stdlib/math-base-utils-relative-difference",0Zd -"@stdlib/math/iter/ops/add",0Ze -"@stdlib/math-iter-ops-add",0Zf -"@stdlib/math/iter/ops/divide",0Zg -"@stdlib/math-iter-ops-divide",0Zh -"@stdlib/math/iter/ops/mod",0Zi -"@stdlib/math-iter-ops-mod",0Zj -"@stdlib/math/iter/ops/multiply",0Zk -"@stdlib/math-iter-ops-multiply",0Zl -"@stdlib/math/iter/ops",0Zm -"@stdlib/math-iter-ops",0Zn -"@stdlib/math/iter/ops/subtract",0Zo -"@stdlib/math-iter-ops-subtract",0Zp -"@stdlib/math/iter",0Zq -"@stdlib/math-iter",0Zr -"@stdlib/math/iter/sequences/composites",0Zs -"@stdlib/math-iter-sequences-composites",0Zt -"@stdlib/math/iter/sequences/continued-fraction",0Zu -"@stdlib/math-iter-sequences-continued-fraction",0Zv -"@stdlib/math/iter/sequences/cubes",0Zw -"@stdlib/math-iter-sequences-cubes",0Zx -"@stdlib/math/iter/sequences/even-integers",0Zy -"@stdlib/math-iter-sequences-even-integers",0Zz -"@stdlib/math/iter/sequences/factorials",0a0 -"@stdlib/math-iter-sequences-factorials",0a1 -"@stdlib/math/iter/sequences/fibonacci",0a2 -"@stdlib/math-iter-sequences-fibonacci",0a3 -"@stdlib/math/iter/sequences/fifth-powers",0a4 -"@stdlib/math-iter-sequences-fifth-powers",0a5 -"@stdlib/math/iter/sequences/fourth-powers",0a6 -"@stdlib/math-iter-sequences-fourth-powers",0a7 -"@stdlib/math/iter/sequences/integers",0a8 -"@stdlib/math-iter-sequences-integers",0a9 -"@stdlib/math/iter/sequences/lucas",0aA -"@stdlib/math-iter-sequences-lucas",0aB -"@stdlib/math/iter/sequences/negafibonacci",0aC -"@stdlib/math-iter-sequences-negafibonacci",0aD -"@stdlib/math/iter/sequences/negalucas",0aE -"@stdlib/math-iter-sequences-negalucas",0aF -"@stdlib/math/iter/sequences/negative-even-integers",0aG -"@stdlib/math-iter-sequences-negative-even-integers",0aH -"@stdlib/math/iter/sequences/negative-integers",0aI -"@stdlib/math-iter-sequences-negative-integers",0aJ -"@stdlib/math/iter/sequences/negative-odd-integers",0aK -"@stdlib/math-iter-sequences-negative-odd-integers",0aL -"@stdlib/math/iter/sequences/nonfibonacci",0aM -"@stdlib/math-iter-sequences-nonfibonacci",0aN -"@stdlib/math/iter/sequences/nonnegative-even-integers",0aO -"@stdlib/math-iter-sequences-nonnegative-even-integers",0aP -"@stdlib/math/iter/sequences/nonnegative-integers",0aQ -"@stdlib/math-iter-sequences-nonnegative-integers",0aR -"@stdlib/math/iter/sequences/nonpositive-even-integers",0aS -"@stdlib/math-iter-sequences-nonpositive-even-integers",0aT -"@stdlib/math/iter/sequences/nonpositive-integers",0aU -"@stdlib/math-iter-sequences-nonpositive-integers",0aV -"@stdlib/math/iter/sequences/nonsquares",0aW -"@stdlib/math-iter-sequences-nonsquares",0aX -"@stdlib/math/iter/sequences/odd-integers",0aY -"@stdlib/math-iter-sequences-odd-integers",0aZ -"@stdlib/math/iter/sequences",0aa -"@stdlib/math-iter-sequences",0ab -"@stdlib/math/iter/sequences/positive-even-integers",0ac -"@stdlib/math-iter-sequences-positive-even-integers",0ad -"@stdlib/math/iter/sequences/positive-integers",0ae -"@stdlib/math-iter-sequences-positive-integers",0af -"@stdlib/math/iter/sequences/positive-odd-integers",0ag -"@stdlib/math-iter-sequences-positive-odd-integers",0ah -"@stdlib/math/iter/sequences/primes",0ai -"@stdlib/math-iter-sequences-primes",0aj -"@stdlib/math/iter/sequences/squared-triangular",0ak -"@stdlib/math-iter-sequences-squared-triangular",0al -"@stdlib/math/iter/sequences/squares",0am -"@stdlib/math-iter-sequences-squares",0an -"@stdlib/math/iter/sequences/triangular",0ao -"@stdlib/math-iter-sequences-triangular",0ap -"@stdlib/math/iter/special/abs",0aq -"@stdlib/math-iter-special-abs",0ar -"@stdlib/math/iter/special/abs2",0as -"@stdlib/math-iter-special-abs2",0at -"@stdlib/math/iter/special/acos",0au -"@stdlib/math-iter-special-acos",0av -"@stdlib/math/iter/special/acosh",0aw -"@stdlib/math-iter-special-acosh",0ax -"@stdlib/math/iter/special/acot",0ay -"@stdlib/math-iter-special-acot",0az -"@stdlib/math/iter/special/acoth",0b0 -"@stdlib/math-iter-special-acoth",0b1 -"@stdlib/math/iter/special/acovercos",0b2 -"@stdlib/math-iter-special-acovercos",0b3 -"@stdlib/math/iter/special/acoversin",0b4 -"@stdlib/math-iter-special-acoversin",0b5 -"@stdlib/math/iter/special/ahavercos",0b6 -"@stdlib/math-iter-special-ahavercos",0b7 -"@stdlib/math/iter/special/ahaversin",0b8 -"@stdlib/math-iter-special-ahaversin",0b9 -"@stdlib/math/iter/special/asin",0bA -"@stdlib/math-iter-special-asin",0bB -"@stdlib/math/iter/special/asinh",0bC -"@stdlib/math-iter-special-asinh",0bD -"@stdlib/math/iter/special/atan",0bE -"@stdlib/math-iter-special-atan",0bF -"@stdlib/math/iter/special/atan2",0bG -"@stdlib/math-iter-special-atan2",0bH -"@stdlib/math/iter/special/atanh",0bI -"@stdlib/math-iter-special-atanh",0bJ -"@stdlib/math/iter/special/avercos",0bK -"@stdlib/math-iter-special-avercos",0bL -"@stdlib/math/iter/special/aversin",0bM -"@stdlib/math-iter-special-aversin",0bN -"@stdlib/math/iter/special/besselj0",0bO -"@stdlib/math-iter-special-besselj0",0bP -"@stdlib/math/iter/special/besselj1",0bQ -"@stdlib/math-iter-special-besselj1",0bR -"@stdlib/math/iter/special/bessely0",0bS -"@stdlib/math-iter-special-bessely0",0bT -"@stdlib/math/iter/special/bessely1",0bU -"@stdlib/math-iter-special-bessely1",0bV -"@stdlib/math/iter/special/beta",0bW -"@stdlib/math-iter-special-beta",0bX -"@stdlib/math/iter/special/betaln",0bY -"@stdlib/math-iter-special-betaln",0bZ -"@stdlib/math/iter/special/binet",0ba -"@stdlib/math-iter-special-binet",0bb -"@stdlib/math/iter/special/cbrt",0bc -"@stdlib/math-iter-special-cbrt",0bd -"@stdlib/math/iter/special/ceil",0be -"@stdlib/math-iter-special-ceil",0bf -"@stdlib/math/iter/special/ceil10",0bg -"@stdlib/math-iter-special-ceil10",0bh -"@stdlib/math/iter/special/ceil2",0bi -"@stdlib/math-iter-special-ceil2",0bj -"@stdlib/math/iter/special/cos",0bk -"@stdlib/math-iter-special-cos",0bl -"@stdlib/math/iter/special/cosh",0bm -"@stdlib/math-iter-special-cosh",0bn -"@stdlib/math/iter/special/cosm1",0bo -"@stdlib/math-iter-special-cosm1",0bp -"@stdlib/math/iter/special/cospi",0bq -"@stdlib/math-iter-special-cospi",0br -"@stdlib/math/iter/special/covercos",0bs -"@stdlib/math-iter-special-covercos",0bt -"@stdlib/math/iter/special/coversin",0bu -"@stdlib/math-iter-special-coversin",0bv -"@stdlib/math/iter/special/deg2rad",0bw -"@stdlib/math-iter-special-deg2rad",0bx -"@stdlib/math/iter/special/digamma",0by -"@stdlib/math-iter-special-digamma",0bz -"@stdlib/math/iter/special/dirac-delta",0c0 -"@stdlib/math-iter-special-dirac-delta",0c1 -"@stdlib/math/iter/special/dirichlet-eta",0c2 -"@stdlib/math-iter-special-dirichlet-eta",0c3 -"@stdlib/math/iter/special/ellipe",0c4 -"@stdlib/math-iter-special-ellipe",0c5 -"@stdlib/math/iter/special/ellipk",0c6 -"@stdlib/math-iter-special-ellipk",0c7 -"@stdlib/math/iter/special/erf",0c8 -"@stdlib/math-iter-special-erf",0c9 -"@stdlib/math/iter/special/erfc",0cA -"@stdlib/math-iter-special-erfc",0cB -"@stdlib/math/iter/special/erfcinv",0cC -"@stdlib/math-iter-special-erfcinv",0cD -"@stdlib/math/iter/special/erfinv",0cE -"@stdlib/math-iter-special-erfinv",0cF -"@stdlib/math/iter/special/exp",0cG -"@stdlib/math-iter-special-exp",0cH -"@stdlib/math/iter/special/exp10",0cI -"@stdlib/math-iter-special-exp10",0cJ -"@stdlib/math/iter/special/exp2",0cK -"@stdlib/math-iter-special-exp2",0cL -"@stdlib/math/iter/special/expit",0cM -"@stdlib/math-iter-special-expit",0cN -"@stdlib/math/iter/special/expm1",0cO -"@stdlib/math-iter-special-expm1",0cP -"@stdlib/math/iter/special/expm1rel",0cQ -"@stdlib/math-iter-special-expm1rel",0cR -"@stdlib/math/iter/special/factorial",0cS -"@stdlib/math-iter-special-factorial",0cT -"@stdlib/math/iter/special/factorialln",0cU -"@stdlib/math-iter-special-factorialln",0cV -"@stdlib/math/iter/special/floor",0cW -"@stdlib/math-iter-special-floor",0cX -"@stdlib/math/iter/special/floor10",0cY -"@stdlib/math-iter-special-floor10",0cZ -"@stdlib/math/iter/special/floor2",0ca -"@stdlib/math-iter-special-floor2",0cb -"@stdlib/math/iter/special/fresnelc",0cc -"@stdlib/math-iter-special-fresnelc",0cd -"@stdlib/math/iter/special/fresnels",0ce -"@stdlib/math-iter-special-fresnels",0cf -"@stdlib/math/iter/special/gamma",0cg -"@stdlib/math-iter-special-gamma",0ch -"@stdlib/math/iter/special/gamma1pm1",0ci -"@stdlib/math-iter-special-gamma1pm1",0cj -"@stdlib/math/iter/special/gammaln",0ck -"@stdlib/math-iter-special-gammaln",0cl -"@stdlib/math/iter/special/hacovercos",0cm -"@stdlib/math-iter-special-hacovercos",0cn -"@stdlib/math/iter/special/hacoversin",0co -"@stdlib/math-iter-special-hacoversin",0cp -"@stdlib/math/iter/special/havercos",0cq -"@stdlib/math-iter-special-havercos",0cr -"@stdlib/math/iter/special/haversin",0cs -"@stdlib/math-iter-special-haversin",0ct -"@stdlib/math/iter/special/inv",0cu -"@stdlib/math-iter-special-inv",0cv -"@stdlib/math/iter/special/ln",0cw -"@stdlib/math-iter-special-ln",0cx -"@stdlib/math/iter/special/log",0cy -"@stdlib/math-iter-special-log",0cz -"@stdlib/math/iter/special/log10",0d0 -"@stdlib/math-iter-special-log10",0d1 -"@stdlib/math/iter/special/log1mexp",0d2 -"@stdlib/math-iter-special-log1mexp",0d3 -"@stdlib/math/iter/special/log1p",0d4 -"@stdlib/math-iter-special-log1p",0d5 -"@stdlib/math/iter/special/log1pexp",0d6 -"@stdlib/math-iter-special-log1pexp",0d7 -"@stdlib/math/iter/special/log2",0d8 -"@stdlib/math-iter-special-log2",0d9 -"@stdlib/math/iter/special/logit",0dA -"@stdlib/math-iter-special-logit",0dB -"@stdlib/math/iter/special",0dC -"@stdlib/math-iter-special",0dD -"@stdlib/math/iter/special/pow",0dE -"@stdlib/math-iter-special-pow",0dF -"@stdlib/math/iter/special/rad2deg",0dG -"@stdlib/math-iter-special-rad2deg",0dH -"@stdlib/math/iter/special/ramp",0dI -"@stdlib/math-iter-special-ramp",0dJ -"@stdlib/math/iter/special/riemann-zeta",0dK -"@stdlib/math-iter-special-riemann-zeta",0dL -"@stdlib/math/iter/special/round",0dM -"@stdlib/math-iter-special-round",0dN -"@stdlib/math/iter/special/round10",0dO -"@stdlib/math-iter-special-round10",0dP -"@stdlib/math/iter/special/round2",0dQ -"@stdlib/math-iter-special-round2",0dR -"@stdlib/math/iter/special/rsqrt",0dS -"@stdlib/math-iter-special-rsqrt",0dT -"@stdlib/math/iter/special/signum",0dU -"@stdlib/math-iter-special-signum",0dV -"@stdlib/math/iter/special/sin",0dW -"@stdlib/math-iter-special-sin",0dX -"@stdlib/math/iter/special/sinc",0dY -"@stdlib/math-iter-special-sinc",0dZ -"@stdlib/math/iter/special/sinh",0da -"@stdlib/math-iter-special-sinh",0db -"@stdlib/math/iter/special/sinpi",0dc -"@stdlib/math-iter-special-sinpi",0dd -"@stdlib/math/iter/special/spence",0de -"@stdlib/math-iter-special-spence",0df -"@stdlib/math/iter/special/sqrt",0dg -"@stdlib/math-iter-special-sqrt",0dh -"@stdlib/math/iter/special/sqrt1pm1",0di -"@stdlib/math-iter-special-sqrt1pm1",0dj -"@stdlib/math/iter/special/tan",0dk -"@stdlib/math-iter-special-tan",0dl -"@stdlib/math/iter/special/tanh",0dm -"@stdlib/math-iter-special-tanh",0dn -"@stdlib/math/iter/special/trigamma",0do -"@stdlib/math-iter-special-trigamma",0dp -"@stdlib/math/iter/special/trunc",0dq -"@stdlib/math-iter-special-trunc",0dr -"@stdlib/math/iter/special/trunc10",0ds -"@stdlib/math-iter-special-trunc10",0dt -"@stdlib/math/iter/special/trunc2",0du -"@stdlib/math-iter-special-trunc2",0dv -"@stdlib/math/iter/special/vercos",0dw -"@stdlib/math-iter-special-vercos",0dx -"@stdlib/math/iter/special/versin",0dy -"@stdlib/math-iter-special-versin",0dz -"@stdlib/math/iter/tools/map",0e0 -"@stdlib/math-iter-tools-map",0e1 -"@stdlib/math/iter/tools/map2",0e2 -"@stdlib/math-iter-tools-map2",0e3 -"@stdlib/math/iter/tools/map3",0e4 -"@stdlib/math-iter-tools-map3",0e5 -"@stdlib/math/iter/tools",0e6 -"@stdlib/math-iter-tools",0e7 -"@stdlib/math/iter/utils/continued-fraction",0e8 -"@stdlib/math-iter-utils-continued-fraction",0e9 -"@stdlib/math/iter/utils",0eA -"@stdlib/math-iter-utils",0eB -"@stdlib/math",0eD -"@stdlib/math/special/abs",0eE -"@stdlib/math-special-abs",0eF -"@stdlib/math/special",0eG -"@stdlib/math-special",0eH -"@stdlib/math/strided/ops/add",0eI -"@stdlib/math-strided-ops-add",0eJ -"@stdlib/math/strided/ops/mul",0eK -"@stdlib/math-strided-ops-mul",0eL -"@stdlib/math/strided/ops",0eM -"@stdlib/math-strided-ops",0eN -"@stdlib/math/strided/ops/sub",0eO -"@stdlib/math-strided-ops-sub",0eP -"@stdlib/math/strided",0eQ -"@stdlib/math-strided",0eR -"@stdlib/math/strided/special/abs-by",0eS -"@stdlib/math-strided-special-abs-by",0eT -"@stdlib/math/strided/special/abs",0eU -"@stdlib/math-strided-special-abs",0eV -"@stdlib/math/strided/special/abs2-by",0eW -"@stdlib/math-strided-special-abs2-by",0eX -"@stdlib/math/strided/special/abs2",0eY -"@stdlib/math-strided-special-abs2",0eZ -"@stdlib/math/strided/special/acos-by",0ea -"@stdlib/math-strided-special-acos-by",0eb -"@stdlib/math/strided/special/acosh-by",0ec -"@stdlib/math-strided-special-acosh-by",0ed -"@stdlib/math/strided/special/acot-by",0ee -"@stdlib/math-strided-special-acot-by",0ef -"@stdlib/math/strided/special/acoth-by",0eg -"@stdlib/math-strided-special-acoth-by",0eh -"@stdlib/math/strided/special/acovercos-by",0ei -"@stdlib/math-strided-special-acovercos-by",0ej -"@stdlib/math/strided/special/acoversin-by",0ek -"@stdlib/math-strided-special-acoversin-by",0el -"@stdlib/math/strided/special/ahavercos-by",0em -"@stdlib/math-strided-special-ahavercos-by",0en -"@stdlib/math/strided/special/ahaversin-by",0eo -"@stdlib/math-strided-special-ahaversin-by",0ep -"@stdlib/math/strided/special/asin-by",0eq -"@stdlib/math-strided-special-asin-by",0er -"@stdlib/math/strided/special/asinh-by",0es -"@stdlib/math-strided-special-asinh-by",0et -"@stdlib/math/strided/special/atan-by",0eu -"@stdlib/math-strided-special-atan-by",0ev -"@stdlib/math/strided/special/atanh-by",0ew -"@stdlib/math-strided-special-atanh-by",0ex -"@stdlib/math/strided/special/avercos-by",0ey -"@stdlib/math-strided-special-avercos-by",0ez -"@stdlib/math/strided/special/aversin-by",0f0 -"@stdlib/math-strided-special-aversin-by",0f1 -"@stdlib/math/strided/special/besselj0-by",0f2 -"@stdlib/math-strided-special-besselj0-by",0f3 -"@stdlib/math/strided/special/besselj1-by",0f4 -"@stdlib/math-strided-special-besselj1-by",0f5 -"@stdlib/math/strided/special/bessely0-by",0f6 -"@stdlib/math-strided-special-bessely0-by",0f7 -"@stdlib/math/strided/special/bessely1-by",0f8 -"@stdlib/math-strided-special-bessely1-by",0f9 -"@stdlib/math/strided/special/binet-by",0fA -"@stdlib/math-strided-special-binet-by",0fB -"@stdlib/math/strided/special/cbrt",0fC -"@stdlib/math-strided-special-cbrt",0fD -"@stdlib/math/strided/special/ceil",0fE -"@stdlib/math-strided-special-ceil",0fF -"@stdlib/math/strided/special/dabs",0fG -"@stdlib/math-strided-special-dabs",0fH -"@stdlib/math/strided/special/dabs2",0fI -"@stdlib/math-strided-special-dabs2",0fJ -"@stdlib/math/strided/special/dcbrt",0fK -"@stdlib/math-strided-special-dcbrt",0fL -"@stdlib/math/strided/special/dceil",0fM -"@stdlib/math-strided-special-dceil",0fN -"@stdlib/math/strided/special/ddeg2rad",0fO -"@stdlib/math-strided-special-ddeg2rad",0fP -"@stdlib/math/strided/special/deg2rad",0fQ -"@stdlib/math-strided-special-deg2rad",0fR -"@stdlib/math/strided/special/dfloor",0fS -"@stdlib/math-strided-special-dfloor",0fT -"@stdlib/math/strided/special/dinv",0fU -"@stdlib/math-strided-special-dinv",0fV -"@stdlib/math/strided/special/dmskabs",0fW -"@stdlib/math-strided-special-dmskabs",0fX -"@stdlib/math/strided/special/dmskabs2",0fY -"@stdlib/math-strided-special-dmskabs2",0fZ -"@stdlib/math/strided/special/dmskcbrt",0fa -"@stdlib/math-strided-special-dmskcbrt",0fb -"@stdlib/math/strided/special/dmskceil",0fc -"@stdlib/math-strided-special-dmskceil",0fd -"@stdlib/math/strided/special/dmskdeg2rad",0fe -"@stdlib/math-strided-special-dmskdeg2rad",0ff -"@stdlib/math/strided/special/dmskfloor",0fg -"@stdlib/math-strided-special-dmskfloor",0fh -"@stdlib/math/strided/special/dmskinv",0fi -"@stdlib/math-strided-special-dmskinv",0fj -"@stdlib/math/strided/special/dmskramp",0fk -"@stdlib/math-strided-special-dmskramp",0fl -"@stdlib/math/strided/special/dmskrsqrt",0fm -"@stdlib/math-strided-special-dmskrsqrt",0fn -"@stdlib/math/strided/special/dmsksqrt",0fo -"@stdlib/math-strided-special-dmsksqrt",0fp -"@stdlib/math/strided/special/dmsktrunc",0fq -"@stdlib/math-strided-special-dmsktrunc",0fr -"@stdlib/math/strided/special/dramp",0fs -"@stdlib/math-strided-special-dramp",0ft -"@stdlib/math/strided/special/drsqrt",0fu -"@stdlib/math-strided-special-drsqrt",0fv -"@stdlib/math/strided/special/dsqrt",0fw -"@stdlib/math-strided-special-dsqrt",0fx -"@stdlib/math/strided/special/dtrunc",0fy -"@stdlib/math-strided-special-dtrunc",0fz -"@stdlib/math/strided/special/floor",0g0 -"@stdlib/math-strided-special-floor",0g1 -"@stdlib/math/strided/special/inv",0g2 -"@stdlib/math-strided-special-inv",0g3 -"@stdlib/math/strided/special",0g4 -"@stdlib/math-strided-special",0g5 -"@stdlib/math/strided/special/ramp",0g6 -"@stdlib/math-strided-special-ramp",0g7 -"@stdlib/math/strided/special/rsqrt",0g8 -"@stdlib/math-strided-special-rsqrt",0g9 -"@stdlib/math/strided/special/sabs",0gA -"@stdlib/math-strided-special-sabs",0gB -"@stdlib/math/strided/special/sabs2",0gC -"@stdlib/math-strided-special-sabs2",0gD -"@stdlib/math/strided/special/scbrt",0gE -"@stdlib/math-strided-special-scbrt",0gF -"@stdlib/math/strided/special/sceil",0gG -"@stdlib/math-strided-special-sceil",0gH -"@stdlib/math/strided/special/sdeg2rad",0gI -"@stdlib/math-strided-special-sdeg2rad",0gJ -"@stdlib/math/strided/special/sfloor",0gK -"@stdlib/math-strided-special-sfloor",0gL -"@stdlib/math/strided/special/sinv",0gM -"@stdlib/math-strided-special-sinv",0gN -"@stdlib/math/strided/special/smskabs",0gO -"@stdlib/math-strided-special-smskabs",0gP -"@stdlib/math/strided/special/smskabs2",0gQ -"@stdlib/math-strided-special-smskabs2",0gR -"@stdlib/math/strided/special/smskcbrt",0gS -"@stdlib/math-strided-special-smskcbrt",0gT -"@stdlib/math/strided/special/smskceil",0gU -"@stdlib/math-strided-special-smskceil",0gV -"@stdlib/math/strided/special/smskdeg2rad",0gW -"@stdlib/math-strided-special-smskdeg2rad",0gX -"@stdlib/math/strided/special/smskfloor",0gY -"@stdlib/math-strided-special-smskfloor",0gZ -"@stdlib/math/strided/special/smskinv",0ga -"@stdlib/math-strided-special-smskinv",0gb -"@stdlib/math/strided/special/smskramp",0gc -"@stdlib/math-strided-special-smskramp",0gd -"@stdlib/math/strided/special/smskrsqrt",0ge -"@stdlib/math-strided-special-smskrsqrt",0gf -"@stdlib/math/strided/special/smsksqrt",0gg -"@stdlib/math-strided-special-smsksqrt",0gh -"@stdlib/math/strided/special/smsktrunc",0gi -"@stdlib/math-strided-special-smsktrunc",0gj -"@stdlib/math/strided/special/sqrt",0gk -"@stdlib/math-strided-special-sqrt",0gl -"@stdlib/math/strided/special/sramp",0gm -"@stdlib/math-strided-special-sramp",0gn -"@stdlib/math/strided/special/srsqrt",0go -"@stdlib/math-strided-special-srsqrt",0gp -"@stdlib/math/strided/special/ssqrt",0gq -"@stdlib/math-strided-special-ssqrt",0gr -"@stdlib/math/strided/special/strunc",0gs -"@stdlib/math-strided-special-strunc",0gt -"@stdlib/math/strided/special/trunc",0gu -"@stdlib/math-strided-special-trunc",0gv -"@stdlib/math/tools",0gw -"@stdlib/math-tools",0gx -"@stdlib/math/tools/unary",0gy -"@stdlib/math-tools-unary",0gz -"@stdlib/ml/incr/binary-classification",0h0 -"@stdlib/ml-incr-binary-classification",0h1 -"@stdlib/ml/incr/kmeans",0h2 -"@stdlib/ml-incr-kmeans",0h3 -"@stdlib/ml/incr",0h4 -"@stdlib/ml-incr",0h5 -"@stdlib/ml/incr/sgd-regression",0h6 -"@stdlib/ml-incr-sgd-regression",0h7 -"@stdlib/ml",0h9 -"@stdlib/namespace/alias2pkg",0hA -"@stdlib/namespace-alias2pkg",0hB -"@stdlib/namespace/alias2related",0hC -"@stdlib/namespace-alias2related",0hD -"@stdlib/namespace/alias2standalone",0hE -"@stdlib/namespace-alias2standalone",0hF -"@stdlib/namespace/aliases",0hG -"@stdlib/namespace-aliases",0hH -"@stdlib/namespace",0hJ -"@stdlib/namespace/pkg2alias",0hK -"@stdlib/namespace-pkg2alias",0hL -"@stdlib/namespace/pkg2related",0hM -"@stdlib/namespace-pkg2related",0hN -"@stdlib/namespace/pkg2standalone",0hO -"@stdlib/namespace-pkg2standalone",0hP -"@stdlib/namespace/standalone2pkg",0hQ -"@stdlib/namespace-standalone2pkg",0hR -"@stdlib/ndarray/array",0hS -"@stdlib/ndarray-array",0hT -"@stdlib/ndarray/base/assert/is-allowed-data-type-cast",0hU -"@stdlib/ndarray-base-assert-is-allowed-data-type-cast",0hV -"@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape",0hW -"@stdlib/ndarray-base-assert-is-buffer-length-compatible-shape",0hX -"@stdlib/ndarray/base/assert/is-buffer-length-compatible",0hY -"@stdlib/ndarray-base-assert-is-buffer-length-compatible",0hZ -"@stdlib/ndarray/base/assert/is-casting-mode",0ha -"@stdlib/ndarray-base-assert-is-casting-mode",0hb -"@stdlib/ndarray/base/assert/is-column-major-contiguous",0hc -"@stdlib/ndarray-base-assert-is-column-major-contiguous",0hd -"@stdlib/ndarray/base/assert/is-column-major",0he -"@stdlib/ndarray-base-assert-is-column-major",0hf -"@stdlib/ndarray/base/assert/is-contiguous",0hg -"@stdlib/ndarray-base-assert-is-contiguous",0hh -"@stdlib/ndarray/base/assert/is-data-type",0hi -"@stdlib/ndarray-base-assert-is-data-type",0hj -"@stdlib/ndarray/base/assert/is-index-mode",0hk -"@stdlib/ndarray-base-assert-is-index-mode",0hl -"@stdlib/ndarray/base/assert/is-order",0hm -"@stdlib/ndarray-base-assert-is-order",0hn -"@stdlib/ndarray/base/assert/is-read-only",0ho -"@stdlib/ndarray-base-assert-is-read-only",0hp -"@stdlib/ndarray/base/assert/is-row-major-contiguous",0hq -"@stdlib/ndarray-base-assert-is-row-major-contiguous",0hr -"@stdlib/ndarray/base/assert/is-row-major",0hs -"@stdlib/ndarray-base-assert-is-row-major",0ht -"@stdlib/ndarray/base/assert/is-safe-data-type-cast",0hu -"@stdlib/ndarray-base-assert-is-safe-data-type-cast",0hv -"@stdlib/ndarray/base/assert/is-same-kind-data-type-cast",0hw -"@stdlib/ndarray-base-assert-is-same-kind-data-type-cast",0hx -"@stdlib/ndarray/base/assert/is-single-segment-compatible",0hy -"@stdlib/ndarray-base-assert-is-single-segment-compatible",0hz -"@stdlib/ndarray/base/assert",0i0 -"@stdlib/ndarray-base-assert",0i1 -"@stdlib/ndarray/base/bind2vind",0i2 -"@stdlib/ndarray-base-bind2vind",0i3 -"@stdlib/ndarray/base/broadcast-array",0i4 -"@stdlib/ndarray-base-broadcast-array",0i5 -"@stdlib/ndarray/base/broadcast-shapes",0i6 -"@stdlib/ndarray-base-broadcast-shapes",0i7 -"@stdlib/ndarray/base/buffer-ctors",0i8 -"@stdlib/ndarray-base-buffer-ctors",0i9 -"@stdlib/ndarray/base/buffer-dtype-enum",0iA -"@stdlib/ndarray-base-buffer-dtype-enum",0iB -"@stdlib/ndarray/base/buffer-dtype",0iC -"@stdlib/ndarray-base-buffer-dtype",0iD -"@stdlib/ndarray/base/buffer",0iE -"@stdlib/ndarray-base-buffer",0iF -"@stdlib/ndarray/base/bytes-per-element",0iG -"@stdlib/ndarray-base-bytes-per-element",0iH -"@stdlib/ndarray/base/char2dtype",0iI -"@stdlib/ndarray-base-char2dtype",0iJ -"@stdlib/ndarray/base/clamp-index",0iK -"@stdlib/ndarray-base-clamp-index",0iL -"@stdlib/ndarray/base/ctor",0iM -"@stdlib/ndarray-base-ctor",0iN -"@stdlib/ndarray/base/dtype-char",0iO -"@stdlib/ndarray-base-dtype-char",0iP -"@stdlib/ndarray/base/dtype-desc",0iQ -"@stdlib/ndarray-base-dtype-desc",0iR -"@stdlib/ndarray/base/dtype-enum2str",0iS -"@stdlib/ndarray-base-dtype-enum2str",0iT -"@stdlib/ndarray/base/dtype-resolve-enum",0iU -"@stdlib/ndarray-base-dtype-resolve-enum",0iV -"@stdlib/ndarray/base/dtype-resolve-str",0iW -"@stdlib/ndarray-base-dtype-resolve-str",0iX -"@stdlib/ndarray/base/dtype-str2enum",0iY -"@stdlib/ndarray-base-dtype-str2enum",0iZ -"@stdlib/ndarray/base/dtype2c",0ia -"@stdlib/ndarray-base-dtype2c",0ib -"@stdlib/ndarray/base/dtypes2signatures",0ic -"@stdlib/ndarray-base-dtypes2signatures",0id -"@stdlib/ndarray/base/expand-dimensions",0ie -"@stdlib/ndarray-base-expand-dimensions",0if -"@stdlib/ndarray/base/from-scalar",0ig -"@stdlib/ndarray-base-from-scalar",0ih -"@stdlib/ndarray/base/function-object",0ii -"@stdlib/ndarray-base-function-object",0ij -"@stdlib/ndarray/base/ind",0ik -"@stdlib/ndarray-base-ind",0il -"@stdlib/ndarray/base/ind2sub",0im -"@stdlib/ndarray-base-ind2sub",0in -"@stdlib/ndarray/base/iteration-order",0io -"@stdlib/ndarray-base-iteration-order",0ip -"@stdlib/ndarray/base/max-view-buffer-index",0iq -"@stdlib/ndarray-base-max-view-buffer-index",0ir -"@stdlib/ndarray/base/maybe-broadcast-array",0is -"@stdlib/ndarray-base-maybe-broadcast-array",0it -"@stdlib/ndarray/base/meta-data-props",0iu -"@stdlib/ndarray-base-meta-data-props",0iv -"@stdlib/ndarray/base/min-view-buffer-index",0iw -"@stdlib/ndarray-base-min-view-buffer-index",0ix -"@stdlib/ndarray/base/minmax-view-buffer-index",0iy -"@stdlib/ndarray-base-minmax-view-buffer-index",0iz -"@stdlib/ndarray/base/napi/addon-arguments",0j0 -"@stdlib/ndarray-base-napi-addon-arguments",0j1 -"@stdlib/ndarray/base/napi/dtype-string-to-dtype",0j2 -"@stdlib/ndarray-base-napi-dtype-string-to-dtype",0j3 -"@stdlib/ndarray/base/napi",0j4 -"@stdlib/ndarray-base-napi",0j5 -"@stdlib/ndarray/base/napi/typedarray-type-to-dtype",0j6 -"@stdlib/ndarray-base-napi-typedarray-type-to-dtype",0j7 -"@stdlib/ndarray/base/napi/unary",0j8 -"@stdlib/ndarray-base-napi-unary",0j9 -"@stdlib/ndarray/base/ndarraylike2object",0jA -"@stdlib/ndarray-base-ndarraylike2object",0jB -"@stdlib/ndarray/base/nonsingleton-dimensions",0jC -"@stdlib/ndarray-base-nonsingleton-dimensions",0jD -"@stdlib/ndarray/base/numel",0jE -"@stdlib/ndarray-base-numel",0jF -"@stdlib/ndarray/base",0jG -"@stdlib/ndarray-base",0jH -"@stdlib/ndarray/base/prepend-singleton-dimensions",0jI -"@stdlib/ndarray-base-prepend-singleton-dimensions",0jJ -"@stdlib/ndarray/base/remove-singleton-dimensions",0jK -"@stdlib/ndarray-base-remove-singleton-dimensions",0jL -"@stdlib/ndarray/base/serialize-meta-data",0jM -"@stdlib/ndarray-base-serialize-meta-data",0jN -"@stdlib/ndarray/base/shape2strides",0jO -"@stdlib/ndarray-base-shape2strides",0jP -"@stdlib/ndarray/base/singleton-dimensions",0jQ -"@stdlib/ndarray-base-singleton-dimensions",0jR -"@stdlib/ndarray/base/strides2offset",0jS -"@stdlib/ndarray-base-strides2offset",0jT -"@stdlib/ndarray/base/strides2order",0jU -"@stdlib/ndarray-base-strides2order",0jV -"@stdlib/ndarray/base/sub2ind",0jW -"@stdlib/ndarray-base-sub2ind",0jX -"@stdlib/ndarray/base/to-array",0jY -"@stdlib/ndarray-base-to-array",0jZ -"@stdlib/ndarray/base/transpose",0ja -"@stdlib/ndarray-base-transpose",0jb -"@stdlib/ndarray/base/unary",0jc -"@stdlib/ndarray-base-unary",0jd -"@stdlib/ndarray/base/vind2bind",0je -"@stdlib/ndarray-base-vind2bind",0jf -"@stdlib/ndarray/base/wrap-index",0jg -"@stdlib/ndarray-base-wrap-index",0jh -"@stdlib/ndarray/base/zeros-like",0ji -"@stdlib/ndarray-base-zeros-like",0jj -"@stdlib/ndarray/base/zeros",0jk -"@stdlib/ndarray-base-zeros",0jl -"@stdlib/ndarray/casting-modes",0jm -"@stdlib/ndarray-casting-modes",0jn -"@stdlib/ndarray/ctor",0jo -"@stdlib/ndarray-ctor",0jp -"@stdlib/ndarray/dispatch",0jq -"@stdlib/ndarray-dispatch",0jr -"@stdlib/ndarray/dtypes",0js -"@stdlib/ndarray-dtypes",0jt -"@stdlib/ndarray/from-scalar",0ju -"@stdlib/ndarray-from-scalar",0jv -"@stdlib/ndarray/ind2sub",0jw -"@stdlib/ndarray-ind2sub",0jx -"@stdlib/ndarray/index-modes",0jy -"@stdlib/ndarray-index-modes",0jz -"@stdlib/ndarray/min-dtype",0k0 -"@stdlib/ndarray-min-dtype",0k1 -"@stdlib/ndarray/next-dtype",0k2 -"@stdlib/ndarray-next-dtype",0k3 -"@stdlib/ndarray/orders",0k4 -"@stdlib/ndarray-orders",0k5 -"@stdlib/ndarray",0k7 -"@stdlib/ndarray/promotion-rules",0k8 -"@stdlib/ndarray-promotion-rules",0k9 -"@stdlib/ndarray/safe-casts",0kA -"@stdlib/ndarray-safe-casts",0kB -"@stdlib/ndarray/same-kind-casts",0kC -"@stdlib/ndarray-same-kind-casts",0kD -"@stdlib/ndarray/sub2ind",0kE -"@stdlib/ndarray-sub2ind",0kF -"@stdlib/ndarray/zeros-like",0kG -"@stdlib/ndarray-zeros-like",0kH -"@stdlib/ndarray/zeros",0kI -"@stdlib/ndarray-zeros",0kJ -"@stdlib/net/disposable-http-server",0kK -"@stdlib/net-disposable-http-server",0kL -"@stdlib/net/http-server",0kM -"@stdlib/net-http-server",0kN -"@stdlib/net",0kP -"@stdlib/net/simple-http-server",0kQ -"@stdlib/net-simple-http-server",0kR -"@stdlib/nlp/expand-contractions",0kS -"@stdlib/nlp-expand-contractions",0kT -"@stdlib/nlp/lda",0kU -"@stdlib/nlp-lda",0kV -"@stdlib/nlp/ordinalize",0kW -"@stdlib/nlp-ordinalize",0kX -"@stdlib/nlp",0kZ -"@stdlib/nlp/porter-stemmer",0ka -"@stdlib/nlp-porter-stemmer",0kb -"@stdlib/nlp/tokenize",0kc -"@stdlib/nlp-tokenize",0kd -"@stdlib/number/ctor",0ke -"@stdlib/number-ctor",0kf -"@stdlib/number/float32/base/exponent",0kg -"@stdlib/number-float32-base-exponent",0kh -"@stdlib/number/float32/base/from-binary-string",0ki -"@stdlib/number-float32-base-from-binary-string",0kj -"@stdlib/number/float32/base/from-word",0kk -"@stdlib/number-float32-base-from-word",0kl -"@stdlib/number/float32/base/normalize",0km -"@stdlib/number-float32-base-normalize",0kn -"@stdlib/number/float32/base",0ko -"@stdlib/number-float32-base",0kp -"@stdlib/number/float32/base/signbit",0kq -"@stdlib/number-float32-base-signbit",0kr -"@stdlib/number/float32/base/significand",0ks -"@stdlib/number-float32-base-significand",0kt -"@stdlib/number/float32/base/to-binary-string",0ku -"@stdlib/number-float32-base-to-binary-string",0kv -"@stdlib/number/float32/base/to-int32",0kw -"@stdlib/number-float32-base-to-int32",0kx -"@stdlib/number/float32/base/to-uint32",0ky -"@stdlib/number-float32-base-to-uint32",0kz -"@stdlib/number/float32/base/to-word",0l0 -"@stdlib/number-float32-base-to-word",0l1 -"@stdlib/number/float32",0l2 -"@stdlib/number-float32",0l3 -"@stdlib/number/float64/base/exponent",0l4 -"@stdlib/number-float64-base-exponent",0l5 -"@stdlib/number/float64/base/from-binary-string",0l6 -"@stdlib/number-float64-base-from-binary-string",0l7 -"@stdlib/number/float64/base/from-int64-bytes",0l8 -"@stdlib/number-float64-base-from-int64-bytes",0l9 -"@stdlib/number/float64/base/from-words",0lA -"@stdlib/number-float64-base-from-words",0lB -"@stdlib/number/float64/base/get-high-word",0lC -"@stdlib/number-float64-base-get-high-word",0lD -"@stdlib/number/float64/base/get-low-word",0lE -"@stdlib/number-float64-base-get-low-word",0lF -"@stdlib/number/float64/base/normalize",0lG -"@stdlib/number-float64-base-normalize",0lH -"@stdlib/number/float64/base",0lI -"@stdlib/number-float64-base",0lJ -"@stdlib/number/float64/base/set-high-word",0lK -"@stdlib/number-float64-base-set-high-word",0lL -"@stdlib/number/float64/base/set-low-word",0lM -"@stdlib/number-float64-base-set-low-word",0lN -"@stdlib/number/float64/base/signbit",0lO -"@stdlib/number-float64-base-signbit",0lP -"@stdlib/number/float64/base/to-binary-string",0lQ -"@stdlib/number-float64-base-to-binary-string",0lR -"@stdlib/number/float64/base/to-float32",0lS -"@stdlib/number-float64-base-to-float32",0lT -"@stdlib/number/float64/base/to-int32",0lU -"@stdlib/number-float64-base-to-int32",0lV -"@stdlib/number/float64/base/to-int64-bytes",0lW -"@stdlib/number-float64-base-to-int64-bytes",0lX -"@stdlib/number/float64/base/to-uint32",0lY -"@stdlib/number-float64-base-to-uint32",0lZ -"@stdlib/number/float64/base/to-words",0la -"@stdlib/number-float64-base-to-words",0lb -"@stdlib/number/float64",0lc -"@stdlib/number-float64",0ld -"@stdlib/number/int32/base",0le -"@stdlib/number-int32-base",0lf -"@stdlib/number/int32/base/to-uint32",0lg -"@stdlib/number-int32-base-to-uint32",0lh -"@stdlib/number/int32",0li -"@stdlib/number-int32",0lj -"@stdlib/number",0ll -"@stdlib/number/uint16/base/from-binary-string",0lm -"@stdlib/number-uint16-base-from-binary-string",0ln -"@stdlib/number/uint16/base",0lo -"@stdlib/number-uint16-base",0lp -"@stdlib/number/uint16/base/to-binary-string",0lq -"@stdlib/number-uint16-base-to-binary-string",0lr -"@stdlib/number/uint16",0ls -"@stdlib/number-uint16",0lt -"@stdlib/number/uint32/base/from-binary-string",0lu -"@stdlib/number-uint32-base-from-binary-string",0lv -"@stdlib/number/uint32/base",0lw -"@stdlib/number-uint32-base",0lx -"@stdlib/number/uint32/base/rotl",0ly -"@stdlib/number-uint32-base-rotl",0lz -"@stdlib/number/uint32/base/rotr",0m0 -"@stdlib/number-uint32-base-rotr",0m1 -"@stdlib/number/uint32/base/to-binary-string",0m2 -"@stdlib/number-uint32-base-to-binary-string",0m3 -"@stdlib/number/uint32/base/to-int32",0m4 -"@stdlib/number-uint32-base-to-int32",0m5 -"@stdlib/number/uint32",0m6 -"@stdlib/number-uint32",0m7 -"@stdlib/number/uint8/base/from-binary-string",0m8 -"@stdlib/number-uint8-base-from-binary-string",0m9 -"@stdlib/number/uint8/base",0mA -"@stdlib/number-uint8-base",0mB -"@stdlib/number/uint8/base/to-binary-string",0mC -"@stdlib/number-uint8-base-to-binary-string",0mD -"@stdlib/number/uint8",0mE -"@stdlib/number-uint8",0mF -"@stdlib/os/arch",0mG -"@stdlib/os-arch",0mH -"@stdlib/os/byte-order",0mI -"@stdlib/os-byte-order",0mJ -"@stdlib/os/configdir",0mK -"@stdlib/os-configdir",0mL -"@stdlib/os/float-word-order",0mM -"@stdlib/os-float-word-order",0mN -"@stdlib/os/homedir",0mO -"@stdlib/os-homedir",0mP -"@stdlib/os/num-cpus",0mQ -"@stdlib/os-num-cpus",0mR -"@stdlib/os",0mT -"@stdlib/os/platform",0mU -"@stdlib/os-platform",0mV -"@stdlib/os/tmpdir",0mW -"@stdlib/os-tmpdir",0mX -"@stdlib/plot/base/ctor",0mY -"@stdlib/plot-base-ctor",0mZ -"@stdlib/plot/components/svg/annotations",0ma -"@stdlib/plot-components-svg-annotations",0mb -"@stdlib/plot/components/svg/axis",0mc -"@stdlib/plot-components-svg-axis",0md -"@stdlib/plot/components/svg/background",0me -"@stdlib/plot-components-svg-background",0mf -"@stdlib/plot/components/svg/canvas",0mg -"@stdlib/plot-components-svg-canvas",0mh -"@stdlib/plot/components/svg/clip-path",0mi -"@stdlib/plot-components-svg-clip-path",0mj -"@stdlib/plot/components/svg/defs",0mk -"@stdlib/plot-components-svg-defs",0ml -"@stdlib/plot/components/svg/graph",0mm -"@stdlib/plot-components-svg-graph",0mn -"@stdlib/plot/components/svg/marks",0mo -"@stdlib/plot-components-svg-marks",0mp -"@stdlib/plot/components/svg/path",0mq -"@stdlib/plot-components-svg-path",0mr -"@stdlib/plot/components/svg/rug",0ms -"@stdlib/plot-components-svg-rug",0mt -"@stdlib/plot/components/svg/symbols",0mu -"@stdlib/plot-components-svg-symbols",0mv -"@stdlib/plot/components/svg/title",0mw -"@stdlib/plot-components-svg-title",0mx -"@stdlib/plot/ctor",0my -"@stdlib/plot-ctor",0mz -"@stdlib/plot",0n1 -"@stdlib/plot/sparklines/base/ctor",0n2 -"@stdlib/plot-sparklines-base-ctor",0n3 -"@stdlib/plot/sparklines/base",0n4 -"@stdlib/plot-sparklines-base",0n5 -"@stdlib/plot/sparklines",0n6 -"@stdlib/plot-sparklines",0n7 -"@stdlib/plot/sparklines/unicode/column",0n8 -"@stdlib/plot-sparklines-unicode-column",0n9 -"@stdlib/plot/sparklines/unicode/line",0nA -"@stdlib/plot-sparklines-unicode-line",0nB -"@stdlib/plot/sparklines/unicode",0nC -"@stdlib/plot-sparklines-unicode",0nD -"@stdlib/plot/sparklines/unicode/tristate",0nE -"@stdlib/plot-sparklines-unicode-tristate",0nF -"@stdlib/plot/sparklines/unicode/up-down",0nG -"@stdlib/plot-sparklines-unicode-up-down",0nH -"@stdlib/plot/sparklines/unicode/win-loss",0nI -"@stdlib/plot-sparklines-unicode-win-loss",0nJ -"@stdlib/plot/unicode/stemleaf",0nK -"@stdlib/plot-unicode-stemleaf",0nL -"@stdlib/process/argv",0nM -"@stdlib/process-argv",0nN -"@stdlib/process/chdir",0nO -"@stdlib/process-chdir",0nP -"@stdlib/process/cwd",0nQ -"@stdlib/process-cwd",0nR -"@stdlib/process/env",0nS -"@stdlib/process-env",0nT -"@stdlib/process/exec-path",0nU -"@stdlib/process-exec-path",0nV -"@stdlib/process/getegid",0nW -"@stdlib/process-getegid",0nX -"@stdlib/process/geteuid",0nY -"@stdlib/process-geteuid",0nZ -"@stdlib/process/getgid",0na -"@stdlib/process-getgid",0nb -"@stdlib/process/getuid",0nc -"@stdlib/process-getuid",0nd -"@stdlib/process/node-version",0ne -"@stdlib/process-node-version",0nf -"@stdlib/process",0nh -"@stdlib/process/read-stdin",0ni -"@stdlib/process-read-stdin",0nj -"@stdlib/process/umask",0nk -"@stdlib/process-umask",0nl -"@stdlib/proxy/ctor",0nm -"@stdlib/proxy-ctor",0nn -"@stdlib/proxy",0np -"@stdlib/random/base/arcsine",0nq -"@stdlib/random-base-arcsine",0nr -"@stdlib/random/base/bernoulli",0ns -"@stdlib/random-base-bernoulli",0nt -"@stdlib/random/base/beta",0nu -"@stdlib/random-base-beta",0nv -"@stdlib/random/base/betaprime",0nw -"@stdlib/random-base-betaprime",0nx -"@stdlib/random/base/binomial",0ny -"@stdlib/random-base-binomial",0nz -"@stdlib/random/base/box-muller",0o0 -"@stdlib/random-base-box-muller",0o1 -"@stdlib/random/base/cauchy",0o2 -"@stdlib/random-base-cauchy",0o3 -"@stdlib/random/base/chi",0o4 -"@stdlib/random-base-chi",0o5 -"@stdlib/random/base/chisquare",0o6 -"@stdlib/random-base-chisquare",0o7 -"@stdlib/random/base/cosine",0o8 -"@stdlib/random-base-cosine",0o9 -"@stdlib/random/base/discrete-uniform",0oA -"@stdlib/random-base-discrete-uniform",0oB -"@stdlib/random/base/erlang",0oC -"@stdlib/random-base-erlang",0oD -"@stdlib/random/base/exponential",0oE -"@stdlib/random-base-exponential",0oF -"@stdlib/random/base/f",0oG -"@stdlib/random-base-f",0oH -"@stdlib/random/base/frechet",0oI -"@stdlib/random-base-frechet",0oJ -"@stdlib/random/base/gamma",0oK -"@stdlib/random-base-gamma",0oL -"@stdlib/random/base/geometric",0oM -"@stdlib/random-base-geometric",0oN -"@stdlib/random/base/gumbel",0oO -"@stdlib/random-base-gumbel",0oP -"@stdlib/random/base/hypergeometric",0oQ -"@stdlib/random-base-hypergeometric",0oR -"@stdlib/random/base/improved-ziggurat",0oS -"@stdlib/random-base-improved-ziggurat",0oT -"@stdlib/random/base/invgamma",0oU -"@stdlib/random-base-invgamma",0oV -"@stdlib/random/base/kumaraswamy",0oW -"@stdlib/random-base-kumaraswamy",0oX -"@stdlib/random/base/laplace",0oY -"@stdlib/random-base-laplace",0oZ -"@stdlib/random/base/levy",0oa -"@stdlib/random-base-levy",0ob -"@stdlib/random/base/logistic",0oc -"@stdlib/random-base-logistic",0od -"@stdlib/random/base/lognormal",0oe -"@stdlib/random-base-lognormal",0of -"@stdlib/random/base/minstd-shuffle",0og -"@stdlib/random-base-minstd-shuffle",0oh -"@stdlib/random/base/minstd",0oi -"@stdlib/random-base-minstd",0oj -"@stdlib/random/base/mt19937",0ok -"@stdlib/random-base-mt19937",0ol -"@stdlib/random/base/negative-binomial",0om -"@stdlib/random-base-negative-binomial",0on -"@stdlib/random/base/normal",0oo -"@stdlib/random-base-normal",0op -"@stdlib/random/base",0oq -"@stdlib/random-base",0or -"@stdlib/random/base/pareto-type1",0os -"@stdlib/random-base-pareto-type1",0ot -"@stdlib/random/base/poisson",0ou -"@stdlib/random-base-poisson",0ov -"@stdlib/random/base/randi",0ow -"@stdlib/random-base-randi",0ox -"@stdlib/random/base/randn",0oy -"@stdlib/random-base-randn",0oz -"@stdlib/random/base/randu",0p0 -"@stdlib/random-base-randu",0p1 -"@stdlib/random/base/rayleigh",0p2 -"@stdlib/random-base-rayleigh",0p3 -"@stdlib/random/base/reviver",0p4 -"@stdlib/random-base-reviver",0p5 -"@stdlib/random/base/t",0p6 -"@stdlib/random-base-t",0p7 -"@stdlib/random/base/triangular",0p8 -"@stdlib/random-base-triangular",0p9 -"@stdlib/random/base/uniform",0pA -"@stdlib/random-base-uniform",0pB -"@stdlib/random/base/weibull",0pC -"@stdlib/random-base-weibull",0pD -"@stdlib/random/iter/arcsine",0pE -"@stdlib/random-iter-arcsine",0pF -"@stdlib/random/iter/bernoulli",0pG -"@stdlib/random-iter-bernoulli",0pH -"@stdlib/random/iter/beta",0pI -"@stdlib/random-iter-beta",0pJ -"@stdlib/random/iter/betaprime",0pK -"@stdlib/random-iter-betaprime",0pL -"@stdlib/random/iter/binomial",0pM -"@stdlib/random-iter-binomial",0pN -"@stdlib/random/iter/box-muller",0pO -"@stdlib/random-iter-box-muller",0pP -"@stdlib/random/iter/cauchy",0pQ -"@stdlib/random-iter-cauchy",0pR -"@stdlib/random/iter/chi",0pS -"@stdlib/random-iter-chi",0pT -"@stdlib/random/iter/chisquare",0pU -"@stdlib/random-iter-chisquare",0pV -"@stdlib/random/iter/cosine",0pW -"@stdlib/random-iter-cosine",0pX -"@stdlib/random/iter/discrete-uniform",0pY -"@stdlib/random-iter-discrete-uniform",0pZ -"@stdlib/random/iter/erlang",0pa -"@stdlib/random-iter-erlang",0pb -"@stdlib/random/iter/exponential",0pc -"@stdlib/random-iter-exponential",0pd -"@stdlib/random/iter/f",0pe -"@stdlib/random-iter-f",0pf -"@stdlib/random/iter/frechet",0pg -"@stdlib/random-iter-frechet",0ph -"@stdlib/random/iter/gamma",0pi -"@stdlib/random-iter-gamma",0pj -"@stdlib/random/iter/geometric",0pk -"@stdlib/random-iter-geometric",0pl -"@stdlib/random/iter/gumbel",0pm -"@stdlib/random-iter-gumbel",0pn -"@stdlib/random/iter/hypergeometric",0po -"@stdlib/random-iter-hypergeometric",0pp -"@stdlib/random/iter/improved-ziggurat",0pq -"@stdlib/random-iter-improved-ziggurat",0pr -"@stdlib/random/iter/invgamma",0ps -"@stdlib/random-iter-invgamma",0pt -"@stdlib/random/iter/kumaraswamy",0pu -"@stdlib/random-iter-kumaraswamy",0pv -"@stdlib/random/iter/laplace",0pw -"@stdlib/random-iter-laplace",0px -"@stdlib/random/iter/levy",0py -"@stdlib/random-iter-levy",0pz -"@stdlib/random/iter/logistic",0q0 -"@stdlib/random-iter-logistic",0q1 -"@stdlib/random/iter/lognormal",0q2 -"@stdlib/random-iter-lognormal",0q3 -"@stdlib/random/iter/minstd-shuffle",0q4 -"@stdlib/random-iter-minstd-shuffle",0q5 -"@stdlib/random/iter/minstd",0q6 -"@stdlib/random-iter-minstd",0q7 -"@stdlib/random/iter/mt19937",0q8 -"@stdlib/random-iter-mt19937",0q9 -"@stdlib/random/iter/negative-binomial",0qA -"@stdlib/random-iter-negative-binomial",0qB -"@stdlib/random/iter/normal",0qC -"@stdlib/random-iter-normal",0qD -"@stdlib/random/iter",0qE -"@stdlib/random-iter",0qF -"@stdlib/random/iter/pareto-type1",0qG -"@stdlib/random-iter-pareto-type1",0qH -"@stdlib/random/iter/poisson",0qI -"@stdlib/random-iter-poisson",0qJ -"@stdlib/random/iter/randi",0qK -"@stdlib/random-iter-randi",0qL -"@stdlib/random/iter/randn",0qM -"@stdlib/random-iter-randn",0qN -"@stdlib/random/iter/randu",0qO -"@stdlib/random-iter-randu",0qP -"@stdlib/random/iter/rayleigh",0qQ -"@stdlib/random-iter-rayleigh",0qR -"@stdlib/random/iter/t",0qS -"@stdlib/random-iter-t",0qT -"@stdlib/random/iter/triangular",0qU -"@stdlib/random-iter-triangular",0qV -"@stdlib/random/iter/uniform",0qW -"@stdlib/random-iter-uniform",0qX -"@stdlib/random/iter/weibull",0qY -"@stdlib/random-iter-weibull",0qZ -"@stdlib/random",0qb -"@stdlib/random/sample",0qc -"@stdlib/random-sample",0qd -"@stdlib/random/shuffle",0qe -"@stdlib/random-shuffle",0qf -"@stdlib/random/streams/arcsine",0qg -"@stdlib/random-streams-arcsine",0qh -"@stdlib/random/streams/bernoulli",0qi -"@stdlib/random-streams-bernoulli",0qj -"@stdlib/random/streams/beta",0qk -"@stdlib/random-streams-beta",0ql -"@stdlib/random/streams/betaprime",0qm -"@stdlib/random-streams-betaprime",0qn -"@stdlib/random/streams/binomial",0qo -"@stdlib/random-streams-binomial",0qp -"@stdlib/random/streams/box-muller",0qq -"@stdlib/random-streams-box-muller",0qr -"@stdlib/random/streams/cauchy",0qs -"@stdlib/random-streams-cauchy",0qt -"@stdlib/random/streams/chi",0qu -"@stdlib/random-streams-chi",0qv -"@stdlib/random/streams/chisquare",0qw -"@stdlib/random-streams-chisquare",0qx -"@stdlib/random/streams/cosine",0qy -"@stdlib/random-streams-cosine",0qz -"@stdlib/random/streams/discrete-uniform",0r0 -"@stdlib/random-streams-discrete-uniform",0r1 -"@stdlib/random/streams/erlang",0r2 -"@stdlib/random-streams-erlang",0r3 -"@stdlib/random/streams/exponential",0r4 -"@stdlib/random-streams-exponential",0r5 -"@stdlib/random/streams/f",0r6 -"@stdlib/random-streams-f",0r7 -"@stdlib/random/streams/frechet",0r8 -"@stdlib/random-streams-frechet",0r9 -"@stdlib/random/streams/gamma",0rA -"@stdlib/random-streams-gamma",0rB -"@stdlib/random/streams/geometric",0rC -"@stdlib/random-streams-geometric",0rD -"@stdlib/random/streams/gumbel",0rE -"@stdlib/random-streams-gumbel",0rF -"@stdlib/random/streams/hypergeometric",0rG -"@stdlib/random-streams-hypergeometric",0rH -"@stdlib/random/streams/improved-ziggurat",0rI -"@stdlib/random-streams-improved-ziggurat",0rJ -"@stdlib/random/streams/invgamma",0rK -"@stdlib/random-streams-invgamma",0rL -"@stdlib/random/streams/kumaraswamy",0rM -"@stdlib/random-streams-kumaraswamy",0rN -"@stdlib/random/streams/laplace",0rO -"@stdlib/random-streams-laplace",0rP -"@stdlib/random/streams/levy",0rQ -"@stdlib/random-streams-levy",0rR -"@stdlib/random/streams/logistic",0rS -"@stdlib/random-streams-logistic",0rT -"@stdlib/random/streams/lognormal",0rU -"@stdlib/random-streams-lognormal",0rV -"@stdlib/random/streams/minstd-shuffle",0rW -"@stdlib/random-streams-minstd-shuffle",0rX -"@stdlib/random/streams/minstd",0rY -"@stdlib/random-streams-minstd",0rZ -"@stdlib/random/streams/mt19937",0ra -"@stdlib/random-streams-mt19937",0rb -"@stdlib/random/streams/negative-binomial",0rc -"@stdlib/random-streams-negative-binomial",0rd -"@stdlib/random/streams/normal",0re -"@stdlib/random-streams-normal",0rf -"@stdlib/random/streams",0rg -"@stdlib/random-streams",0rh -"@stdlib/random/streams/pareto-type1",0ri -"@stdlib/random-streams-pareto-type1",0rj -"@stdlib/random/streams/poisson",0rk -"@stdlib/random-streams-poisson",0rl -"@stdlib/random/streams/randi",0rm -"@stdlib/random-streams-randi",0rn -"@stdlib/random/streams/randn",0ro -"@stdlib/random-streams-randn",0rp -"@stdlib/random/streams/randu",0rq -"@stdlib/random-streams-randu",0rr -"@stdlib/random/streams/rayleigh",0rs -"@stdlib/random-streams-rayleigh",0rt -"@stdlib/random/streams/t",0ru -"@stdlib/random-streams-t",0rv -"@stdlib/random/streams/triangular",0rw -"@stdlib/random-streams-triangular",0rx -"@stdlib/random/streams/uniform",0ry -"@stdlib/random-streams-uniform",0rz -"@stdlib/random/streams/weibull",0s0 -"@stdlib/random-streams-weibull",0s1 -"@stdlib/regexp/basename-posix",0s2 -"@stdlib/regexp-basename-posix",0s3 -"@stdlib/regexp/basename-windows",0s4 -"@stdlib/regexp-basename-windows",0s5 -"@stdlib/regexp/basename",0s6 -"@stdlib/regexp-basename",0s7 -"@stdlib/regexp/color-hexadecimal",0s8 -"@stdlib/regexp-color-hexadecimal",0s9 -"@stdlib/regexp/decimal-number",0sA -"@stdlib/regexp-decimal-number",0sB -"@stdlib/regexp/dirname-posix",0sC -"@stdlib/regexp-dirname-posix",0sD -"@stdlib/regexp/dirname-windows",0sE -"@stdlib/regexp-dirname-windows",0sF -"@stdlib/regexp/dirname",0sG -"@stdlib/regexp-dirname",0sH -"@stdlib/regexp/eol",0sI -"@stdlib/regexp-eol",0sJ -"@stdlib/regexp/extended-length-path",0sK -"@stdlib/regexp-extended-length-path",0sL -"@stdlib/regexp/extname-posix",0sM -"@stdlib/regexp-extname-posix",0sN -"@stdlib/regexp/extname-windows",0sO -"@stdlib/regexp-extname-windows",0sP -"@stdlib/regexp/extname",0sQ -"@stdlib/regexp-extname",0sR -"@stdlib/regexp/filename-posix",0sS -"@stdlib/regexp-filename-posix",0sT -"@stdlib/regexp/filename-windows",0sU -"@stdlib/regexp-filename-windows",0sV -"@stdlib/regexp/filename",0sW -"@stdlib/regexp-filename",0sX -"@stdlib/regexp/function-name",0sY -"@stdlib/regexp-function-name",0sZ -"@stdlib/regexp/native-function",0sa -"@stdlib/regexp-native-function",0sb -"@stdlib/regexp",0sd -"@stdlib/regexp/regexp",0se -"@stdlib/regexp-regexp",0sf -"@stdlib/regexp/unc-path",0sg -"@stdlib/regexp-unc-path",0sh -"@stdlib/regexp/utf16-surrogate-pair",0si -"@stdlib/regexp-utf16-surrogate-pair",0sj -"@stdlib/regexp/utf16-unpaired-surrogate",0sk -"@stdlib/regexp-utf16-unpaired-surrogate",0sl -"@stdlib/regexp/whitespace",0sm -"@stdlib/regexp-whitespace",0sn -"@stdlib/repl/code-blocks",0so -"@stdlib/repl-code-blocks",0sp -"@stdlib/repl/help",0sq -"@stdlib/repl-help",0sr -"@stdlib/repl/info",0ss -"@stdlib/repl-info",0st -"@stdlib/repl",0sv -"@stdlib/repl/presentation",0sw -"@stdlib/repl-presentation",0sx -"@stdlib/repl/server",0sy -"@stdlib/repl-server",0sz -"@stdlib/repl/signature",0t0 -"@stdlib/repl-signature",0t1 -"@stdlib/repl/typed-signature",0t2 -"@stdlib/repl-typed-signature",0t3 -"@stdlib/simulate/iter/awgn",0t4 -"@stdlib/simulate-iter-awgn",0t5 -"@stdlib/simulate/iter/awln",0t6 -"@stdlib/simulate-iter-awln",0t7 -"@stdlib/simulate/iter/awun",0t8 -"@stdlib/simulate-iter-awun",0t9 -"@stdlib/simulate/iter/bartlett-hann-pulse",0tA -"@stdlib/simulate-iter-bartlett-hann-pulse",0tB -"@stdlib/simulate/iter/bartlett-pulse",0tC -"@stdlib/simulate-iter-bartlett-pulse",0tD -"@stdlib/simulate/iter/cosine-wave",0tE -"@stdlib/simulate-iter-cosine-wave",0tF -"@stdlib/simulate/iter/dirac-comb",0tG -"@stdlib/simulate-iter-dirac-comb",0tH -"@stdlib/simulate/iter/flat-top-pulse",0tI -"@stdlib/simulate-iter-flat-top-pulse",0tJ -"@stdlib/simulate/iter/hann-pulse",0tK -"@stdlib/simulate-iter-hann-pulse",0tL -"@stdlib/simulate/iter/lanczos-pulse",0tM -"@stdlib/simulate-iter-lanczos-pulse",0tN -"@stdlib/simulate/iter",0tO -"@stdlib/simulate-iter",0tP -"@stdlib/simulate/iter/periodic-sinc",0tQ -"@stdlib/simulate-iter-periodic-sinc",0tR -"@stdlib/simulate/iter/pulse",0tS -"@stdlib/simulate-iter-pulse",0tT -"@stdlib/simulate/iter/sawtooth-wave",0tU -"@stdlib/simulate-iter-sawtooth-wave",0tV -"@stdlib/simulate/iter/sine-wave",0tW -"@stdlib/simulate-iter-sine-wave",0tX -"@stdlib/simulate/iter/square-wave",0tY -"@stdlib/simulate-iter-square-wave",0tZ -"@stdlib/simulate/iter/triangle-wave",0ta -"@stdlib/simulate-iter-triangle-wave",0tb -"@stdlib/simulate",0td -"@stdlib/stats/anova1",0te -"@stdlib/stats-anova1",0tf -"@stdlib/stats/bartlett-test",0tg -"@stdlib/stats-bartlett-test",0th -"@stdlib/stats/base/cumax",0ti -"@stdlib/stats-base-cumax",0tj -"@stdlib/stats/base/cumaxabs",0tk -"@stdlib/stats-base-cumaxabs",0tl -"@stdlib/stats/base/cumin",0tm -"@stdlib/stats-base-cumin",0tn -"@stdlib/stats/base/cuminabs",0to -"@stdlib/stats-base-cuminabs",0tp -"@stdlib/stats/base/dcumax",0tq -"@stdlib/stats-base-dcumax",0tr -"@stdlib/stats/base/dcumaxabs",0ts -"@stdlib/stats-base-dcumaxabs",0tt -"@stdlib/stats/base/dcumin",0tu -"@stdlib/stats-base-dcumin",0tv -"@stdlib/stats/base/dcuminabs",0tw -"@stdlib/stats-base-dcuminabs",0tx -"@stdlib/stats/base/dists/arcsine/cdf",0ty -"@stdlib/stats-base-dists-arcsine-cdf",0tz -"@stdlib/stats/base/dists/arcsine/ctor",0u0 -"@stdlib/stats-base-dists-arcsine-ctor",0u1 -"@stdlib/stats/base/dists/arcsine/entropy",0u2 -"@stdlib/stats-base-dists-arcsine-entropy",0u3 -"@stdlib/stats/base/dists/arcsine/kurtosis",0u4 -"@stdlib/stats-base-dists-arcsine-kurtosis",0u5 -"@stdlib/stats/base/dists/arcsine/logcdf",0u6 -"@stdlib/stats-base-dists-arcsine-logcdf",0u7 -"@stdlib/stats/base/dists/arcsine/logpdf",0u8 -"@stdlib/stats-base-dists-arcsine-logpdf",0u9 -"@stdlib/stats/base/dists/arcsine/mean",0uA -"@stdlib/stats-base-dists-arcsine-mean",0uB -"@stdlib/stats/base/dists/arcsine/median",0uC -"@stdlib/stats-base-dists-arcsine-median",0uD -"@stdlib/stats/base/dists/arcsine/mode",0uE -"@stdlib/stats-base-dists-arcsine-mode",0uF -"@stdlib/stats/base/dists/arcsine",0uG -"@stdlib/stats-base-dists-arcsine",0uH -"@stdlib/stats/base/dists/arcsine/pdf",0uI -"@stdlib/stats-base-dists-arcsine-pdf",0uJ -"@stdlib/stats/base/dists/arcsine/quantile",0uK -"@stdlib/stats-base-dists-arcsine-quantile",0uL -"@stdlib/stats/base/dists/arcsine/skewness",0uM -"@stdlib/stats-base-dists-arcsine-skewness",0uN -"@stdlib/stats/base/dists/arcsine/stdev",0uO -"@stdlib/stats-base-dists-arcsine-stdev",0uP -"@stdlib/stats/base/dists/arcsine/variance",0uQ -"@stdlib/stats-base-dists-arcsine-variance",0uR -"@stdlib/stats/base/dists/bernoulli/cdf",0uS -"@stdlib/stats-base-dists-bernoulli-cdf",0uT -"@stdlib/stats/base/dists/bernoulli/ctor",0uU -"@stdlib/stats-base-dists-bernoulli-ctor",0uV -"@stdlib/stats/base/dists/bernoulli/entropy",0uW -"@stdlib/stats-base-dists-bernoulli-entropy",0uX -"@stdlib/stats/base/dists/bernoulli/kurtosis",0uY -"@stdlib/stats-base-dists-bernoulli-kurtosis",0uZ -"@stdlib/stats/base/dists/bernoulli/mean",0ua -"@stdlib/stats-base-dists-bernoulli-mean",0ub -"@stdlib/stats/base/dists/bernoulli/median",0uc -"@stdlib/stats-base-dists-bernoulli-median",0ud -"@stdlib/stats/base/dists/bernoulli/mgf",0ue -"@stdlib/stats-base-dists-bernoulli-mgf",0uf -"@stdlib/stats/base/dists/bernoulli/mode",0ug -"@stdlib/stats-base-dists-bernoulli-mode",0uh -"@stdlib/stats/base/dists/bernoulli",0ui -"@stdlib/stats-base-dists-bernoulli",0uj -"@stdlib/stats/base/dists/bernoulli/pmf",0uk -"@stdlib/stats-base-dists-bernoulli-pmf",0ul -"@stdlib/stats/base/dists/bernoulli/quantile",0um -"@stdlib/stats-base-dists-bernoulli-quantile",0un -"@stdlib/stats/base/dists/bernoulli/skewness",0uo -"@stdlib/stats-base-dists-bernoulli-skewness",0up -"@stdlib/stats/base/dists/bernoulli/stdev",0uq -"@stdlib/stats-base-dists-bernoulli-stdev",0ur -"@stdlib/stats/base/dists/bernoulli/variance",0us -"@stdlib/stats-base-dists-bernoulli-variance",0ut -"@stdlib/stats/base/dists/beta/cdf",0uu -"@stdlib/stats-base-dists-beta-cdf",0uv -"@stdlib/stats/base/dists/beta/ctor",0uw -"@stdlib/stats-base-dists-beta-ctor",0ux -"@stdlib/stats/base/dists/beta/entropy",0uy -"@stdlib/stats-base-dists-beta-entropy",0uz -"@stdlib/stats/base/dists/beta/kurtosis",0v0 -"@stdlib/stats-base-dists-beta-kurtosis",0v1 -"@stdlib/stats/base/dists/beta/logcdf",0v2 -"@stdlib/stats-base-dists-beta-logcdf",0v3 -"@stdlib/stats/base/dists/beta/logpdf",0v4 -"@stdlib/stats-base-dists-beta-logpdf",0v5 -"@stdlib/stats/base/dists/beta/mean",0v6 -"@stdlib/stats-base-dists-beta-mean",0v7 -"@stdlib/stats/base/dists/beta/median",0v8 -"@stdlib/stats-base-dists-beta-median",0v9 -"@stdlib/stats/base/dists/beta/mgf",0vA -"@stdlib/stats-base-dists-beta-mgf",0vB -"@stdlib/stats/base/dists/beta/mode",0vC -"@stdlib/stats-base-dists-beta-mode",0vD -"@stdlib/stats/base/dists/beta",0vE -"@stdlib/stats-base-dists-beta",0vF -"@stdlib/stats/base/dists/beta/pdf",0vG -"@stdlib/stats-base-dists-beta-pdf",0vH -"@stdlib/stats/base/dists/beta/quantile",0vI -"@stdlib/stats-base-dists-beta-quantile",0vJ -"@stdlib/stats/base/dists/beta/skewness",0vK -"@stdlib/stats-base-dists-beta-skewness",0vL -"@stdlib/stats/base/dists/beta/stdev",0vM -"@stdlib/stats-base-dists-beta-stdev",0vN -"@stdlib/stats/base/dists/beta/variance",0vO -"@stdlib/stats-base-dists-beta-variance",0vP -"@stdlib/stats/base/dists/betaprime/cdf",0vQ -"@stdlib/stats-base-dists-betaprime-cdf",0vR -"@stdlib/stats/base/dists/betaprime/ctor",0vS -"@stdlib/stats-base-dists-betaprime-ctor",0vT -"@stdlib/stats/base/dists/betaprime/kurtosis",0vU -"@stdlib/stats-base-dists-betaprime-kurtosis",0vV -"@stdlib/stats/base/dists/betaprime/logcdf",0vW -"@stdlib/stats-base-dists-betaprime-logcdf",0vX -"@stdlib/stats/base/dists/betaprime/logpdf",0vY -"@stdlib/stats-base-dists-betaprime-logpdf",0vZ -"@stdlib/stats/base/dists/betaprime/mean",0va -"@stdlib/stats-base-dists-betaprime-mean",0vb -"@stdlib/stats/base/dists/betaprime/mode",0vc -"@stdlib/stats-base-dists-betaprime-mode",0vd -"@stdlib/stats/base/dists/betaprime",0ve -"@stdlib/stats-base-dists-betaprime",0vf -"@stdlib/stats/base/dists/betaprime/pdf",0vg -"@stdlib/stats-base-dists-betaprime-pdf",0vh -"@stdlib/stats/base/dists/betaprime/quantile",0vi -"@stdlib/stats-base-dists-betaprime-quantile",0vj -"@stdlib/stats/base/dists/betaprime/skewness",0vk -"@stdlib/stats-base-dists-betaprime-skewness",0vl -"@stdlib/stats/base/dists/betaprime/stdev",0vm -"@stdlib/stats-base-dists-betaprime-stdev",0vn -"@stdlib/stats/base/dists/betaprime/variance",0vo -"@stdlib/stats-base-dists-betaprime-variance",0vp -"@stdlib/stats/base/dists/binomial/cdf",0vq -"@stdlib/stats-base-dists-binomial-cdf",0vr -"@stdlib/stats/base/dists/binomial/ctor",0vs -"@stdlib/stats-base-dists-binomial-ctor",0vt -"@stdlib/stats/base/dists/binomial/entropy",0vu -"@stdlib/stats-base-dists-binomial-entropy",0vv -"@stdlib/stats/base/dists/binomial/kurtosis",0vw -"@stdlib/stats-base-dists-binomial-kurtosis",0vx -"@stdlib/stats/base/dists/binomial/logpmf",0vy -"@stdlib/stats-base-dists-binomial-logpmf",0vz -"@stdlib/stats/base/dists/binomial/mean",0w0 -"@stdlib/stats-base-dists-binomial-mean",0w1 -"@stdlib/stats/base/dists/binomial/median",0w2 -"@stdlib/stats-base-dists-binomial-median",0w3 -"@stdlib/stats/base/dists/binomial/mgf",0w4 -"@stdlib/stats-base-dists-binomial-mgf",0w5 -"@stdlib/stats/base/dists/binomial/mode",0w6 -"@stdlib/stats-base-dists-binomial-mode",0w7 -"@stdlib/stats/base/dists/binomial",0w8 -"@stdlib/stats-base-dists-binomial",0w9 -"@stdlib/stats/base/dists/binomial/pmf",0wA -"@stdlib/stats-base-dists-binomial-pmf",0wB -"@stdlib/stats/base/dists/binomial/quantile",0wC -"@stdlib/stats-base-dists-binomial-quantile",0wD -"@stdlib/stats/base/dists/binomial/skewness",0wE -"@stdlib/stats-base-dists-binomial-skewness",0wF -"@stdlib/stats/base/dists/binomial/stdev",0wG -"@stdlib/stats-base-dists-binomial-stdev",0wH -"@stdlib/stats/base/dists/binomial/variance",0wI -"@stdlib/stats-base-dists-binomial-variance",0wJ -"@stdlib/stats/base/dists/cauchy/cdf",0wK -"@stdlib/stats-base-dists-cauchy-cdf",0wL -"@stdlib/stats/base/dists/cauchy/ctor",0wM -"@stdlib/stats-base-dists-cauchy-ctor",0wN -"@stdlib/stats/base/dists/cauchy/entropy",0wO -"@stdlib/stats-base-dists-cauchy-entropy",0wP -"@stdlib/stats/base/dists/cauchy/logcdf",0wQ -"@stdlib/stats-base-dists-cauchy-logcdf",0wR -"@stdlib/stats/base/dists/cauchy/logpdf",0wS -"@stdlib/stats-base-dists-cauchy-logpdf",0wT -"@stdlib/stats/base/dists/cauchy/median",0wU -"@stdlib/stats-base-dists-cauchy-median",0wV -"@stdlib/stats/base/dists/cauchy/mode",0wW -"@stdlib/stats-base-dists-cauchy-mode",0wX -"@stdlib/stats/base/dists/cauchy",0wY -"@stdlib/stats-base-dists-cauchy",0wZ -"@stdlib/stats/base/dists/cauchy/pdf",0wa -"@stdlib/stats-base-dists-cauchy-pdf",0wb -"@stdlib/stats/base/dists/cauchy/quantile",0wc -"@stdlib/stats-base-dists-cauchy-quantile",0wd -"@stdlib/stats/base/dists/chi/cdf",0we -"@stdlib/stats-base-dists-chi-cdf",0wf -"@stdlib/stats/base/dists/chi/ctor",0wg -"@stdlib/stats-base-dists-chi-ctor",0wh -"@stdlib/stats/base/dists/chi/entropy",0wi -"@stdlib/stats-base-dists-chi-entropy",0wj -"@stdlib/stats/base/dists/chi/kurtosis",0wk -"@stdlib/stats-base-dists-chi-kurtosis",0wl -"@stdlib/stats/base/dists/chi/logpdf",0wm -"@stdlib/stats-base-dists-chi-logpdf",0wn -"@stdlib/stats/base/dists/chi/mean",0wo -"@stdlib/stats-base-dists-chi-mean",0wp -"@stdlib/stats/base/dists/chi/mode",0wq -"@stdlib/stats-base-dists-chi-mode",0wr -"@stdlib/stats/base/dists/chi",0ws -"@stdlib/stats-base-dists-chi",0wt -"@stdlib/stats/base/dists/chi/pdf",0wu -"@stdlib/stats-base-dists-chi-pdf",0wv -"@stdlib/stats/base/dists/chi/quantile",0ww -"@stdlib/stats-base-dists-chi-quantile",0wx -"@stdlib/stats/base/dists/chi/skewness",0wy -"@stdlib/stats-base-dists-chi-skewness",0wz -"@stdlib/stats/base/dists/chi/stdev",0x0 -"@stdlib/stats-base-dists-chi-stdev",0x1 -"@stdlib/stats/base/dists/chi/variance",0x2 -"@stdlib/stats-base-dists-chi-variance",0x3 -"@stdlib/stats/base/dists/chisquare/cdf",0x4 -"@stdlib/stats-base-dists-chisquare-cdf",0x5 -"@stdlib/stats/base/dists/chisquare/ctor",0x6 -"@stdlib/stats-base-dists-chisquare-ctor",0x7 -"@stdlib/stats/base/dists/chisquare/entropy",0x8 -"@stdlib/stats-base-dists-chisquare-entropy",0x9 -"@stdlib/stats/base/dists/chisquare/kurtosis",0xA -"@stdlib/stats-base-dists-chisquare-kurtosis",0xB -"@stdlib/stats/base/dists/chisquare/logpdf",0xC -"@stdlib/stats-base-dists-chisquare-logpdf",0xD -"@stdlib/stats/base/dists/chisquare/mean",0xE -"@stdlib/stats-base-dists-chisquare-mean",0xF -"@stdlib/stats/base/dists/chisquare/median",0xG -"@stdlib/stats-base-dists-chisquare-median",0xH -"@stdlib/stats/base/dists/chisquare/mgf",0xI -"@stdlib/stats-base-dists-chisquare-mgf",0xJ -"@stdlib/stats/base/dists/chisquare/mode",0xK -"@stdlib/stats-base-dists-chisquare-mode",0xL -"@stdlib/stats/base/dists/chisquare",0xM -"@stdlib/stats-base-dists-chisquare",0xN -"@stdlib/stats/base/dists/chisquare/pdf",0xO -"@stdlib/stats-base-dists-chisquare-pdf",0xP -"@stdlib/stats/base/dists/chisquare/quantile",0xQ -"@stdlib/stats-base-dists-chisquare-quantile",0xR -"@stdlib/stats/base/dists/chisquare/skewness",0xS -"@stdlib/stats-base-dists-chisquare-skewness",0xT -"@stdlib/stats/base/dists/chisquare/stdev",0xU -"@stdlib/stats-base-dists-chisquare-stdev",0xV -"@stdlib/stats/base/dists/chisquare/variance",0xW -"@stdlib/stats-base-dists-chisquare-variance",0xX -"@stdlib/stats/base/dists/cosine/cdf",0xY -"@stdlib/stats-base-dists-cosine-cdf",0xZ -"@stdlib/stats/base/dists/cosine/ctor",0xa -"@stdlib/stats-base-dists-cosine-ctor",0xb -"@stdlib/stats/base/dists/cosine/kurtosis",0xc -"@stdlib/stats-base-dists-cosine-kurtosis",0xd -"@stdlib/stats/base/dists/cosine/logcdf",0xe -"@stdlib/stats-base-dists-cosine-logcdf",0xf -"@stdlib/stats/base/dists/cosine/logpdf",0xg -"@stdlib/stats-base-dists-cosine-logpdf",0xh -"@stdlib/stats/base/dists/cosine/mean",0xi -"@stdlib/stats-base-dists-cosine-mean",0xj -"@stdlib/stats/base/dists/cosine/median",0xk -"@stdlib/stats-base-dists-cosine-median",0xl -"@stdlib/stats/base/dists/cosine/mgf",0xm -"@stdlib/stats-base-dists-cosine-mgf",0xn -"@stdlib/stats/base/dists/cosine/mode",0xo -"@stdlib/stats-base-dists-cosine-mode",0xp -"@stdlib/stats/base/dists/cosine",0xq -"@stdlib/stats-base-dists-cosine",0xr -"@stdlib/stats/base/dists/cosine/pdf",0xs -"@stdlib/stats-base-dists-cosine-pdf",0xt -"@stdlib/stats/base/dists/cosine/quantile",0xu -"@stdlib/stats-base-dists-cosine-quantile",0xv -"@stdlib/stats/base/dists/cosine/skewness",0xw -"@stdlib/stats-base-dists-cosine-skewness",0xx -"@stdlib/stats/base/dists/cosine/stdev",0xy -"@stdlib/stats-base-dists-cosine-stdev",0xz -"@stdlib/stats/base/dists/cosine/variance",0y0 -"@stdlib/stats-base-dists-cosine-variance",0y1 -"@stdlib/stats/base/dists/degenerate/cdf",0y2 -"@stdlib/stats-base-dists-degenerate-cdf",0y3 -"@stdlib/stats/base/dists/degenerate/ctor",0y4 -"@stdlib/stats-base-dists-degenerate-ctor",0y5 -"@stdlib/stats/base/dists/degenerate/entropy",0y6 -"@stdlib/stats-base-dists-degenerate-entropy",0y7 -"@stdlib/stats/base/dists/degenerate/logcdf",0y8 -"@stdlib/stats-base-dists-degenerate-logcdf",0y9 -"@stdlib/stats/base/dists/degenerate/logpdf",0yA -"@stdlib/stats-base-dists-degenerate-logpdf",0yB -"@stdlib/stats/base/dists/degenerate/logpmf",0yC -"@stdlib/stats-base-dists-degenerate-logpmf",0yD -"@stdlib/stats/base/dists/degenerate/mean",0yE -"@stdlib/stats-base-dists-degenerate-mean",0yF -"@stdlib/stats/base/dists/degenerate/median",0yG -"@stdlib/stats-base-dists-degenerate-median",0yH -"@stdlib/stats/base/dists/degenerate/mgf",0yI -"@stdlib/stats-base-dists-degenerate-mgf",0yJ -"@stdlib/stats/base/dists/degenerate/mode",0yK -"@stdlib/stats-base-dists-degenerate-mode",0yL -"@stdlib/stats/base/dists/degenerate",0yM -"@stdlib/stats-base-dists-degenerate",0yN -"@stdlib/stats/base/dists/degenerate/pdf",0yO -"@stdlib/stats-base-dists-degenerate-pdf",0yP -"@stdlib/stats/base/dists/degenerate/pmf",0yQ -"@stdlib/stats-base-dists-degenerate-pmf",0yR -"@stdlib/stats/base/dists/degenerate/quantile",0yS -"@stdlib/stats-base-dists-degenerate-quantile",0yT -"@stdlib/stats/base/dists/degenerate/stdev",0yU -"@stdlib/stats-base-dists-degenerate-stdev",0yV -"@stdlib/stats/base/dists/degenerate/variance",0yW -"@stdlib/stats-base-dists-degenerate-variance",0yX -"@stdlib/stats/base/dists/discrete-uniform/cdf",0yY -"@stdlib/stats-base-dists-discrete-uniform-cdf",0yZ -"@stdlib/stats/base/dists/discrete-uniform/ctor",0ya -"@stdlib/stats-base-dists-discrete-uniform-ctor",0yb -"@stdlib/stats/base/dists/discrete-uniform/entropy",0yc -"@stdlib/stats-base-dists-discrete-uniform-entropy",0yd -"@stdlib/stats/base/dists/discrete-uniform/kurtosis",0ye -"@stdlib/stats-base-dists-discrete-uniform-kurtosis",0yf -"@stdlib/stats/base/dists/discrete-uniform/logcdf",0yg -"@stdlib/stats-base-dists-discrete-uniform-logcdf",0yh -"@stdlib/stats/base/dists/discrete-uniform/logpmf",0yi -"@stdlib/stats-base-dists-discrete-uniform-logpmf",0yj -"@stdlib/stats/base/dists/discrete-uniform/mean",0yk -"@stdlib/stats-base-dists-discrete-uniform-mean",0yl -"@stdlib/stats/base/dists/discrete-uniform/median",0ym -"@stdlib/stats-base-dists-discrete-uniform-median",0yn -"@stdlib/stats/base/dists/discrete-uniform/mgf",0yo -"@stdlib/stats-base-dists-discrete-uniform-mgf",0yp -"@stdlib/stats/base/dists/discrete-uniform",0yq -"@stdlib/stats-base-dists-discrete-uniform",0yr -"@stdlib/stats/base/dists/discrete-uniform/pmf",0ys -"@stdlib/stats-base-dists-discrete-uniform-pmf",0yt -"@stdlib/stats/base/dists/discrete-uniform/quantile",0yu -"@stdlib/stats-base-dists-discrete-uniform-quantile",0yv -"@stdlib/stats/base/dists/discrete-uniform/skewness",0yw -"@stdlib/stats-base-dists-discrete-uniform-skewness",0yx -"@stdlib/stats/base/dists/discrete-uniform/stdev",0yy -"@stdlib/stats-base-dists-discrete-uniform-stdev",0yz -"@stdlib/stats/base/dists/discrete-uniform/variance",0z0 -"@stdlib/stats-base-dists-discrete-uniform-variance",0z1 -"@stdlib/stats/base/dists/erlang/cdf",0z2 -"@stdlib/stats-base-dists-erlang-cdf",0z3 -"@stdlib/stats/base/dists/erlang/ctor",0z4 -"@stdlib/stats-base-dists-erlang-ctor",0z5 -"@stdlib/stats/base/dists/erlang/entropy",0z6 -"@stdlib/stats-base-dists-erlang-entropy",0z7 -"@stdlib/stats/base/dists/erlang/kurtosis",0z8 -"@stdlib/stats-base-dists-erlang-kurtosis",0z9 -"@stdlib/stats/base/dists/erlang/logpdf",0zA -"@stdlib/stats-base-dists-erlang-logpdf",0zB -"@stdlib/stats/base/dists/erlang/mean",0zC -"@stdlib/stats-base-dists-erlang-mean",0zD -"@stdlib/stats/base/dists/erlang/mgf",0zE -"@stdlib/stats-base-dists-erlang-mgf",0zF -"@stdlib/stats/base/dists/erlang/mode",0zG -"@stdlib/stats-base-dists-erlang-mode",0zH -"@stdlib/stats/base/dists/erlang",0zI -"@stdlib/stats-base-dists-erlang",0zJ -"@stdlib/stats/base/dists/erlang/pdf",0zK -"@stdlib/stats-base-dists-erlang-pdf",0zL -"@stdlib/stats/base/dists/erlang/quantile",0zM -"@stdlib/stats-base-dists-erlang-quantile",0zN -"@stdlib/stats/base/dists/erlang/skewness",0zO -"@stdlib/stats-base-dists-erlang-skewness",0zP -"@stdlib/stats/base/dists/erlang/stdev",0zQ -"@stdlib/stats-base-dists-erlang-stdev",0zR -"@stdlib/stats/base/dists/erlang/variance",0zS -"@stdlib/stats-base-dists-erlang-variance",0zT -"@stdlib/stats/base/dists/exponential/cdf",0zU -"@stdlib/stats-base-dists-exponential-cdf",0zV -"@stdlib/stats/base/dists/exponential/ctor",0zW -"@stdlib/stats-base-dists-exponential-ctor",0zX -"@stdlib/stats/base/dists/exponential/entropy",0zY -"@stdlib/stats-base-dists-exponential-entropy",0zZ -"@stdlib/stats/base/dists/exponential/kurtosis",0za -"@stdlib/stats-base-dists-exponential-kurtosis",0zb -"@stdlib/stats/base/dists/exponential/logcdf",0zc -"@stdlib/stats-base-dists-exponential-logcdf",0zd -"@stdlib/stats/base/dists/exponential/logpdf",0ze -"@stdlib/stats-base-dists-exponential-logpdf",0zf -"@stdlib/stats/base/dists/exponential/mean",0zg -"@stdlib/stats-base-dists-exponential-mean",0zh -"@stdlib/stats/base/dists/exponential/median",0zi -"@stdlib/stats-base-dists-exponential-median",0zj -"@stdlib/stats/base/dists/exponential/mgf",0zk -"@stdlib/stats-base-dists-exponential-mgf",0zl -"@stdlib/stats/base/dists/exponential/mode",0zm -"@stdlib/stats-base-dists-exponential-mode",0zn -"@stdlib/stats/base/dists/exponential",0zo -"@stdlib/stats-base-dists-exponential",0zp -"@stdlib/stats/base/dists/exponential/pdf",0zq -"@stdlib/stats-base-dists-exponential-pdf",0zr -"@stdlib/stats/base/dists/exponential/quantile",0zs -"@stdlib/stats-base-dists-exponential-quantile",0zt -"@stdlib/stats/base/dists/exponential/skewness",0zu -"@stdlib/stats-base-dists-exponential-skewness",0zv -"@stdlib/stats/base/dists/exponential/stdev",0zw -"@stdlib/stats-base-dists-exponential-stdev",0zx -"@stdlib/stats/base/dists/exponential/variance",0zy -"@stdlib/stats-base-dists-exponential-variance",0zz -"@stdlib/stats/base/dists/f/cdf",100 -"@stdlib/stats-base-dists-f-cdf",101 -"@stdlib/stats/base/dists/f/ctor",102 -"@stdlib/stats-base-dists-f-ctor",103 -"@stdlib/stats/base/dists/f/entropy",104 -"@stdlib/stats-base-dists-f-entropy",105 -"@stdlib/stats/base/dists/f/kurtosis",106 -"@stdlib/stats-base-dists-f-kurtosis",107 -"@stdlib/stats/base/dists/f/mean",108 -"@stdlib/stats-base-dists-f-mean",109 -"@stdlib/stats/base/dists/f/mode",10A -"@stdlib/stats-base-dists-f-mode",10B -"@stdlib/stats/base/dists/f",10C -"@stdlib/stats-base-dists-f",10D -"@stdlib/stats/base/dists/f/pdf",10E -"@stdlib/stats-base-dists-f-pdf",10F -"@stdlib/stats/base/dists/f/quantile",10G -"@stdlib/stats-base-dists-f-quantile",10H -"@stdlib/stats/base/dists/f/skewness",10I -"@stdlib/stats-base-dists-f-skewness",10J -"@stdlib/stats/base/dists/f/stdev",10K -"@stdlib/stats-base-dists-f-stdev",10L -"@stdlib/stats/base/dists/f/variance",10M -"@stdlib/stats-base-dists-f-variance",10N -"@stdlib/stats/base/dists/frechet/cdf",10O -"@stdlib/stats-base-dists-frechet-cdf",10P -"@stdlib/stats/base/dists/frechet/ctor",10Q -"@stdlib/stats-base-dists-frechet-ctor",10R -"@stdlib/stats/base/dists/frechet/entropy",10S -"@stdlib/stats-base-dists-frechet-entropy",10T -"@stdlib/stats/base/dists/frechet/kurtosis",10U -"@stdlib/stats-base-dists-frechet-kurtosis",10V -"@stdlib/stats/base/dists/frechet/logcdf",10W -"@stdlib/stats-base-dists-frechet-logcdf",10X -"@stdlib/stats/base/dists/frechet/logpdf",10Y -"@stdlib/stats-base-dists-frechet-logpdf",10Z -"@stdlib/stats/base/dists/frechet/mean",10a -"@stdlib/stats-base-dists-frechet-mean",10b -"@stdlib/stats/base/dists/frechet/median",10c -"@stdlib/stats-base-dists-frechet-median",10d -"@stdlib/stats/base/dists/frechet/mode",10e -"@stdlib/stats-base-dists-frechet-mode",10f -"@stdlib/stats/base/dists/frechet",10g -"@stdlib/stats-base-dists-frechet",10h -"@stdlib/stats/base/dists/frechet/pdf",10i -"@stdlib/stats-base-dists-frechet-pdf",10j -"@stdlib/stats/base/dists/frechet/quantile",10k -"@stdlib/stats-base-dists-frechet-quantile",10l -"@stdlib/stats/base/dists/frechet/skewness",10m -"@stdlib/stats-base-dists-frechet-skewness",10n -"@stdlib/stats/base/dists/frechet/stdev",10o -"@stdlib/stats-base-dists-frechet-stdev",10p -"@stdlib/stats/base/dists/frechet/variance",10q -"@stdlib/stats-base-dists-frechet-variance",10r -"@stdlib/stats/base/dists/gamma/cdf",10s -"@stdlib/stats-base-dists-gamma-cdf",10t -"@stdlib/stats/base/dists/gamma/ctor",10u -"@stdlib/stats-base-dists-gamma-ctor",10v -"@stdlib/stats/base/dists/gamma/entropy",10w -"@stdlib/stats-base-dists-gamma-entropy",10x -"@stdlib/stats/base/dists/gamma/kurtosis",10y -"@stdlib/stats-base-dists-gamma-kurtosis",10z -"@stdlib/stats/base/dists/gamma/logcdf",110 -"@stdlib/stats-base-dists-gamma-logcdf",111 -"@stdlib/stats/base/dists/gamma/logpdf",112 -"@stdlib/stats-base-dists-gamma-logpdf",113 -"@stdlib/stats/base/dists/gamma/mean",114 -"@stdlib/stats-base-dists-gamma-mean",115 -"@stdlib/stats/base/dists/gamma/mgf",116 -"@stdlib/stats-base-dists-gamma-mgf",117 -"@stdlib/stats/base/dists/gamma/mode",118 -"@stdlib/stats-base-dists-gamma-mode",119 -"@stdlib/stats/base/dists/gamma",11A -"@stdlib/stats-base-dists-gamma",11B -"@stdlib/stats/base/dists/gamma/pdf",11C -"@stdlib/stats-base-dists-gamma-pdf",11D -"@stdlib/stats/base/dists/gamma/quantile",11E -"@stdlib/stats-base-dists-gamma-quantile",11F -"@stdlib/stats/base/dists/gamma/skewness",11G -"@stdlib/stats-base-dists-gamma-skewness",11H -"@stdlib/stats/base/dists/gamma/stdev",11I -"@stdlib/stats-base-dists-gamma-stdev",11J -"@stdlib/stats/base/dists/gamma/variance",11K -"@stdlib/stats-base-dists-gamma-variance",11L -"@stdlib/stats/base/dists/geometric/cdf",11M -"@stdlib/stats-base-dists-geometric-cdf",11N -"@stdlib/stats/base/dists/geometric/ctor",11O -"@stdlib/stats-base-dists-geometric-ctor",11P -"@stdlib/stats/base/dists/geometric/entropy",11Q -"@stdlib/stats-base-dists-geometric-entropy",11R -"@stdlib/stats/base/dists/geometric/kurtosis",11S -"@stdlib/stats-base-dists-geometric-kurtosis",11T -"@stdlib/stats/base/dists/geometric/logcdf",11U -"@stdlib/stats-base-dists-geometric-logcdf",11V -"@stdlib/stats/base/dists/geometric/logpmf",11W -"@stdlib/stats-base-dists-geometric-logpmf",11X -"@stdlib/stats/base/dists/geometric/mean",11Y -"@stdlib/stats-base-dists-geometric-mean",11Z -"@stdlib/stats/base/dists/geometric/median",11a -"@stdlib/stats-base-dists-geometric-median",11b -"@stdlib/stats/base/dists/geometric/mgf",11c -"@stdlib/stats-base-dists-geometric-mgf",11d -"@stdlib/stats/base/dists/geometric/mode",11e -"@stdlib/stats-base-dists-geometric-mode",11f -"@stdlib/stats/base/dists/geometric",11g -"@stdlib/stats-base-dists-geometric",11h -"@stdlib/stats/base/dists/geometric/pmf",11i -"@stdlib/stats-base-dists-geometric-pmf",11j -"@stdlib/stats/base/dists/geometric/quantile",11k -"@stdlib/stats-base-dists-geometric-quantile",11l -"@stdlib/stats/base/dists/geometric/skewness",11m -"@stdlib/stats-base-dists-geometric-skewness",11n -"@stdlib/stats/base/dists/geometric/stdev",11o -"@stdlib/stats-base-dists-geometric-stdev",11p -"@stdlib/stats/base/dists/geometric/variance",11q -"@stdlib/stats-base-dists-geometric-variance",11r -"@stdlib/stats/base/dists/gumbel/cdf",11s -"@stdlib/stats-base-dists-gumbel-cdf",11t -"@stdlib/stats/base/dists/gumbel/ctor",11u -"@stdlib/stats-base-dists-gumbel-ctor",11v -"@stdlib/stats/base/dists/gumbel/entropy",11w -"@stdlib/stats-base-dists-gumbel-entropy",11x -"@stdlib/stats/base/dists/gumbel/kurtosis",11y -"@stdlib/stats-base-dists-gumbel-kurtosis",11z -"@stdlib/stats/base/dists/gumbel/logcdf",120 -"@stdlib/stats-base-dists-gumbel-logcdf",121 -"@stdlib/stats/base/dists/gumbel/logpdf",122 -"@stdlib/stats-base-dists-gumbel-logpdf",123 -"@stdlib/stats/base/dists/gumbel/mean",124 -"@stdlib/stats-base-dists-gumbel-mean",125 -"@stdlib/stats/base/dists/gumbel/median",126 -"@stdlib/stats-base-dists-gumbel-median",127 -"@stdlib/stats/base/dists/gumbel/mgf",128 -"@stdlib/stats-base-dists-gumbel-mgf",129 -"@stdlib/stats/base/dists/gumbel/mode",12A -"@stdlib/stats-base-dists-gumbel-mode",12B -"@stdlib/stats/base/dists/gumbel",12C -"@stdlib/stats-base-dists-gumbel",12D -"@stdlib/stats/base/dists/gumbel/pdf",12E -"@stdlib/stats-base-dists-gumbel-pdf",12F -"@stdlib/stats/base/dists/gumbel/quantile",12G -"@stdlib/stats-base-dists-gumbel-quantile",12H -"@stdlib/stats/base/dists/gumbel/skewness",12I -"@stdlib/stats-base-dists-gumbel-skewness",12J -"@stdlib/stats/base/dists/gumbel/stdev",12K -"@stdlib/stats-base-dists-gumbel-stdev",12L -"@stdlib/stats/base/dists/gumbel/variance",12M -"@stdlib/stats-base-dists-gumbel-variance",12N -"@stdlib/stats/base/dists/hypergeometric/cdf",12O -"@stdlib/stats-base-dists-hypergeometric-cdf",12P -"@stdlib/stats/base/dists/hypergeometric/ctor",12Q -"@stdlib/stats-base-dists-hypergeometric-ctor",12R -"@stdlib/stats/base/dists/hypergeometric/kurtosis",12S -"@stdlib/stats-base-dists-hypergeometric-kurtosis",12T -"@stdlib/stats/base/dists/hypergeometric/logpmf",12U -"@stdlib/stats-base-dists-hypergeometric-logpmf",12V -"@stdlib/stats/base/dists/hypergeometric/mean",12W -"@stdlib/stats-base-dists-hypergeometric-mean",12X -"@stdlib/stats/base/dists/hypergeometric/mode",12Y -"@stdlib/stats-base-dists-hypergeometric-mode",12Z -"@stdlib/stats/base/dists/hypergeometric",12a -"@stdlib/stats-base-dists-hypergeometric",12b -"@stdlib/stats/base/dists/hypergeometric/pmf",12c -"@stdlib/stats-base-dists-hypergeometric-pmf",12d -"@stdlib/stats/base/dists/hypergeometric/quantile",12e -"@stdlib/stats-base-dists-hypergeometric-quantile",12f -"@stdlib/stats/base/dists/hypergeometric/skewness",12g -"@stdlib/stats-base-dists-hypergeometric-skewness",12h -"@stdlib/stats/base/dists/hypergeometric/stdev",12i -"@stdlib/stats-base-dists-hypergeometric-stdev",12j -"@stdlib/stats/base/dists/hypergeometric/variance",12k -"@stdlib/stats-base-dists-hypergeometric-variance",12l -"@stdlib/stats/base/dists/invgamma/cdf",12m -"@stdlib/stats-base-dists-invgamma-cdf",12n -"@stdlib/stats/base/dists/invgamma/ctor",12o -"@stdlib/stats-base-dists-invgamma-ctor",12p -"@stdlib/stats/base/dists/invgamma/entropy",12q -"@stdlib/stats-base-dists-invgamma-entropy",12r -"@stdlib/stats/base/dists/invgamma/kurtosis",12s -"@stdlib/stats-base-dists-invgamma-kurtosis",12t -"@stdlib/stats/base/dists/invgamma/logpdf",12u -"@stdlib/stats-base-dists-invgamma-logpdf",12v -"@stdlib/stats/base/dists/invgamma/mean",12w -"@stdlib/stats-base-dists-invgamma-mean",12x -"@stdlib/stats/base/dists/invgamma/mode",12y -"@stdlib/stats-base-dists-invgamma-mode",12z -"@stdlib/stats/base/dists/invgamma",130 -"@stdlib/stats-base-dists-invgamma",131 -"@stdlib/stats/base/dists/invgamma/pdf",132 -"@stdlib/stats-base-dists-invgamma-pdf",133 -"@stdlib/stats/base/dists/invgamma/quantile",134 -"@stdlib/stats-base-dists-invgamma-quantile",135 -"@stdlib/stats/base/dists/invgamma/skewness",136 -"@stdlib/stats-base-dists-invgamma-skewness",137 -"@stdlib/stats/base/dists/invgamma/stdev",138 -"@stdlib/stats-base-dists-invgamma-stdev",139 -"@stdlib/stats/base/dists/invgamma/variance",13A -"@stdlib/stats-base-dists-invgamma-variance",13B -"@stdlib/stats/base/dists/kumaraswamy/cdf",13C -"@stdlib/stats-base-dists-kumaraswamy-cdf",13D -"@stdlib/stats/base/dists/kumaraswamy/ctor",13E -"@stdlib/stats-base-dists-kumaraswamy-ctor",13F -"@stdlib/stats/base/dists/kumaraswamy/kurtosis",13G -"@stdlib/stats-base-dists-kumaraswamy-kurtosis",13H -"@stdlib/stats/base/dists/kumaraswamy/logcdf",13I -"@stdlib/stats-base-dists-kumaraswamy-logcdf",13J -"@stdlib/stats/base/dists/kumaraswamy/logpdf",13K -"@stdlib/stats-base-dists-kumaraswamy-logpdf",13L -"@stdlib/stats/base/dists/kumaraswamy/mean",13M -"@stdlib/stats-base-dists-kumaraswamy-mean",13N -"@stdlib/stats/base/dists/kumaraswamy/median",13O -"@stdlib/stats-base-dists-kumaraswamy-median",13P -"@stdlib/stats/base/dists/kumaraswamy/mode",13Q -"@stdlib/stats-base-dists-kumaraswamy-mode",13R -"@stdlib/stats/base/dists/kumaraswamy",13S -"@stdlib/stats-base-dists-kumaraswamy",13T -"@stdlib/stats/base/dists/kumaraswamy/pdf",13U -"@stdlib/stats-base-dists-kumaraswamy-pdf",13V -"@stdlib/stats/base/dists/kumaraswamy/quantile",13W -"@stdlib/stats-base-dists-kumaraswamy-quantile",13X -"@stdlib/stats/base/dists/kumaraswamy/skewness",13Y -"@stdlib/stats-base-dists-kumaraswamy-skewness",13Z -"@stdlib/stats/base/dists/kumaraswamy/stdev",13a -"@stdlib/stats-base-dists-kumaraswamy-stdev",13b -"@stdlib/stats/base/dists/kumaraswamy/variance",13c -"@stdlib/stats-base-dists-kumaraswamy-variance",13d -"@stdlib/stats/base/dists/laplace/cdf",13e -"@stdlib/stats-base-dists-laplace-cdf",13f -"@stdlib/stats/base/dists/laplace/ctor",13g -"@stdlib/stats-base-dists-laplace-ctor",13h -"@stdlib/stats/base/dists/laplace/entropy",13i -"@stdlib/stats-base-dists-laplace-entropy",13j -"@stdlib/stats/base/dists/laplace/kurtosis",13k -"@stdlib/stats-base-dists-laplace-kurtosis",13l -"@stdlib/stats/base/dists/laplace/logcdf",13m -"@stdlib/stats-base-dists-laplace-logcdf",13n -"@stdlib/stats/base/dists/laplace/logpdf",13o -"@stdlib/stats-base-dists-laplace-logpdf",13p -"@stdlib/stats/base/dists/laplace/mean",13q -"@stdlib/stats-base-dists-laplace-mean",13r -"@stdlib/stats/base/dists/laplace/median",13s -"@stdlib/stats-base-dists-laplace-median",13t -"@stdlib/stats/base/dists/laplace/mgf",13u -"@stdlib/stats-base-dists-laplace-mgf",13v -"@stdlib/stats/base/dists/laplace/mode",13w -"@stdlib/stats-base-dists-laplace-mode",13x -"@stdlib/stats/base/dists/laplace",13y -"@stdlib/stats-base-dists-laplace",13z -"@stdlib/stats/base/dists/laplace/pdf",140 -"@stdlib/stats-base-dists-laplace-pdf",141 -"@stdlib/stats/base/dists/laplace/quantile",142 -"@stdlib/stats-base-dists-laplace-quantile",143 -"@stdlib/stats/base/dists/laplace/skewness",144 -"@stdlib/stats-base-dists-laplace-skewness",145 -"@stdlib/stats/base/dists/laplace/stdev",146 -"@stdlib/stats-base-dists-laplace-stdev",147 -"@stdlib/stats/base/dists/laplace/variance",148 -"@stdlib/stats-base-dists-laplace-variance",149 -"@stdlib/stats/base/dists/levy/cdf",14A -"@stdlib/stats-base-dists-levy-cdf",14B -"@stdlib/stats/base/dists/levy/ctor",14C -"@stdlib/stats-base-dists-levy-ctor",14D -"@stdlib/stats/base/dists/levy/entropy",14E -"@stdlib/stats-base-dists-levy-entropy",14F -"@stdlib/stats/base/dists/levy/logcdf",14G -"@stdlib/stats-base-dists-levy-logcdf",14H -"@stdlib/stats/base/dists/levy/logpdf",14I -"@stdlib/stats-base-dists-levy-logpdf",14J -"@stdlib/stats/base/dists/levy/mean",14K -"@stdlib/stats-base-dists-levy-mean",14L -"@stdlib/stats/base/dists/levy/median",14M -"@stdlib/stats-base-dists-levy-median",14N -"@stdlib/stats/base/dists/levy/mode",14O -"@stdlib/stats-base-dists-levy-mode",14P -"@stdlib/stats/base/dists/levy",14Q -"@stdlib/stats-base-dists-levy",14R -"@stdlib/stats/base/dists/levy/pdf",14S -"@stdlib/stats-base-dists-levy-pdf",14T -"@stdlib/stats/base/dists/levy/quantile",14U -"@stdlib/stats-base-dists-levy-quantile",14V -"@stdlib/stats/base/dists/levy/stdev",14W -"@stdlib/stats-base-dists-levy-stdev",14X -"@stdlib/stats/base/dists/levy/variance",14Y -"@stdlib/stats-base-dists-levy-variance",14Z -"@stdlib/stats/base/dists/logistic/cdf",14a -"@stdlib/stats-base-dists-logistic-cdf",14b -"@stdlib/stats/base/dists/logistic/ctor",14c -"@stdlib/stats-base-dists-logistic-ctor",14d -"@stdlib/stats/base/dists/logistic/entropy",14e -"@stdlib/stats-base-dists-logistic-entropy",14f -"@stdlib/stats/base/dists/logistic/kurtosis",14g -"@stdlib/stats-base-dists-logistic-kurtosis",14h -"@stdlib/stats/base/dists/logistic/logcdf",14i -"@stdlib/stats-base-dists-logistic-logcdf",14j -"@stdlib/stats/base/dists/logistic/logpdf",14k -"@stdlib/stats-base-dists-logistic-logpdf",14l -"@stdlib/stats/base/dists/logistic/mean",14m -"@stdlib/stats-base-dists-logistic-mean",14n -"@stdlib/stats/base/dists/logistic/median",14o -"@stdlib/stats-base-dists-logistic-median",14p -"@stdlib/stats/base/dists/logistic/mgf",14q -"@stdlib/stats-base-dists-logistic-mgf",14r -"@stdlib/stats/base/dists/logistic/mode",14s -"@stdlib/stats-base-dists-logistic-mode",14t -"@stdlib/stats/base/dists/logistic",14u -"@stdlib/stats-base-dists-logistic",14v -"@stdlib/stats/base/dists/logistic/pdf",14w -"@stdlib/stats-base-dists-logistic-pdf",14x -"@stdlib/stats/base/dists/logistic/quantile",14y -"@stdlib/stats-base-dists-logistic-quantile",14z -"@stdlib/stats/base/dists/logistic/skewness",150 -"@stdlib/stats-base-dists-logistic-skewness",151 -"@stdlib/stats/base/dists/logistic/stdev",152 -"@stdlib/stats-base-dists-logistic-stdev",153 -"@stdlib/stats/base/dists/logistic/variance",154 -"@stdlib/stats-base-dists-logistic-variance",155 -"@stdlib/stats/base/dists/lognormal/cdf",156 -"@stdlib/stats-base-dists-lognormal-cdf",157 -"@stdlib/stats/base/dists/lognormal/ctor",158 -"@stdlib/stats-base-dists-lognormal-ctor",159 -"@stdlib/stats/base/dists/lognormal/entropy",15A -"@stdlib/stats-base-dists-lognormal-entropy",15B -"@stdlib/stats/base/dists/lognormal/kurtosis",15C -"@stdlib/stats-base-dists-lognormal-kurtosis",15D -"@stdlib/stats/base/dists/lognormal/logpdf",15E -"@stdlib/stats-base-dists-lognormal-logpdf",15F -"@stdlib/stats/base/dists/lognormal/mean",15G -"@stdlib/stats-base-dists-lognormal-mean",15H -"@stdlib/stats/base/dists/lognormal/median",15I -"@stdlib/stats-base-dists-lognormal-median",15J -"@stdlib/stats/base/dists/lognormal/mode",15K -"@stdlib/stats-base-dists-lognormal-mode",15L -"@stdlib/stats/base/dists/lognormal",15M -"@stdlib/stats-base-dists-lognormal",15N -"@stdlib/stats/base/dists/lognormal/pdf",15O -"@stdlib/stats-base-dists-lognormal-pdf",15P -"@stdlib/stats/base/dists/lognormal/quantile",15Q -"@stdlib/stats-base-dists-lognormal-quantile",15R -"@stdlib/stats/base/dists/lognormal/skewness",15S -"@stdlib/stats-base-dists-lognormal-skewness",15T -"@stdlib/stats/base/dists/lognormal/stdev",15U -"@stdlib/stats-base-dists-lognormal-stdev",15V -"@stdlib/stats/base/dists/lognormal/variance",15W -"@stdlib/stats-base-dists-lognormal-variance",15X -"@stdlib/stats/base/dists/negative-binomial/cdf",15Y -"@stdlib/stats-base-dists-negative-binomial-cdf",15Z -"@stdlib/stats/base/dists/negative-binomial/ctor",15a -"@stdlib/stats-base-dists-negative-binomial-ctor",15b -"@stdlib/stats/base/dists/negative-binomial/kurtosis",15c -"@stdlib/stats-base-dists-negative-binomial-kurtosis",15d -"@stdlib/stats/base/dists/negative-binomial/logpmf",15e -"@stdlib/stats-base-dists-negative-binomial-logpmf",15f -"@stdlib/stats/base/dists/negative-binomial/mean",15g -"@stdlib/stats-base-dists-negative-binomial-mean",15h -"@stdlib/stats/base/dists/negative-binomial/mgf",15i -"@stdlib/stats-base-dists-negative-binomial-mgf",15j -"@stdlib/stats/base/dists/negative-binomial/mode",15k -"@stdlib/stats-base-dists-negative-binomial-mode",15l -"@stdlib/stats/base/dists/negative-binomial",15m -"@stdlib/stats-base-dists-negative-binomial",15n -"@stdlib/stats/base/dists/negative-binomial/pmf",15o -"@stdlib/stats-base-dists-negative-binomial-pmf",15p -"@stdlib/stats/base/dists/negative-binomial/quantile",15q -"@stdlib/stats-base-dists-negative-binomial-quantile",15r -"@stdlib/stats/base/dists/negative-binomial/skewness",15s -"@stdlib/stats-base-dists-negative-binomial-skewness",15t -"@stdlib/stats/base/dists/negative-binomial/stdev",15u -"@stdlib/stats-base-dists-negative-binomial-stdev",15v -"@stdlib/stats/base/dists/negative-binomial/variance",15w -"@stdlib/stats-base-dists-negative-binomial-variance",15x -"@stdlib/stats/base/dists/normal/cdf",15y -"@stdlib/stats-base-dists-normal-cdf",15z -"@stdlib/stats/base/dists/normal/ctor",160 -"@stdlib/stats-base-dists-normal-ctor",161 -"@stdlib/stats/base/dists/normal/entropy",162 -"@stdlib/stats-base-dists-normal-entropy",163 -"@stdlib/stats/base/dists/normal/kurtosis",164 -"@stdlib/stats-base-dists-normal-kurtosis",165 -"@stdlib/stats/base/dists/normal/logpdf",166 -"@stdlib/stats-base-dists-normal-logpdf",167 -"@stdlib/stats/base/dists/normal/mean",168 -"@stdlib/stats-base-dists-normal-mean",169 -"@stdlib/stats/base/dists/normal/median",16A -"@stdlib/stats-base-dists-normal-median",16B -"@stdlib/stats/base/dists/normal/mgf",16C -"@stdlib/stats-base-dists-normal-mgf",16D -"@stdlib/stats/base/dists/normal/mode",16E -"@stdlib/stats-base-dists-normal-mode",16F -"@stdlib/stats/base/dists/normal",16G -"@stdlib/stats-base-dists-normal",16H -"@stdlib/stats/base/dists/normal/pdf",16I -"@stdlib/stats-base-dists-normal-pdf",16J -"@stdlib/stats/base/dists/normal/quantile",16K -"@stdlib/stats-base-dists-normal-quantile",16L -"@stdlib/stats/base/dists/normal/skewness",16M -"@stdlib/stats-base-dists-normal-skewness",16N -"@stdlib/stats/base/dists/normal/stdev",16O -"@stdlib/stats-base-dists-normal-stdev",16P -"@stdlib/stats/base/dists/normal/variance",16Q -"@stdlib/stats-base-dists-normal-variance",16R -"@stdlib/stats/base/dists",16S -"@stdlib/stats-base-dists",16T -"@stdlib/stats/base/dists/pareto-type1/cdf",16U -"@stdlib/stats-base-dists-pareto-type1-cdf",16V -"@stdlib/stats/base/dists/pareto-type1/ctor",16W -"@stdlib/stats-base-dists-pareto-type1-ctor",16X -"@stdlib/stats/base/dists/pareto-type1/entropy",16Y -"@stdlib/stats-base-dists-pareto-type1-entropy",16Z -"@stdlib/stats/base/dists/pareto-type1/kurtosis",16a -"@stdlib/stats-base-dists-pareto-type1-kurtosis",16b -"@stdlib/stats/base/dists/pareto-type1/logcdf",16c -"@stdlib/stats-base-dists-pareto-type1-logcdf",16d -"@stdlib/stats/base/dists/pareto-type1/logpdf",16e -"@stdlib/stats-base-dists-pareto-type1-logpdf",16f -"@stdlib/stats/base/dists/pareto-type1/mean",16g -"@stdlib/stats-base-dists-pareto-type1-mean",16h -"@stdlib/stats/base/dists/pareto-type1/median",16i -"@stdlib/stats-base-dists-pareto-type1-median",16j -"@stdlib/stats/base/dists/pareto-type1/mode",16k -"@stdlib/stats-base-dists-pareto-type1-mode",16l -"@stdlib/stats/base/dists/pareto-type1",16m -"@stdlib/stats-base-dists-pareto-type1",16n -"@stdlib/stats/base/dists/pareto-type1/pdf",16o -"@stdlib/stats-base-dists-pareto-type1-pdf",16p -"@stdlib/stats/base/dists/pareto-type1/quantile",16q -"@stdlib/stats-base-dists-pareto-type1-quantile",16r -"@stdlib/stats/base/dists/pareto-type1/skewness",16s -"@stdlib/stats-base-dists-pareto-type1-skewness",16t -"@stdlib/stats/base/dists/pareto-type1/stdev",16u -"@stdlib/stats-base-dists-pareto-type1-stdev",16v -"@stdlib/stats/base/dists/pareto-type1/variance",16w -"@stdlib/stats-base-dists-pareto-type1-variance",16x -"@stdlib/stats/base/dists/poisson/cdf",16y -"@stdlib/stats-base-dists-poisson-cdf",16z -"@stdlib/stats/base/dists/poisson/ctor",170 -"@stdlib/stats-base-dists-poisson-ctor",171 -"@stdlib/stats/base/dists/poisson/entropy",172 -"@stdlib/stats-base-dists-poisson-entropy",173 -"@stdlib/stats/base/dists/poisson/kurtosis",174 -"@stdlib/stats-base-dists-poisson-kurtosis",175 -"@stdlib/stats/base/dists/poisson/logpmf",176 -"@stdlib/stats-base-dists-poisson-logpmf",177 -"@stdlib/stats/base/dists/poisson/mean",178 -"@stdlib/stats-base-dists-poisson-mean",179 -"@stdlib/stats/base/dists/poisson/median",17A -"@stdlib/stats-base-dists-poisson-median",17B -"@stdlib/stats/base/dists/poisson/mgf",17C -"@stdlib/stats-base-dists-poisson-mgf",17D -"@stdlib/stats/base/dists/poisson/mode",17E -"@stdlib/stats-base-dists-poisson-mode",17F -"@stdlib/stats/base/dists/poisson",17G -"@stdlib/stats-base-dists-poisson",17H -"@stdlib/stats/base/dists/poisson/pmf",17I -"@stdlib/stats-base-dists-poisson-pmf",17J -"@stdlib/stats/base/dists/poisson/quantile",17K -"@stdlib/stats-base-dists-poisson-quantile",17L -"@stdlib/stats/base/dists/poisson/skewness",17M -"@stdlib/stats-base-dists-poisson-skewness",17N -"@stdlib/stats/base/dists/poisson/stdev",17O -"@stdlib/stats-base-dists-poisson-stdev",17P -"@stdlib/stats/base/dists/poisson/variance",17Q -"@stdlib/stats-base-dists-poisson-variance",17R -"@stdlib/stats/base/dists/rayleigh/cdf",17S -"@stdlib/stats-base-dists-rayleigh-cdf",17T -"@stdlib/stats/base/dists/rayleigh/ctor",17U -"@stdlib/stats-base-dists-rayleigh-ctor",17V -"@stdlib/stats/base/dists/rayleigh/entropy",17W -"@stdlib/stats-base-dists-rayleigh-entropy",17X -"@stdlib/stats/base/dists/rayleigh/kurtosis",17Y -"@stdlib/stats-base-dists-rayleigh-kurtosis",17Z -"@stdlib/stats/base/dists/rayleigh/logcdf",17a -"@stdlib/stats-base-dists-rayleigh-logcdf",17b -"@stdlib/stats/base/dists/rayleigh/logpdf",17c -"@stdlib/stats-base-dists-rayleigh-logpdf",17d -"@stdlib/stats/base/dists/rayleigh/mean",17e -"@stdlib/stats-base-dists-rayleigh-mean",17f -"@stdlib/stats/base/dists/rayleigh/median",17g -"@stdlib/stats-base-dists-rayleigh-median",17h -"@stdlib/stats/base/dists/rayleigh/mgf",17i -"@stdlib/stats-base-dists-rayleigh-mgf",17j -"@stdlib/stats/base/dists/rayleigh/mode",17k -"@stdlib/stats-base-dists-rayleigh-mode",17l -"@stdlib/stats/base/dists/rayleigh",17m -"@stdlib/stats-base-dists-rayleigh",17n -"@stdlib/stats/base/dists/rayleigh/pdf",17o -"@stdlib/stats-base-dists-rayleigh-pdf",17p -"@stdlib/stats/base/dists/rayleigh/quantile",17q -"@stdlib/stats-base-dists-rayleigh-quantile",17r -"@stdlib/stats/base/dists/rayleigh/skewness",17s -"@stdlib/stats-base-dists-rayleigh-skewness",17t -"@stdlib/stats/base/dists/rayleigh/stdev",17u -"@stdlib/stats-base-dists-rayleigh-stdev",17v -"@stdlib/stats/base/dists/rayleigh/variance",17w -"@stdlib/stats-base-dists-rayleigh-variance",17x -"@stdlib/stats/base/dists/signrank/cdf",17y -"@stdlib/stats-base-dists-signrank-cdf",17z -"@stdlib/stats/base/dists/signrank",180 -"@stdlib/stats-base-dists-signrank",181 -"@stdlib/stats/base/dists/signrank/pdf",182 -"@stdlib/stats-base-dists-signrank-pdf",183 -"@stdlib/stats/base/dists/signrank/quantile",184 -"@stdlib/stats-base-dists-signrank-quantile",185 -"@stdlib/stats/base/dists/t/cdf",186 -"@stdlib/stats-base-dists-t-cdf",187 -"@stdlib/stats/base/dists/t/ctor",188 -"@stdlib/stats-base-dists-t-ctor",189 -"@stdlib/stats/base/dists/t/entropy",18A -"@stdlib/stats-base-dists-t-entropy",18B -"@stdlib/stats/base/dists/t/kurtosis",18C -"@stdlib/stats-base-dists-t-kurtosis",18D -"@stdlib/stats/base/dists/t/logcdf",18E -"@stdlib/stats-base-dists-t-logcdf",18F -"@stdlib/stats/base/dists/t/logpdf",18G -"@stdlib/stats-base-dists-t-logpdf",18H -"@stdlib/stats/base/dists/t/mean",18I -"@stdlib/stats-base-dists-t-mean",18J -"@stdlib/stats/base/dists/t/median",18K -"@stdlib/stats-base-dists-t-median",18L -"@stdlib/stats/base/dists/t/mode",18M -"@stdlib/stats-base-dists-t-mode",18N -"@stdlib/stats/base/dists/t",18O -"@stdlib/stats-base-dists-t",18P -"@stdlib/stats/base/dists/t/pdf",18Q -"@stdlib/stats-base-dists-t-pdf",18R -"@stdlib/stats/base/dists/t/quantile",18S -"@stdlib/stats-base-dists-t-quantile",18T -"@stdlib/stats/base/dists/t/skewness",18U -"@stdlib/stats-base-dists-t-skewness",18V -"@stdlib/stats/base/dists/t/stdev",18W -"@stdlib/stats-base-dists-t-stdev",18X -"@stdlib/stats/base/dists/t/variance",18Y -"@stdlib/stats-base-dists-t-variance",18Z -"@stdlib/stats/base/dists/triangular/cdf",18a -"@stdlib/stats-base-dists-triangular-cdf",18b -"@stdlib/stats/base/dists/triangular/ctor",18c -"@stdlib/stats-base-dists-triangular-ctor",18d -"@stdlib/stats/base/dists/triangular/entropy",18e -"@stdlib/stats-base-dists-triangular-entropy",18f -"@stdlib/stats/base/dists/triangular/kurtosis",18g -"@stdlib/stats-base-dists-triangular-kurtosis",18h -"@stdlib/stats/base/dists/triangular/logcdf",18i -"@stdlib/stats-base-dists-triangular-logcdf",18j -"@stdlib/stats/base/dists/triangular/logpdf",18k -"@stdlib/stats-base-dists-triangular-logpdf",18l -"@stdlib/stats/base/dists/triangular/mean",18m -"@stdlib/stats-base-dists-triangular-mean",18n -"@stdlib/stats/base/dists/triangular/median",18o -"@stdlib/stats-base-dists-triangular-median",18p -"@stdlib/stats/base/dists/triangular/mgf",18q -"@stdlib/stats-base-dists-triangular-mgf",18r -"@stdlib/stats/base/dists/triangular/mode",18s -"@stdlib/stats-base-dists-triangular-mode",18t -"@stdlib/stats/base/dists/triangular",18u -"@stdlib/stats-base-dists-triangular",18v -"@stdlib/stats/base/dists/triangular/pdf",18w -"@stdlib/stats-base-dists-triangular-pdf",18x -"@stdlib/stats/base/dists/triangular/quantile",18y -"@stdlib/stats-base-dists-triangular-quantile",18z -"@stdlib/stats/base/dists/triangular/skewness",190 -"@stdlib/stats-base-dists-triangular-skewness",191 -"@stdlib/stats/base/dists/triangular/stdev",192 -"@stdlib/stats-base-dists-triangular-stdev",193 -"@stdlib/stats/base/dists/triangular/variance",194 -"@stdlib/stats-base-dists-triangular-variance",195 -"@stdlib/stats/base/dists/truncated-normal",196 -"@stdlib/stats-base-dists-truncated-normal",197 -"@stdlib/stats/base/dists/truncated-normal/pdf",198 -"@stdlib/stats-base-dists-truncated-normal-pdf",199 -"@stdlib/stats/base/dists/uniform/cdf",19A -"@stdlib/stats-base-dists-uniform-cdf",19B -"@stdlib/stats/base/dists/uniform/ctor",19C -"@stdlib/stats-base-dists-uniform-ctor",19D -"@stdlib/stats/base/dists/uniform/entropy",19E -"@stdlib/stats-base-dists-uniform-entropy",19F -"@stdlib/stats/base/dists/uniform/kurtosis",19G -"@stdlib/stats-base-dists-uniform-kurtosis",19H -"@stdlib/stats/base/dists/uniform/logcdf",19I -"@stdlib/stats-base-dists-uniform-logcdf",19J -"@stdlib/stats/base/dists/uniform/logpdf",19K -"@stdlib/stats-base-dists-uniform-logpdf",19L -"@stdlib/stats/base/dists/uniform/mean",19M -"@stdlib/stats-base-dists-uniform-mean",19N -"@stdlib/stats/base/dists/uniform/median",19O -"@stdlib/stats-base-dists-uniform-median",19P -"@stdlib/stats/base/dists/uniform/mgf",19Q -"@stdlib/stats-base-dists-uniform-mgf",19R -"@stdlib/stats/base/dists/uniform",19S -"@stdlib/stats-base-dists-uniform",19T -"@stdlib/stats/base/dists/uniform/pdf",19U -"@stdlib/stats-base-dists-uniform-pdf",19V -"@stdlib/stats/base/dists/uniform/quantile",19W -"@stdlib/stats-base-dists-uniform-quantile",19X -"@stdlib/stats/base/dists/uniform/skewness",19Y -"@stdlib/stats-base-dists-uniform-skewness",19Z -"@stdlib/stats/base/dists/uniform/stdev",19a -"@stdlib/stats-base-dists-uniform-stdev",19b -"@stdlib/stats/base/dists/uniform/variance",19c -"@stdlib/stats-base-dists-uniform-variance",19d -"@stdlib/stats/base/dists/weibull/cdf",19e -"@stdlib/stats-base-dists-weibull-cdf",19f -"@stdlib/stats/base/dists/weibull/ctor",19g -"@stdlib/stats-base-dists-weibull-ctor",19h -"@stdlib/stats/base/dists/weibull/entropy",19i -"@stdlib/stats-base-dists-weibull-entropy",19j -"@stdlib/stats/base/dists/weibull/kurtosis",19k -"@stdlib/stats-base-dists-weibull-kurtosis",19l -"@stdlib/stats/base/dists/weibull/logcdf",19m -"@stdlib/stats-base-dists-weibull-logcdf",19n -"@stdlib/stats/base/dists/weibull/logpdf",19o -"@stdlib/stats-base-dists-weibull-logpdf",19p -"@stdlib/stats/base/dists/weibull/mean",19q -"@stdlib/stats-base-dists-weibull-mean",19r -"@stdlib/stats/base/dists/weibull/median",19s -"@stdlib/stats-base-dists-weibull-median",19t -"@stdlib/stats/base/dists/weibull/mgf",19u -"@stdlib/stats-base-dists-weibull-mgf",19v -"@stdlib/stats/base/dists/weibull/mode",19w -"@stdlib/stats-base-dists-weibull-mode",19x -"@stdlib/stats/base/dists/weibull",19y -"@stdlib/stats-base-dists-weibull",19z -"@stdlib/stats/base/dists/weibull/pdf",1A0 -"@stdlib/stats-base-dists-weibull-pdf",1A1 -"@stdlib/stats/base/dists/weibull/quantile",1A2 -"@stdlib/stats-base-dists-weibull-quantile",1A3 -"@stdlib/stats/base/dists/weibull/skewness",1A4 -"@stdlib/stats-base-dists-weibull-skewness",1A5 -"@stdlib/stats/base/dists/weibull/stdev",1A6 -"@stdlib/stats-base-dists-weibull-stdev",1A7 -"@stdlib/stats/base/dists/weibull/variance",1A8 -"@stdlib/stats-base-dists-weibull-variance",1A9 -"@stdlib/stats/base/dmax",1AA -"@stdlib/stats-base-dmax",1AB -"@stdlib/stats/base/dmaxabs",1AC -"@stdlib/stats-base-dmaxabs",1AD -"@stdlib/stats/base/dmaxabssorted",1AE -"@stdlib/stats-base-dmaxabssorted",1AF -"@stdlib/stats/base/dmaxsorted",1AG -"@stdlib/stats-base-dmaxsorted",1AH -"@stdlib/stats/base/dmean",1AI -"@stdlib/stats-base-dmean",1AJ -"@stdlib/stats/base/dmeankbn",1AK -"@stdlib/stats-base-dmeankbn",1AL -"@stdlib/stats/base/dmeankbn2",1AM -"@stdlib/stats-base-dmeankbn2",1AN -"@stdlib/stats/base/dmeanli",1AO -"@stdlib/stats-base-dmeanli",1AP -"@stdlib/stats/base/dmeanlipw",1AQ -"@stdlib/stats-base-dmeanlipw",1AR -"@stdlib/stats/base/dmeanors",1AS -"@stdlib/stats-base-dmeanors",1AT -"@stdlib/stats/base/dmeanpn",1AU -"@stdlib/stats-base-dmeanpn",1AV -"@stdlib/stats/base/dmeanpw",1AW -"@stdlib/stats-base-dmeanpw",1AX -"@stdlib/stats/base/dmeanstdev",1AY -"@stdlib/stats-base-dmeanstdev",1AZ -"@stdlib/stats/base/dmeanstdevpn",1Aa -"@stdlib/stats-base-dmeanstdevpn",1Ab -"@stdlib/stats/base/dmeanvar",1Ac -"@stdlib/stats-base-dmeanvar",1Ad -"@stdlib/stats/base/dmeanvarpn",1Ae -"@stdlib/stats-base-dmeanvarpn",1Af -"@stdlib/stats/base/dmeanwd",1Ag -"@stdlib/stats-base-dmeanwd",1Ah -"@stdlib/stats/base/dmediansorted",1Ai -"@stdlib/stats-base-dmediansorted",1Aj -"@stdlib/stats/base/dmidrange",1Ak -"@stdlib/stats-base-dmidrange",1Al -"@stdlib/stats/base/dmin",1Am -"@stdlib/stats-base-dmin",1An -"@stdlib/stats/base/dminabs",1Ao -"@stdlib/stats-base-dminabs",1Ap -"@stdlib/stats/base/dminsorted",1Aq -"@stdlib/stats-base-dminsorted",1Ar -"@stdlib/stats/base/dmskmax",1As -"@stdlib/stats-base-dmskmax",1At -"@stdlib/stats/base/dmskmin",1Au -"@stdlib/stats-base-dmskmin",1Av -"@stdlib/stats/base/dmskrange",1Aw -"@stdlib/stats-base-dmskrange",1Ax -"@stdlib/stats/base/dnanmax",1Ay -"@stdlib/stats-base-dnanmax",1Az -"@stdlib/stats/base/dnanmaxabs",1B0 -"@stdlib/stats-base-dnanmaxabs",1B1 -"@stdlib/stats/base/dnanmean",1B2 -"@stdlib/stats-base-dnanmean",1B3 -"@stdlib/stats/base/dnanmeanors",1B4 -"@stdlib/stats-base-dnanmeanors",1B5 -"@stdlib/stats/base/dnanmeanpn",1B6 -"@stdlib/stats-base-dnanmeanpn",1B7 -"@stdlib/stats/base/dnanmeanpw",1B8 -"@stdlib/stats-base-dnanmeanpw",1B9 -"@stdlib/stats/base/dnanmeanwd",1BA -"@stdlib/stats-base-dnanmeanwd",1BB -"@stdlib/stats/base/dnanmin",1BC -"@stdlib/stats-base-dnanmin",1BD -"@stdlib/stats/base/dnanminabs",1BE -"@stdlib/stats-base-dnanminabs",1BF -"@stdlib/stats/base/dnanmskmax",1BG -"@stdlib/stats-base-dnanmskmax",1BH -"@stdlib/stats/base/dnanmskmin",1BI -"@stdlib/stats-base-dnanmskmin",1BJ -"@stdlib/stats/base/dnanmskrange",1BK -"@stdlib/stats-base-dnanmskrange",1BL -"@stdlib/stats/base/dnanrange",1BM -"@stdlib/stats-base-dnanrange",1BN -"@stdlib/stats/base/dnanstdev",1BO -"@stdlib/stats-base-dnanstdev",1BP -"@stdlib/stats/base/dnanstdevch",1BQ -"@stdlib/stats-base-dnanstdevch",1BR -"@stdlib/stats/base/dnanstdevpn",1BS -"@stdlib/stats-base-dnanstdevpn",1BT -"@stdlib/stats/base/dnanstdevtk",1BU -"@stdlib/stats-base-dnanstdevtk",1BV -"@stdlib/stats/base/dnanstdevwd",1BW -"@stdlib/stats-base-dnanstdevwd",1BX -"@stdlib/stats/base/dnanstdevyc",1BY -"@stdlib/stats-base-dnanstdevyc",1BZ -"@stdlib/stats/base/dnanvariance",1Ba -"@stdlib/stats-base-dnanvariance",1Bb -"@stdlib/stats/base/dnanvariancech",1Bc -"@stdlib/stats-base-dnanvariancech",1Bd -"@stdlib/stats/base/dnanvariancepn",1Be -"@stdlib/stats-base-dnanvariancepn",1Bf -"@stdlib/stats/base/dnanvariancetk",1Bg -"@stdlib/stats-base-dnanvariancetk",1Bh -"@stdlib/stats/base/dnanvariancewd",1Bi -"@stdlib/stats-base-dnanvariancewd",1Bj -"@stdlib/stats/base/dnanvarianceyc",1Bk -"@stdlib/stats-base-dnanvarianceyc",1Bl -"@stdlib/stats/base/drange",1Bm -"@stdlib/stats-base-drange",1Bn -"@stdlib/stats/base/dsem",1Bo -"@stdlib/stats-base-dsem",1Bp -"@stdlib/stats/base/dsemch",1Bq -"@stdlib/stats-base-dsemch",1Br -"@stdlib/stats/base/dsempn",1Bs -"@stdlib/stats-base-dsempn",1Bt -"@stdlib/stats/base/dsemtk",1Bu -"@stdlib/stats-base-dsemtk",1Bv -"@stdlib/stats/base/dsemwd",1Bw -"@stdlib/stats-base-dsemwd",1Bx -"@stdlib/stats/base/dsemyc",1By -"@stdlib/stats-base-dsemyc",1Bz -"@stdlib/stats/base/dsmean",1C0 -"@stdlib/stats-base-dsmean",1C1 -"@stdlib/stats/base/dsmeanors",1C2 -"@stdlib/stats-base-dsmeanors",1C3 -"@stdlib/stats/base/dsmeanpn",1C4 -"@stdlib/stats-base-dsmeanpn",1C5 -"@stdlib/stats/base/dsmeanpw",1C6 -"@stdlib/stats-base-dsmeanpw",1C7 -"@stdlib/stats/base/dsmeanwd",1C8 -"@stdlib/stats-base-dsmeanwd",1C9 -"@stdlib/stats/base/dsnanmean",1CA -"@stdlib/stats-base-dsnanmean",1CB -"@stdlib/stats/base/dsnanmeanors",1CC -"@stdlib/stats-base-dsnanmeanors",1CD -"@stdlib/stats/base/dsnanmeanpn",1CE -"@stdlib/stats-base-dsnanmeanpn",1CF -"@stdlib/stats/base/dsnanmeanwd",1CG -"@stdlib/stats-base-dsnanmeanwd",1CH -"@stdlib/stats/base/dstdev",1CI -"@stdlib/stats-base-dstdev",1CJ -"@stdlib/stats/base/dstdevch",1CK -"@stdlib/stats-base-dstdevch",1CL -"@stdlib/stats/base/dstdevpn",1CM -"@stdlib/stats-base-dstdevpn",1CN -"@stdlib/stats/base/dstdevtk",1CO -"@stdlib/stats-base-dstdevtk",1CP -"@stdlib/stats/base/dstdevwd",1CQ -"@stdlib/stats-base-dstdevwd",1CR -"@stdlib/stats/base/dstdevyc",1CS -"@stdlib/stats-base-dstdevyc",1CT -"@stdlib/stats/base/dsvariance",1CU -"@stdlib/stats-base-dsvariance",1CV -"@stdlib/stats/base/dsvariancepn",1CW -"@stdlib/stats-base-dsvariancepn",1CX -"@stdlib/stats/base/dvariance",1CY -"@stdlib/stats-base-dvariance",1CZ -"@stdlib/stats/base/dvariancech",1Ca -"@stdlib/stats-base-dvariancech",1Cb -"@stdlib/stats/base/dvariancepn",1Cc -"@stdlib/stats-base-dvariancepn",1Cd -"@stdlib/stats/base/dvariancetk",1Ce -"@stdlib/stats-base-dvariancetk",1Cf -"@stdlib/stats/base/dvariancewd",1Cg -"@stdlib/stats-base-dvariancewd",1Ch -"@stdlib/stats/base/dvarianceyc",1Ci -"@stdlib/stats-base-dvarianceyc",1Cj -"@stdlib/stats/base/dvarm",1Ck -"@stdlib/stats-base-dvarm",1Cl -"@stdlib/stats/base/dvarmpn",1Cm -"@stdlib/stats-base-dvarmpn",1Cn -"@stdlib/stats/base/dvarmtk",1Co -"@stdlib/stats-base-dvarmtk",1Cp -"@stdlib/stats/base/max-by",1Cq -"@stdlib/stats-base-max-by",1Cr -"@stdlib/stats/base/max",1Cs -"@stdlib/stats-base-max",1Ct -"@stdlib/stats/base/maxabs",1Cu -"@stdlib/stats-base-maxabs",1Cv -"@stdlib/stats/base/maxsorted",1Cw -"@stdlib/stats-base-maxsorted",1Cx -"@stdlib/stats/base/mean",1Cy -"@stdlib/stats-base-mean",1Cz -"@stdlib/stats/base/meankbn",1D0 -"@stdlib/stats-base-meankbn",1D1 -"@stdlib/stats/base/meankbn2",1D2 -"@stdlib/stats-base-meankbn2",1D3 -"@stdlib/stats/base/meanors",1D4 -"@stdlib/stats-base-meanors",1D5 -"@stdlib/stats/base/meanpn",1D6 -"@stdlib/stats-base-meanpn",1D7 -"@stdlib/stats/base/meanpw",1D8 -"@stdlib/stats-base-meanpw",1D9 -"@stdlib/stats/base/meanwd",1DA -"@stdlib/stats-base-meanwd",1DB -"@stdlib/stats/base/mediansorted",1DC -"@stdlib/stats-base-mediansorted",1DD -"@stdlib/stats/base/min-by",1DE -"@stdlib/stats-base-min-by",1DF -"@stdlib/stats/base/min",1DG -"@stdlib/stats-base-min",1DH -"@stdlib/stats/base/minabs",1DI -"@stdlib/stats-base-minabs",1DJ -"@stdlib/stats/base/minsorted",1DK -"@stdlib/stats-base-minsorted",1DL -"@stdlib/stats/base/mskmax",1DM -"@stdlib/stats-base-mskmax",1DN -"@stdlib/stats/base/mskmin",1DO -"@stdlib/stats-base-mskmin",1DP -"@stdlib/stats/base/mskrange",1DQ -"@stdlib/stats-base-mskrange",1DR -"@stdlib/stats/base/nanmax-by",1DS -"@stdlib/stats-base-nanmax-by",1DT -"@stdlib/stats/base/nanmax",1DU -"@stdlib/stats-base-nanmax",1DV -"@stdlib/stats/base/nanmaxabs",1DW -"@stdlib/stats-base-nanmaxabs",1DX -"@stdlib/stats/base/nanmean",1DY -"@stdlib/stats-base-nanmean",1DZ -"@stdlib/stats/base/nanmeanors",1Da -"@stdlib/stats-base-nanmeanors",1Db -"@stdlib/stats/base/nanmeanpn",1Dc -"@stdlib/stats-base-nanmeanpn",1Dd -"@stdlib/stats/base/nanmeanwd",1De -"@stdlib/stats-base-nanmeanwd",1Df -"@stdlib/stats/base/nanmin-by",1Dg -"@stdlib/stats-base-nanmin-by",1Dh -"@stdlib/stats/base/nanmin",1Di -"@stdlib/stats-base-nanmin",1Dj -"@stdlib/stats/base/nanminabs",1Dk -"@stdlib/stats-base-nanminabs",1Dl -"@stdlib/stats/base/nanmskmax",1Dm -"@stdlib/stats-base-nanmskmax",1Dn -"@stdlib/stats/base/nanmskmin",1Do -"@stdlib/stats-base-nanmskmin",1Dp -"@stdlib/stats/base/nanmskrange",1Dq -"@stdlib/stats-base-nanmskrange",1Dr -"@stdlib/stats/base/nanrange-by",1Ds -"@stdlib/stats-base-nanrange-by",1Dt -"@stdlib/stats/base/nanrange",1Du -"@stdlib/stats-base-nanrange",1Dv -"@stdlib/stats/base/nanstdev",1Dw -"@stdlib/stats-base-nanstdev",1Dx -"@stdlib/stats/base/nanstdevch",1Dy -"@stdlib/stats-base-nanstdevch",1Dz -"@stdlib/stats/base/nanstdevpn",1E0 -"@stdlib/stats-base-nanstdevpn",1E1 -"@stdlib/stats/base/nanstdevtk",1E2 -"@stdlib/stats-base-nanstdevtk",1E3 -"@stdlib/stats/base/nanstdevwd",1E4 -"@stdlib/stats-base-nanstdevwd",1E5 -"@stdlib/stats/base/nanstdevyc",1E6 -"@stdlib/stats-base-nanstdevyc",1E7 -"@stdlib/stats/base/nanvariance",1E8 -"@stdlib/stats-base-nanvariance",1E9 -"@stdlib/stats/base/nanvariancech",1EA -"@stdlib/stats-base-nanvariancech",1EB -"@stdlib/stats/base/nanvariancepn",1EC -"@stdlib/stats-base-nanvariancepn",1ED -"@stdlib/stats/base/nanvariancetk",1EE -"@stdlib/stats-base-nanvariancetk",1EF -"@stdlib/stats/base/nanvariancewd",1EG -"@stdlib/stats-base-nanvariancewd",1EH -"@stdlib/stats/base/nanvarianceyc",1EI -"@stdlib/stats-base-nanvarianceyc",1EJ -"@stdlib/stats/base",1EK -"@stdlib/stats-base",1EL -"@stdlib/stats/base/range-by",1EM -"@stdlib/stats-base-range-by",1EN -"@stdlib/stats/base/range",1EO -"@stdlib/stats-base-range",1EP -"@stdlib/stats/base/scumax",1EQ -"@stdlib/stats-base-scumax",1ER -"@stdlib/stats/base/scumaxabs",1ES -"@stdlib/stats-base-scumaxabs",1ET -"@stdlib/stats/base/scumin",1EU -"@stdlib/stats-base-scumin",1EV -"@stdlib/stats/base/scuminabs",1EW -"@stdlib/stats-base-scuminabs",1EX -"@stdlib/stats/base/sdsmean",1EY -"@stdlib/stats-base-sdsmean",1EZ -"@stdlib/stats/base/sdsmeanors",1Ea -"@stdlib/stats-base-sdsmeanors",1Eb -"@stdlib/stats/base/sdsnanmean",1Ec -"@stdlib/stats-base-sdsnanmean",1Ed -"@stdlib/stats/base/sdsnanmeanors",1Ee -"@stdlib/stats-base-sdsnanmeanors",1Ef -"@stdlib/stats/base/smax",1Eg -"@stdlib/stats-base-smax",1Eh -"@stdlib/stats/base/smaxabs",1Ei -"@stdlib/stats-base-smaxabs",1Ej -"@stdlib/stats/base/smaxabssorted",1Ek -"@stdlib/stats-base-smaxabssorted",1El -"@stdlib/stats/base/smaxsorted",1Em -"@stdlib/stats-base-smaxsorted",1En -"@stdlib/stats/base/smean",1Eo -"@stdlib/stats-base-smean",1Ep -"@stdlib/stats/base/smeankbn",1Eq -"@stdlib/stats-base-smeankbn",1Er -"@stdlib/stats/base/smeankbn2",1Es -"@stdlib/stats-base-smeankbn2",1Et -"@stdlib/stats/base/smeanli",1Eu -"@stdlib/stats-base-smeanli",1Ev -"@stdlib/stats/base/smeanlipw",1Ew -"@stdlib/stats-base-smeanlipw",1Ex -"@stdlib/stats/base/smeanors",1Ey -"@stdlib/stats-base-smeanors",1Ez -"@stdlib/stats/base/smeanpn",1F0 -"@stdlib/stats-base-smeanpn",1F1 -"@stdlib/stats/base/smeanpw",1F2 -"@stdlib/stats-base-smeanpw",1F3 -"@stdlib/stats/base/smeanwd",1F4 -"@stdlib/stats-base-smeanwd",1F5 -"@stdlib/stats/base/smediansorted",1F6 -"@stdlib/stats-base-smediansorted",1F7 -"@stdlib/stats/base/smidrange",1F8 -"@stdlib/stats-base-smidrange",1F9 -"@stdlib/stats/base/smin",1FA -"@stdlib/stats-base-smin",1FB -"@stdlib/stats/base/sminabs",1FC -"@stdlib/stats-base-sminabs",1FD -"@stdlib/stats/base/sminsorted",1FE -"@stdlib/stats-base-sminsorted",1FF -"@stdlib/stats/base/smskmax",1FG -"@stdlib/stats-base-smskmax",1FH -"@stdlib/stats/base/smskmin",1FI -"@stdlib/stats-base-smskmin",1FJ -"@stdlib/stats/base/smskrange",1FK -"@stdlib/stats-base-smskrange",1FL -"@stdlib/stats/base/snanmax",1FM -"@stdlib/stats-base-snanmax",1FN -"@stdlib/stats/base/snanmaxabs",1FO -"@stdlib/stats-base-snanmaxabs",1FP -"@stdlib/stats/base/snanmean",1FQ -"@stdlib/stats-base-snanmean",1FR -"@stdlib/stats/base/snanmeanors",1FS -"@stdlib/stats-base-snanmeanors",1FT -"@stdlib/stats/base/snanmeanpn",1FU -"@stdlib/stats-base-snanmeanpn",1FV -"@stdlib/stats/base/snanmeanwd",1FW -"@stdlib/stats-base-snanmeanwd",1FX -"@stdlib/stats/base/snanmin",1FY -"@stdlib/stats-base-snanmin",1FZ -"@stdlib/stats/base/snanminabs",1Fa -"@stdlib/stats-base-snanminabs",1Fb -"@stdlib/stats/base/snanmskmax",1Fc -"@stdlib/stats-base-snanmskmax",1Fd -"@stdlib/stats/base/snanmskmin",1Fe -"@stdlib/stats-base-snanmskmin",1Ff -"@stdlib/stats/base/snanmskrange",1Fg -"@stdlib/stats-base-snanmskrange",1Fh -"@stdlib/stats/base/snanrange",1Fi -"@stdlib/stats-base-snanrange",1Fj -"@stdlib/stats/base/snanstdev",1Fk -"@stdlib/stats-base-snanstdev",1Fl -"@stdlib/stats/base/snanstdevch",1Fm -"@stdlib/stats-base-snanstdevch",1Fn -"@stdlib/stats/base/snanstdevpn",1Fo -"@stdlib/stats-base-snanstdevpn",1Fp -"@stdlib/stats/base/snanstdevtk",1Fq -"@stdlib/stats-base-snanstdevtk",1Fr -"@stdlib/stats/base/snanstdevwd",1Fs -"@stdlib/stats-base-snanstdevwd",1Ft -"@stdlib/stats/base/snanstdevyc",1Fu -"@stdlib/stats-base-snanstdevyc",1Fv -"@stdlib/stats/base/snanvariance",1Fw -"@stdlib/stats-base-snanvariance",1Fx -"@stdlib/stats/base/snanvariancech",1Fy -"@stdlib/stats-base-snanvariancech",1Fz -"@stdlib/stats/base/snanvariancepn",1G0 -"@stdlib/stats-base-snanvariancepn",1G1 -"@stdlib/stats/base/snanvariancetk",1G2 -"@stdlib/stats-base-snanvariancetk",1G3 -"@stdlib/stats/base/snanvariancewd",1G4 -"@stdlib/stats-base-snanvariancewd",1G5 -"@stdlib/stats/base/snanvarianceyc",1G6 -"@stdlib/stats-base-snanvarianceyc",1G7 -"@stdlib/stats/base/srange",1G8 -"@stdlib/stats-base-srange",1G9 -"@stdlib/stats/base/sstdev",1GA -"@stdlib/stats-base-sstdev",1GB -"@stdlib/stats/base/sstdevch",1GC -"@stdlib/stats-base-sstdevch",1GD -"@stdlib/stats/base/sstdevpn",1GE -"@stdlib/stats-base-sstdevpn",1GF -"@stdlib/stats/base/sstdevtk",1GG -"@stdlib/stats-base-sstdevtk",1GH -"@stdlib/stats/base/sstdevwd",1GI -"@stdlib/stats-base-sstdevwd",1GJ -"@stdlib/stats/base/sstdevyc",1GK -"@stdlib/stats-base-sstdevyc",1GL -"@stdlib/stats/base/stdev",1GM -"@stdlib/stats-base-stdev",1GN -"@stdlib/stats/base/stdevch",1GO -"@stdlib/stats-base-stdevch",1GP -"@stdlib/stats/base/stdevpn",1GQ -"@stdlib/stats-base-stdevpn",1GR -"@stdlib/stats/base/stdevtk",1GS -"@stdlib/stats-base-stdevtk",1GT -"@stdlib/stats/base/stdevwd",1GU -"@stdlib/stats-base-stdevwd",1GV -"@stdlib/stats/base/stdevyc",1GW -"@stdlib/stats-base-stdevyc",1GX -"@stdlib/stats/base/svariance",1GY -"@stdlib/stats-base-svariance",1GZ -"@stdlib/stats/base/svariancech",1Ga -"@stdlib/stats-base-svariancech",1Gb -"@stdlib/stats/base/svariancepn",1Gc -"@stdlib/stats-base-svariancepn",1Gd -"@stdlib/stats/base/svariancetk",1Ge -"@stdlib/stats-base-svariancetk",1Gf -"@stdlib/stats/base/svariancewd",1Gg -"@stdlib/stats-base-svariancewd",1Gh -"@stdlib/stats/base/svarianceyc",1Gi -"@stdlib/stats-base-svarianceyc",1Gj -"@stdlib/stats/base/variance",1Gk -"@stdlib/stats-base-variance",1Gl -"@stdlib/stats/base/variancech",1Gm -"@stdlib/stats-base-variancech",1Gn -"@stdlib/stats/base/variancepn",1Go -"@stdlib/stats-base-variancepn",1Gp -"@stdlib/stats/base/variancetk",1Gq -"@stdlib/stats-base-variancetk",1Gr -"@stdlib/stats/base/variancewd",1Gs -"@stdlib/stats-base-variancewd",1Gt -"@stdlib/stats/base/varianceyc",1Gu -"@stdlib/stats-base-varianceyc",1Gv -"@stdlib/stats/binomial-test",1Gw -"@stdlib/stats-binomial-test",1Gx -"@stdlib/stats/chi2gof",1Gy -"@stdlib/stats-chi2gof",1Gz -"@stdlib/stats/chi2test",1H0 -"@stdlib/stats-chi2test",1H1 -"@stdlib/stats/fligner-test",1H2 -"@stdlib/stats-fligner-test",1H3 -"@stdlib/stats/incr/apcorr",1H4 -"@stdlib/stats-incr-apcorr",1H5 -"@stdlib/stats/incr/count",1H6 -"@stdlib/stats-incr-count",1H7 -"@stdlib/stats/incr/covariance",1H8 -"@stdlib/stats-incr-covariance",1H9 -"@stdlib/stats/incr/covmat",1HA -"@stdlib/stats-incr-covmat",1HB -"@stdlib/stats/incr/cv",1HC -"@stdlib/stats-incr-cv",1HD -"@stdlib/stats/incr/ewmean",1HE -"@stdlib/stats-incr-ewmean",1HF -"@stdlib/stats/incr/ewstdev",1HG -"@stdlib/stats-incr-ewstdev",1HH -"@stdlib/stats/incr/ewvariance",1HI -"@stdlib/stats-incr-ewvariance",1HJ -"@stdlib/stats/incr/gmean",1HK -"@stdlib/stats-incr-gmean",1HL -"@stdlib/stats/incr/grubbs",1HM -"@stdlib/stats-incr-grubbs",1HN -"@stdlib/stats/incr/hmean",1HO -"@stdlib/stats-incr-hmean",1HP -"@stdlib/stats/incr/kurtosis",1HQ -"@stdlib/stats-incr-kurtosis",1HR -"@stdlib/stats/incr/maape",1HS -"@stdlib/stats-incr-maape",1HT -"@stdlib/stats/incr/mae",1HU -"@stdlib/stats-incr-mae",1HV -"@stdlib/stats/incr/mapcorr",1HW -"@stdlib/stats-incr-mapcorr",1HX -"@stdlib/stats/incr/mape",1HY -"@stdlib/stats-incr-mape",1HZ -"@stdlib/stats/incr/max",1Ha -"@stdlib/stats-incr-max",1Hb -"@stdlib/stats/incr/maxabs",1Hc -"@stdlib/stats-incr-maxabs",1Hd -"@stdlib/stats/incr/mcovariance",1He -"@stdlib/stats-incr-mcovariance",1Hf -"@stdlib/stats/incr/mcv",1Hg -"@stdlib/stats-incr-mcv",1Hh -"@stdlib/stats/incr/mda",1Hi -"@stdlib/stats-incr-mda",1Hj -"@stdlib/stats/incr/me",1Hk -"@stdlib/stats-incr-me",1Hl -"@stdlib/stats/incr/mean",1Hm -"@stdlib/stats-incr-mean",1Hn -"@stdlib/stats/incr/meanabs",1Ho -"@stdlib/stats-incr-meanabs",1Hp -"@stdlib/stats/incr/meanabs2",1Hq -"@stdlib/stats-incr-meanabs2",1Hr -"@stdlib/stats/incr/meanstdev",1Hs -"@stdlib/stats-incr-meanstdev",1Ht -"@stdlib/stats/incr/meanvar",1Hu -"@stdlib/stats-incr-meanvar",1Hv -"@stdlib/stats/incr/mgmean",1Hw -"@stdlib/stats-incr-mgmean",1Hx -"@stdlib/stats/incr/mgrubbs",1Hy -"@stdlib/stats-incr-mgrubbs",1Hz -"@stdlib/stats/incr/mhmean",1I0 -"@stdlib/stats-incr-mhmean",1I1 -"@stdlib/stats/incr/midrange",1I2 -"@stdlib/stats-incr-midrange",1I3 -"@stdlib/stats/incr/min",1I4 -"@stdlib/stats-incr-min",1I5 -"@stdlib/stats/incr/minabs",1I6 -"@stdlib/stats-incr-minabs",1I7 -"@stdlib/stats/incr/minmax",1I8 -"@stdlib/stats-incr-minmax",1I9 -"@stdlib/stats/incr/minmaxabs",1IA -"@stdlib/stats-incr-minmaxabs",1IB -"@stdlib/stats/incr/mmaape",1IC -"@stdlib/stats-incr-mmaape",1ID -"@stdlib/stats/incr/mmae",1IE -"@stdlib/stats-incr-mmae",1IF -"@stdlib/stats/incr/mmape",1IG -"@stdlib/stats-incr-mmape",1IH -"@stdlib/stats/incr/mmax",1II -"@stdlib/stats-incr-mmax",1IJ -"@stdlib/stats/incr/mmaxabs",1IK -"@stdlib/stats-incr-mmaxabs",1IL -"@stdlib/stats/incr/mmda",1IM -"@stdlib/stats-incr-mmda",1IN -"@stdlib/stats/incr/mme",1IO -"@stdlib/stats-incr-mme",1IP -"@stdlib/stats/incr/mmean",1IQ -"@stdlib/stats-incr-mmean",1IR -"@stdlib/stats/incr/mmeanabs",1IS -"@stdlib/stats-incr-mmeanabs",1IT -"@stdlib/stats/incr/mmeanabs2",1IU -"@stdlib/stats-incr-mmeanabs2",1IV -"@stdlib/stats/incr/mmeanstdev",1IW -"@stdlib/stats-incr-mmeanstdev",1IX -"@stdlib/stats/incr/mmeanvar",1IY -"@stdlib/stats-incr-mmeanvar",1IZ -"@stdlib/stats/incr/mmidrange",1Ia -"@stdlib/stats-incr-mmidrange",1Ib -"@stdlib/stats/incr/mmin",1Ic -"@stdlib/stats-incr-mmin",1Id -"@stdlib/stats/incr/mminabs",1Ie -"@stdlib/stats-incr-mminabs",1If -"@stdlib/stats/incr/mminmax",1Ig -"@stdlib/stats-incr-mminmax",1Ih -"@stdlib/stats/incr/mminmaxabs",1Ii -"@stdlib/stats-incr-mminmaxabs",1Ij -"@stdlib/stats/incr/mmpe",1Ik -"@stdlib/stats-incr-mmpe",1Il -"@stdlib/stats/incr/mmse",1Im -"@stdlib/stats-incr-mmse",1In -"@stdlib/stats/incr/mpcorr",1Io -"@stdlib/stats-incr-mpcorr",1Ip -"@stdlib/stats/incr/mpcorr2",1Iq -"@stdlib/stats-incr-mpcorr2",1Ir -"@stdlib/stats/incr/mpcorrdist",1Is -"@stdlib/stats-incr-mpcorrdist",1It -"@stdlib/stats/incr/mpe",1Iu -"@stdlib/stats-incr-mpe",1Iv -"@stdlib/stats/incr/mprod",1Iw -"@stdlib/stats-incr-mprod",1Ix -"@stdlib/stats/incr/mrange",1Iy -"@stdlib/stats-incr-mrange",1Iz -"@stdlib/stats/incr/mrmse",1J0 -"@stdlib/stats-incr-mrmse",1J1 -"@stdlib/stats/incr/mrss",1J2 -"@stdlib/stats-incr-mrss",1J3 -"@stdlib/stats/incr/mse",1J4 -"@stdlib/stats-incr-mse",1J5 -"@stdlib/stats/incr/mstdev",1J6 -"@stdlib/stats-incr-mstdev",1J7 -"@stdlib/stats/incr/msum",1J8 -"@stdlib/stats-incr-msum",1J9 -"@stdlib/stats/incr/msumabs",1JA -"@stdlib/stats-incr-msumabs",1JB -"@stdlib/stats/incr/msumabs2",1JC -"@stdlib/stats-incr-msumabs2",1JD -"@stdlib/stats/incr/msummary",1JE -"@stdlib/stats-incr-msummary",1JF -"@stdlib/stats/incr/msumprod",1JG -"@stdlib/stats-incr-msumprod",1JH -"@stdlib/stats/incr/mvariance",1JI -"@stdlib/stats-incr-mvariance",1JJ -"@stdlib/stats/incr/mvmr",1JK -"@stdlib/stats-incr-mvmr",1JL -"@stdlib/stats/incr/nancount",1JM -"@stdlib/stats-incr-nancount",1JN -"@stdlib/stats/incr/nansum",1JO -"@stdlib/stats-incr-nansum",1JP -"@stdlib/stats/incr/nansumabs",1JQ -"@stdlib/stats-incr-nansumabs",1JR -"@stdlib/stats/incr/nansumabs2",1JS -"@stdlib/stats-incr-nansumabs2",1JT -"@stdlib/stats/incr",1JU -"@stdlib/stats-incr",1JV -"@stdlib/stats/incr/pcorr",1JW -"@stdlib/stats-incr-pcorr",1JX -"@stdlib/stats/incr/pcorr2",1JY -"@stdlib/stats-incr-pcorr2",1JZ -"@stdlib/stats/incr/pcorrdist",1Ja -"@stdlib/stats-incr-pcorrdist",1Jb -"@stdlib/stats/incr/pcorrdistmat",1Jc -"@stdlib/stats-incr-pcorrdistmat",1Jd -"@stdlib/stats/incr/pcorrmat",1Je -"@stdlib/stats-incr-pcorrmat",1Jf -"@stdlib/stats/incr/prod",1Jg -"@stdlib/stats-incr-prod",1Jh -"@stdlib/stats/incr/range",1Ji -"@stdlib/stats-incr-range",1Jj -"@stdlib/stats/incr/rmse",1Jk -"@stdlib/stats-incr-rmse",1Jl -"@stdlib/stats/incr/rss",1Jm -"@stdlib/stats-incr-rss",1Jn -"@stdlib/stats/incr/skewness",1Jo -"@stdlib/stats-incr-skewness",1Jp -"@stdlib/stats/incr/stdev",1Jq -"@stdlib/stats-incr-stdev",1Jr -"@stdlib/stats/incr/sum",1Js -"@stdlib/stats-incr-sum",1Jt -"@stdlib/stats/incr/sumabs",1Ju -"@stdlib/stats-incr-sumabs",1Jv -"@stdlib/stats/incr/sumabs2",1Jw -"@stdlib/stats-incr-sumabs2",1Jx -"@stdlib/stats/incr/summary",1Jy -"@stdlib/stats-incr-summary",1Jz -"@stdlib/stats/incr/sumprod",1K0 -"@stdlib/stats-incr-sumprod",1K1 -"@stdlib/stats/incr/variance",1K2 -"@stdlib/stats-incr-variance",1K3 -"@stdlib/stats/incr/vmr",1K4 -"@stdlib/stats-incr-vmr",1K5 -"@stdlib/stats/incr/wmean",1K6 -"@stdlib/stats-incr-wmean",1K7 -"@stdlib/stats/iter/cugmean",1K8 -"@stdlib/stats-iter-cugmean",1K9 -"@stdlib/stats/iter/cuhmean",1KA -"@stdlib/stats-iter-cuhmean",1KB -"@stdlib/stats/iter/cumax",1KC -"@stdlib/stats-iter-cumax",1KD -"@stdlib/stats/iter/cumaxabs",1KE -"@stdlib/stats-iter-cumaxabs",1KF -"@stdlib/stats/iter/cumean",1KG -"@stdlib/stats-iter-cumean",1KH -"@stdlib/stats/iter/cumeanabs",1KI -"@stdlib/stats-iter-cumeanabs",1KJ -"@stdlib/stats/iter/cumeanabs2",1KK -"@stdlib/stats-iter-cumeanabs2",1KL -"@stdlib/stats/iter/cumidrange",1KM -"@stdlib/stats-iter-cumidrange",1KN -"@stdlib/stats/iter/cumin",1KO -"@stdlib/stats-iter-cumin",1KP -"@stdlib/stats/iter/cuminabs",1KQ -"@stdlib/stats-iter-cuminabs",1KR -"@stdlib/stats/iter/cuprod",1KS -"@stdlib/stats-iter-cuprod",1KT -"@stdlib/stats/iter/curange",1KU -"@stdlib/stats-iter-curange",1KV -"@stdlib/stats/iter/cusum",1KW -"@stdlib/stats-iter-cusum",1KX -"@stdlib/stats/iter/cusumabs",1KY -"@stdlib/stats-iter-cusumabs",1KZ -"@stdlib/stats/iter/cusumabs2",1Ka -"@stdlib/stats-iter-cusumabs2",1Kb -"@stdlib/stats/iter/max",1Kc -"@stdlib/stats-iter-max",1Kd -"@stdlib/stats/iter/maxabs",1Ke -"@stdlib/stats-iter-maxabs",1Kf -"@stdlib/stats/iter/mean",1Kg -"@stdlib/stats-iter-mean",1Kh -"@stdlib/stats/iter/meanabs",1Ki -"@stdlib/stats-iter-meanabs",1Kj -"@stdlib/stats/iter/meanabs2",1Kk -"@stdlib/stats-iter-meanabs2",1Kl -"@stdlib/stats/iter/midrange",1Km -"@stdlib/stats-iter-midrange",1Kn -"@stdlib/stats/iter/min",1Ko -"@stdlib/stats-iter-min",1Kp -"@stdlib/stats/iter/minabs",1Kq -"@stdlib/stats-iter-minabs",1Kr -"@stdlib/stats/iter/mmax",1Ks -"@stdlib/stats-iter-mmax",1Kt -"@stdlib/stats/iter/mmaxabs",1Ku -"@stdlib/stats-iter-mmaxabs",1Kv -"@stdlib/stats/iter/mmean",1Kw -"@stdlib/stats-iter-mmean",1Kx -"@stdlib/stats/iter/mmeanabs",1Ky -"@stdlib/stats-iter-mmeanabs",1Kz -"@stdlib/stats/iter/mmeanabs2",1L0 -"@stdlib/stats-iter-mmeanabs2",1L1 -"@stdlib/stats/iter/mmidrange",1L2 -"@stdlib/stats-iter-mmidrange",1L3 -"@stdlib/stats/iter/mmin",1L4 -"@stdlib/stats-iter-mmin",1L5 -"@stdlib/stats/iter/mminabs",1L6 -"@stdlib/stats-iter-mminabs",1L7 -"@stdlib/stats/iter/mprod",1L8 -"@stdlib/stats-iter-mprod",1L9 -"@stdlib/stats/iter/mrange",1LA -"@stdlib/stats-iter-mrange",1LB -"@stdlib/stats/iter/msum",1LC -"@stdlib/stats-iter-msum",1LD -"@stdlib/stats/iter/msumabs",1LE -"@stdlib/stats-iter-msumabs",1LF -"@stdlib/stats/iter/msumabs2",1LG -"@stdlib/stats-iter-msumabs2",1LH -"@stdlib/stats/iter",1LI -"@stdlib/stats-iter",1LJ -"@stdlib/stats/iter/prod",1LK -"@stdlib/stats-iter-prod",1LL -"@stdlib/stats/iter/range",1LM -"@stdlib/stats-iter-range",1LN -"@stdlib/stats/iter/stdev",1LO -"@stdlib/stats-iter-stdev",1LP -"@stdlib/stats/iter/sum",1LQ -"@stdlib/stats-iter-sum",1LR -"@stdlib/stats/iter/sumabs",1LS -"@stdlib/stats-iter-sumabs",1LT -"@stdlib/stats/iter/sumabs2",1LU -"@stdlib/stats-iter-sumabs2",1LV -"@stdlib/stats/iter/variance",1LW -"@stdlib/stats-iter-variance",1LX -"@stdlib/stats/kde2d",1LY -"@stdlib/stats-kde2d",1LZ -"@stdlib/stats/kruskal-test",1La -"@stdlib/stats-kruskal-test",1Lb -"@stdlib/stats/kstest",1Lc -"@stdlib/stats-kstest",1Ld -"@stdlib/stats/levene-test",1Le -"@stdlib/stats-levene-test",1Lf -"@stdlib/stats/lowess",1Lg -"@stdlib/stats-lowess",1Lh -"@stdlib/stats",1Lj -"@stdlib/stats/padjust",1Lk -"@stdlib/stats-padjust",1Ll -"@stdlib/stats/pcorrtest",1Lm -"@stdlib/stats-pcorrtest",1Ln -"@stdlib/stats/ranks",1Lo -"@stdlib/stats-ranks",1Lp -"@stdlib/stats/ttest",1Lq -"@stdlib/stats-ttest",1Lr -"@stdlib/stats/ttest2",1Ls -"@stdlib/stats-ttest2",1Lt -"@stdlib/stats/vartest",1Lu -"@stdlib/stats-vartest",1Lv -"@stdlib/stats/wilcoxon",1Lw -"@stdlib/stats-wilcoxon",1Lx -"@stdlib/stats/ztest",1Ly -"@stdlib/stats-ztest",1Lz -"@stdlib/stats/ztest2",1M0 -"@stdlib/stats-ztest2",1M1 -"@stdlib/streams/node/debug-sink",1M2 -"@stdlib/streams-node-debug-sink",1M3 -"@stdlib/streams/node/debug",1M4 -"@stdlib/streams-node-debug",1M5 -"@stdlib/streams/node/empty",1M6 -"@stdlib/streams-node-empty",1M7 -"@stdlib/streams/node/from-array",1M8 -"@stdlib/streams-node-from-array",1M9 -"@stdlib/streams/node/from-circular-array",1MA -"@stdlib/streams-node-from-circular-array",1MB -"@stdlib/streams/node/from-constant",1MC -"@stdlib/streams-node-from-constant",1MD -"@stdlib/streams/node/from-iterator",1ME -"@stdlib/streams-node-from-iterator",1MF -"@stdlib/streams/node/from-strided-array",1MG -"@stdlib/streams-node-from-strided-array",1MH -"@stdlib/streams/node/inspect-sink",1MI -"@stdlib/streams-node-inspect-sink",1MJ -"@stdlib/streams/node/inspect",1MK -"@stdlib/streams-node-inspect",1ML -"@stdlib/streams/node/join",1MM -"@stdlib/streams-node-join",1MN -"@stdlib/streams/node",1MO -"@stdlib/streams-node",1MP -"@stdlib/streams/node/split",1MQ -"@stdlib/streams-node-split",1MR -"@stdlib/streams/node/stderr",1MS -"@stdlib/streams-node-stderr",1MT -"@stdlib/streams/node/stdin",1MU -"@stdlib/streams-node-stdin",1MV -"@stdlib/streams/node/stdout",1MW -"@stdlib/streams-node-stdout",1MX -"@stdlib/streams/node/transform",1MY -"@stdlib/streams-node-transform",1MZ -"@stdlib/streams",1Mb -"@stdlib/strided/base/binary-addon-dispatch",1Mc -"@stdlib/strided-base-binary-addon-dispatch",1Md -"@stdlib/strided/base/binary-dtype-signatures",1Me -"@stdlib/strided-base-binary-dtype-signatures",1Mf -"@stdlib/strided/base/binary-signature-callbacks",1Mg -"@stdlib/strided-base-binary-signature-callbacks",1Mh -"@stdlib/strided/base/binary",1Mi -"@stdlib/strided-base-binary",1Mj -"@stdlib/strided/base/cmap",1Mk -"@stdlib/strided-base-cmap",1Ml -"@stdlib/strided/base/dmap",1Mm -"@stdlib/strided-base-dmap",1Mn -"@stdlib/strided/base/dmap2",1Mo -"@stdlib/strided-base-dmap2",1Mp -"@stdlib/strided/base/dmskmap",1Mq -"@stdlib/strided-base-dmskmap",1Mr -"@stdlib/strided/base/dmskmap2",1Ms -"@stdlib/strided-base-dmskmap2",1Mt -"@stdlib/strided/base/dtype-enum2str",1Mu -"@stdlib/strided-base-dtype-enum2str",1Mv -"@stdlib/strided/base/dtype-resolve-enum",1Mw -"@stdlib/strided-base-dtype-resolve-enum",1Mx -"@stdlib/strided/base/dtype-resolve-str",1My -"@stdlib/strided-base-dtype-resolve-str",1Mz -"@stdlib/strided/base/dtype-str2enum",1N0 -"@stdlib/strided-base-dtype-str2enum",1N1 -"@stdlib/strided/base/function-object",1N2 -"@stdlib/strided-base-function-object",1N3 -"@stdlib/strided/base/map-by",1N4 -"@stdlib/strided-base-map-by",1N5 -"@stdlib/strided/base/map-by2",1N6 -"@stdlib/strided-base-map-by2",1N7 -"@stdlib/strided/base/max-view-buffer-index",1N8 -"@stdlib/strided-base-max-view-buffer-index",1N9 -"@stdlib/strided/base/meta-data-props",1NA -"@stdlib/strided-base-meta-data-props",1NB -"@stdlib/strided/base/min-view-buffer-index",1NC -"@stdlib/strided-base-min-view-buffer-index",1ND -"@stdlib/strided/base/mskunary",1NE -"@stdlib/strided-base-mskunary",1NF -"@stdlib/strided/base/nullary",1NG -"@stdlib/strided-base-nullary",1NH -"@stdlib/strided/base/offset-view",1NI -"@stdlib/strided-base-offset-view",1NJ -"@stdlib/strided/base",1NK -"@stdlib/strided-base",1NL -"@stdlib/strided/base/quaternary",1NM -"@stdlib/strided-base-quaternary",1NN -"@stdlib/strided/base/quinary",1NO -"@stdlib/strided-base-quinary",1NP -"@stdlib/strided/base/reinterpret-complex128",1NQ -"@stdlib/strided-base-reinterpret-complex128",1NR -"@stdlib/strided/base/reinterpret-complex64",1NS -"@stdlib/strided-base-reinterpret-complex64",1NT -"@stdlib/strided/base/smap",1NU -"@stdlib/strided-base-smap",1NV -"@stdlib/strided/base/smap2",1NW -"@stdlib/strided-base-smap2",1NX -"@stdlib/strided/base/smskmap",1NY -"@stdlib/strided-base-smskmap",1NZ -"@stdlib/strided/base/smskmap2",1Na -"@stdlib/strided-base-smskmap2",1Nb -"@stdlib/strided/base/ternary",1Nc -"@stdlib/strided-base-ternary",1Nd -"@stdlib/strided/base/unary-addon-dispatch",1Ne -"@stdlib/strided-base-unary-addon-dispatch",1Nf -"@stdlib/strided/base/unary",1Ng -"@stdlib/strided-base-unary",1Nh -"@stdlib/strided/base/zmap",1Ni -"@stdlib/strided-base-zmap",1Nj -"@stdlib/strided/common",1Nk -"@stdlib/strided-common",1Nl -"@stdlib/strided/dispatch",1Nm -"@stdlib/strided-dispatch",1Nn -"@stdlib/strided/dtypes",1No -"@stdlib/strided-dtypes",1Np -"@stdlib/strided/napi/addon-arguments",1Nq -"@stdlib/strided-napi-addon-arguments",1Nr -"@stdlib/strided/napi/binary",1Ns -"@stdlib/strided-napi-binary",1Nt -"@stdlib/strided/napi/cmap",1Nu -"@stdlib/strided-napi-cmap",1Nv -"@stdlib/strided/napi/dmap",1Nw -"@stdlib/strided-napi-dmap",1Nx -"@stdlib/strided/napi/dmap2",1Ny -"@stdlib/strided-napi-dmap2",1Nz -"@stdlib/strided/napi/dmskmap",1O0 -"@stdlib/strided-napi-dmskmap",1O1 -"@stdlib/strided/napi/dmskmap2",1O2 -"@stdlib/strided-napi-dmskmap2",1O3 -"@stdlib/strided/napi/mskunary",1O4 -"@stdlib/strided-napi-mskunary",1O5 -"@stdlib/strided/napi",1O6 -"@stdlib/strided-napi",1O7 -"@stdlib/strided/napi/smap",1O8 -"@stdlib/strided-napi-smap",1O9 -"@stdlib/strided/napi/smap2",1OA -"@stdlib/strided-napi-smap2",1OB -"@stdlib/strided/napi/smskmap",1OC -"@stdlib/strided-napi-smskmap",1OD -"@stdlib/strided/napi/smskmap2",1OE -"@stdlib/strided-napi-smskmap2",1OF -"@stdlib/strided/napi/unary",1OG -"@stdlib/strided-napi-unary",1OH -"@stdlib/strided/napi/zmap",1OI -"@stdlib/strided-napi-zmap",1OJ -"@stdlib/strided",1OL -"@stdlib/string/acronym",1OM -"@stdlib/string-acronym",1ON -"@stdlib/string/base/format-interpolate",1OO -"@stdlib/string-base-format-interpolate",1OP -"@stdlib/string/base/format-tokenize",1OQ -"@stdlib/string-base-format-tokenize",1OR -"@stdlib/string/base",1OS -"@stdlib/string-base",1OT -"@stdlib/string/camelcase",1OU -"@stdlib/string-camelcase",1OV -"@stdlib/string/capitalize",1OW -"@stdlib/string-capitalize",1OX -"@stdlib/string/code-point-at",1OY -"@stdlib/string-code-point-at",1OZ -"@stdlib/string/constantcase",1Oa -"@stdlib/string-constantcase",1Ob -"@stdlib/string/ends-with",1Oc -"@stdlib/string-ends-with",1Od -"@stdlib/string/format",1Oe -"@stdlib/string-format",1Of -"@stdlib/string/from-code-point",1Og -"@stdlib/string-from-code-point",1Oh -"@stdlib/string/kebabcase",1Oi -"@stdlib/string-kebabcase",1Oj -"@stdlib/string/left-pad",1Ok -"@stdlib/string-left-pad",1Ol -"@stdlib/string/left-trim-n",1Om -"@stdlib/string-left-trim-n",1On -"@stdlib/string/left-trim",1Oo -"@stdlib/string-left-trim",1Op -"@stdlib/string/lowercase",1Oq -"@stdlib/string-lowercase",1Or -"@stdlib/string/next-grapheme-cluster-break",1Os -"@stdlib/string-next-grapheme-cluster-break",1Ot -"@stdlib/string/num-grapheme-clusters",1Ou -"@stdlib/string-num-grapheme-clusters",1Ov -"@stdlib/string",1Ox -"@stdlib/string/pad",1Oy -"@stdlib/string-pad",1Oz -"@stdlib/string/pascalcase",1P0 -"@stdlib/string-pascalcase",1P1 -"@stdlib/string/percent-encode",1P2 -"@stdlib/string-percent-encode",1P3 -"@stdlib/string/prev-grapheme-cluster-break",1P4 -"@stdlib/string-prev-grapheme-cluster-break",1P5 -"@stdlib/string/remove-first",1P6 -"@stdlib/string-remove-first",1P7 -"@stdlib/string/remove-last",1P8 -"@stdlib/string-remove-last",1P9 -"@stdlib/string/remove-punctuation",1PA -"@stdlib/string-remove-punctuation",1PB -"@stdlib/string/remove-utf8-bom",1PC -"@stdlib/string-remove-utf8-bom",1PD -"@stdlib/string/remove-words",1PE -"@stdlib/string-remove-words",1PF -"@stdlib/string/repeat",1PG -"@stdlib/string-repeat",1PH -"@stdlib/string/replace",1PI -"@stdlib/string-replace",1PJ -"@stdlib/string/reverse",1PK -"@stdlib/string-reverse",1PL -"@stdlib/string/right-pad",1PM -"@stdlib/string-right-pad",1PN -"@stdlib/string/right-trim-n",1PO -"@stdlib/string-right-trim-n",1PP -"@stdlib/string/right-trim",1PQ -"@stdlib/string-right-trim",1PR -"@stdlib/string/snakecase",1PS -"@stdlib/string-snakecase",1PT -"@stdlib/string/split-grapheme-clusters",1PU -"@stdlib/string-split-grapheme-clusters",1PV -"@stdlib/string/startcase",1PW -"@stdlib/string-startcase",1PX -"@stdlib/string/starts-with",1PY -"@stdlib/string-starts-with",1PZ -"@stdlib/string/substring-after-last",1Pa -"@stdlib/string-substring-after-last",1Pb -"@stdlib/string/substring-after",1Pc -"@stdlib/string-substring-after",1Pd -"@stdlib/string/substring-before-last",1Pe -"@stdlib/string-substring-before-last",1Pf -"@stdlib/string/substring-before",1Pg -"@stdlib/string-substring-before",1Ph -"@stdlib/string/tools/grapheme-cluster-break",1Pi -"@stdlib/string-tools-grapheme-cluster-break",1Pj -"@stdlib/string/tools",1Pk -"@stdlib/string-tools",1Pl -"@stdlib/string/trim",1Pm -"@stdlib/string-trim",1Pn -"@stdlib/string/truncate-middle",1Po -"@stdlib/string-truncate-middle",1Pp -"@stdlib/string/truncate",1Pq -"@stdlib/string-truncate",1Pr -"@stdlib/string/uncapitalize",1Ps -"@stdlib/string-uncapitalize",1Pt -"@stdlib/string/uppercase",1Pu -"@stdlib/string-uppercase",1Pv -"@stdlib/string/utf16-to-utf8-array",1Pw -"@stdlib/string-utf16-to-utf8-array",1Px -"@stdlib/symbol/async-iterator",1Py -"@stdlib/symbol-async-iterator",1Pz -"@stdlib/symbol/ctor",1Q0 -"@stdlib/symbol-ctor",1Q1 -"@stdlib/symbol/iterator",1Q2 -"@stdlib/symbol-iterator",1Q3 -"@stdlib/symbol",1Q5 -"@stdlib/time/day-of-quarter",1Q6 -"@stdlib/time-day-of-quarter",1Q7 -"@stdlib/time/day-of-year",1Q8 -"@stdlib/time-day-of-year",1Q9 -"@stdlib/time/days-in-month",1QA -"@stdlib/time-days-in-month",1QB -"@stdlib/time/days-in-year",1QC -"@stdlib/time-days-in-year",1QD -"@stdlib/time/hours-in-month",1QE -"@stdlib/time-hours-in-month",1QF -"@stdlib/time/hours-in-year",1QG -"@stdlib/time-hours-in-year",1QH -"@stdlib/time/iso-weeks-in-year",1QI -"@stdlib/time-iso-weeks-in-year",1QJ -"@stdlib/time/minutes-in-month",1QK -"@stdlib/time-minutes-in-month",1QL -"@stdlib/time/minutes-in-year",1QM -"@stdlib/time-minutes-in-year",1QN -"@stdlib/time/now",1QO -"@stdlib/time-now",1QP -"@stdlib/time",1QR -"@stdlib/time/quarter-of-year",1QS -"@stdlib/time-quarter-of-year",1QT -"@stdlib/time/seconds-in-month",1QU -"@stdlib/time-seconds-in-month",1QV -"@stdlib/time/seconds-in-year",1QW -"@stdlib/time-seconds-in-year",1QX -"@stdlib/time/tic",1QY -"@stdlib/time-tic",1QZ -"@stdlib/time/toc",1Qa -"@stdlib/time-toc",1Qb -"@stdlib/types",1Qd -"@stdlib/utils/any-by-right",1Qe -"@stdlib/utils-any-by-right",1Qf -"@stdlib/utils/any-by",1Qg -"@stdlib/utils-any-by",1Qh -"@stdlib/utils/any",1Qi -"@stdlib/utils-any",1Qj -"@stdlib/utils/append",1Qk -"@stdlib/utils-append",1Ql -"@stdlib/utils/argument-function",1Qm -"@stdlib/utils-argument-function",1Qn -"@stdlib/utils/async/any-by-right",1Qo -"@stdlib/utils-async-any-by-right",1Qp -"@stdlib/utils/async/any-by",1Qq -"@stdlib/utils-async-any-by",1Qr -"@stdlib/utils/async/bifurcate-by",1Qs -"@stdlib/utils-async-bifurcate-by",1Qt -"@stdlib/utils/async/compose",1Qu -"@stdlib/utils-async-compose",1Qv -"@stdlib/utils/async/count-by",1Qw -"@stdlib/utils-async-count-by",1Qx -"@stdlib/utils/async/do-until",1Qy -"@stdlib/utils-async-do-until",1Qz -"@stdlib/utils/async/do-while",1R0 -"@stdlib/utils-async-do-while",1R1 -"@stdlib/utils/async/every-by-right",1R2 -"@stdlib/utils-async-every-by-right",1R3 -"@stdlib/utils/async/every-by",1R4 -"@stdlib/utils-async-every-by",1R5 -"@stdlib/utils/async/for-each-right",1R6 -"@stdlib/utils-async-for-each-right",1R7 -"@stdlib/utils/async/for-each",1R8 -"@stdlib/utils-async-for-each",1R9 -"@stdlib/utils/async/function-sequence",1RA -"@stdlib/utils-async-function-sequence",1RB -"@stdlib/utils/async/group-by",1RC -"@stdlib/utils-async-group-by",1RD -"@stdlib/utils/async/if-else",1RE -"@stdlib/utils-async-if-else",1RF -"@stdlib/utils/async/if-then",1RG -"@stdlib/utils-async-if-then",1RH -"@stdlib/utils/async/inmap-right",1RI -"@stdlib/utils-async-inmap-right",1RJ -"@stdlib/utils/async/inmap",1RK -"@stdlib/utils-async-inmap",1RL -"@stdlib/utils/async/map-function",1RM -"@stdlib/utils-async-map-function",1RN -"@stdlib/utils/async/map-keys",1RO -"@stdlib/utils-async-map-keys",1RP -"@stdlib/utils/async/map-values",1RQ -"@stdlib/utils-async-map-values",1RR -"@stdlib/utils/async/none-by-right",1RS -"@stdlib/utils-async-none-by-right",1RT -"@stdlib/utils/async/none-by",1RU -"@stdlib/utils-async-none-by",1RV -"@stdlib/utils/async",1RW -"@stdlib/utils-async",1RX -"@stdlib/utils/async/reduce-right",1RY -"@stdlib/utils-async-reduce-right",1RZ -"@stdlib/utils/async/reduce",1Ra -"@stdlib/utils-async-reduce",1Rb -"@stdlib/utils/async/series-waterfall",1Rc -"@stdlib/utils-async-series-waterfall",1Rd -"@stdlib/utils/async/some-by-right",1Re -"@stdlib/utils-async-some-by-right",1Rf -"@stdlib/utils/async/some-by",1Rg -"@stdlib/utils-async-some-by",1Rh -"@stdlib/utils/async/tabulate-by",1Ri -"@stdlib/utils-async-tabulate-by",1Rj -"@stdlib/utils/async/try-catch",1Rk -"@stdlib/utils-async-try-catch",1Rl -"@stdlib/utils/async/try-then",1Rm -"@stdlib/utils-async-try-then",1Rn -"@stdlib/utils/async/until",1Ro -"@stdlib/utils-async-until",1Rp -"@stdlib/utils/async/while",1Rq -"@stdlib/utils-async-while",1Rr -"@stdlib/utils/bifurcate-by",1Rs -"@stdlib/utils-bifurcate-by",1Rt -"@stdlib/utils/bifurcate-in",1Ru -"@stdlib/utils-bifurcate-in",1Rv -"@stdlib/utils/bifurcate-own",1Rw -"@stdlib/utils-bifurcate-own",1Rx -"@stdlib/utils/bifurcate",1Ry -"@stdlib/utils-bifurcate",1Rz -"@stdlib/utils/capitalize-keys",1S0 -"@stdlib/utils-capitalize-keys",1S1 -"@stdlib/utils/circular-buffer",1S2 -"@stdlib/utils-circular-buffer",1S3 -"@stdlib/utils/common-keys-in",1S4 -"@stdlib/utils-common-keys-in",1S5 -"@stdlib/utils/common-keys",1S6 -"@stdlib/utils-common-keys",1S7 -"@stdlib/utils/compact-adjacency-matrix",1S8 -"@stdlib/utils-compact-adjacency-matrix",1S9 -"@stdlib/utils/compose",1SA -"@stdlib/utils-compose",1SB -"@stdlib/utils/constant-function",1SC -"@stdlib/utils-constant-function",1SD -"@stdlib/utils/constructor-name",1SE -"@stdlib/utils-constructor-name",1SF -"@stdlib/utils/convert-path",1SG -"@stdlib/utils-convert-path",1SH -"@stdlib/utils/copy",1SI -"@stdlib/utils-copy",1SJ -"@stdlib/utils/count-by",1SK -"@stdlib/utils-count-by",1SL -"@stdlib/utils/curry-right",1SM -"@stdlib/utils-curry-right",1SN -"@stdlib/utils/curry",1SO -"@stdlib/utils-curry",1SP -"@stdlib/utils/deep-get",1SQ -"@stdlib/utils-deep-get",1SR -"@stdlib/utils/deep-pluck",1SS -"@stdlib/utils-deep-pluck",1ST -"@stdlib/utils/deep-set",1SU -"@stdlib/utils-deep-set",1SV -"@stdlib/utils/define-configurable-read-only-accessor",1SW -"@stdlib/utils-define-configurable-read-only-accessor",1SX -"@stdlib/utils/define-configurable-read-only-property",1SY -"@stdlib/utils-define-configurable-read-only-property",1SZ -"@stdlib/utils/define-configurable-read-write-accessor",1Sa -"@stdlib/utils-define-configurable-read-write-accessor",1Sb -"@stdlib/utils/define-configurable-write-only-accessor",1Sc -"@stdlib/utils-define-configurable-write-only-accessor",1Sd -"@stdlib/utils/define-memoized-configurable-read-only-property",1Se -"@stdlib/utils-define-memoized-configurable-read-only-property",1Sf -"@stdlib/utils/define-memoized-property",1Sg -"@stdlib/utils-define-memoized-property",1Sh -"@stdlib/utils/define-memoized-read-only-property",1Si -"@stdlib/utils-define-memoized-read-only-property",1Sj -"@stdlib/utils/define-nonenumerable-property",1Sk -"@stdlib/utils-define-nonenumerable-property",1Sl -"@stdlib/utils/define-nonenumerable-read-only-accessor",1Sm -"@stdlib/utils-define-nonenumerable-read-only-accessor",1Sn -"@stdlib/utils/define-nonenumerable-read-only-property",1So -"@stdlib/utils-define-nonenumerable-read-only-property",1Sp -"@stdlib/utils/define-nonenumerable-read-write-accessor",1Sq -"@stdlib/utils-define-nonenumerable-read-write-accessor",1Sr -"@stdlib/utils/define-nonenumerable-write-only-accessor",1Ss -"@stdlib/utils-define-nonenumerable-write-only-accessor",1St -"@stdlib/utils/define-properties",1Su -"@stdlib/utils-define-properties",1Sv -"@stdlib/utils/define-property",1Sw -"@stdlib/utils-define-property",1Sx -"@stdlib/utils/define-read-only-accessor",1Sy -"@stdlib/utils-define-read-only-accessor",1Sz -"@stdlib/utils/define-read-only-property",1T0 -"@stdlib/utils-define-read-only-property",1T1 -"@stdlib/utils/define-read-write-accessor",1T2 -"@stdlib/utils-define-read-write-accessor",1T3 -"@stdlib/utils/define-write-only-accessor",1T4 -"@stdlib/utils-define-write-only-accessor",1T5 -"@stdlib/utils/dirname",1T6 -"@stdlib/utils-dirname",1T7 -"@stdlib/utils/do-until-each-right",1T8 -"@stdlib/utils-do-until-each-right",1T9 -"@stdlib/utils/do-until-each",1TA -"@stdlib/utils-do-until-each",1TB -"@stdlib/utils/do-until",1TC -"@stdlib/utils-do-until",1TD -"@stdlib/utils/do-while-each-right",1TE -"@stdlib/utils-do-while-each-right",1TF -"@stdlib/utils/do-while-each",1TG -"@stdlib/utils-do-while-each",1TH -"@stdlib/utils/do-while",1TI -"@stdlib/utils-do-while",1TJ -"@stdlib/utils/doubly-linked-list",1TK -"@stdlib/utils-doubly-linked-list",1TL -"@stdlib/utils/entries-in",1TM -"@stdlib/utils-entries-in",1TN -"@stdlib/utils/entries",1TO -"@stdlib/utils-entries",1TP -"@stdlib/utils/enumerable-properties-in",1TQ -"@stdlib/utils-enumerable-properties-in",1TR -"@stdlib/utils/enumerable-properties",1TS -"@stdlib/utils-enumerable-properties",1TT -"@stdlib/utils/enumerable-property-symbols-in",1TU -"@stdlib/utils-enumerable-property-symbols-in",1TV -"@stdlib/utils/enumerable-property-symbols",1TW -"@stdlib/utils-enumerable-property-symbols",1TX -"@stdlib/utils/escape-regexp-string",1TY -"@stdlib/utils-escape-regexp-string",1TZ -"@stdlib/utils/eval",1Ta -"@stdlib/utils-eval",1Tb -"@stdlib/utils/every-by-right",1Tc -"@stdlib/utils-every-by-right",1Td -"@stdlib/utils/every-by",1Te -"@stdlib/utils-every-by",1Tf -"@stdlib/utils/every",1Tg -"@stdlib/utils-every",1Th -"@stdlib/utils/extname",1Ti -"@stdlib/utils-extname",1Tj -"@stdlib/utils/fifo",1Tk -"@stdlib/utils-fifo",1Tl -"@stdlib/utils/filter-arguments",1Tm -"@stdlib/utils-filter-arguments",1Tn -"@stdlib/utils/find",1To -"@stdlib/utils-find",1Tp -"@stdlib/utils/flatten-array",1Tq -"@stdlib/utils-flatten-array",1Tr -"@stdlib/utils/flatten-object",1Ts -"@stdlib/utils-flatten-object",1Tt -"@stdlib/utils/for-each-right",1Tu -"@stdlib/utils-for-each-right",1Tv -"@stdlib/utils/for-each",1Tw -"@stdlib/utils-for-each",1Tx -"@stdlib/utils/for-in",1Ty -"@stdlib/utils-for-in",1Tz -"@stdlib/utils/for-own",1U0 -"@stdlib/utils-for-own",1U1 -"@stdlib/utils/from-entries",1U2 -"@stdlib/utils-from-entries",1U3 -"@stdlib/utils/function-name",1U4 -"@stdlib/utils-function-name",1U5 -"@stdlib/utils/function-sequence",1U6 -"@stdlib/utils-function-sequence",1U7 -"@stdlib/utils/get-prototype-of",1U8 -"@stdlib/utils-get-prototype-of",1U9 -"@stdlib/utils/global",1UA -"@stdlib/utils-global",1UB -"@stdlib/utils/group-by",1UC -"@stdlib/utils-group-by",1UD -"@stdlib/utils/group-in",1UE -"@stdlib/utils-group-in",1UF -"@stdlib/utils/group-own",1UG -"@stdlib/utils-group-own",1UH -"@stdlib/utils/group",1UI -"@stdlib/utils-group",1UJ -"@stdlib/utils/identity-function",1UK -"@stdlib/utils-identity-function",1UL -"@stdlib/utils/if-else",1UM -"@stdlib/utils-if-else",1UN -"@stdlib/utils/if-then",1UO -"@stdlib/utils-if-then",1UP -"@stdlib/utils/index-of",1UQ -"@stdlib/utils-index-of",1UR -"@stdlib/utils/inherit",1US -"@stdlib/utils-inherit",1UT -"@stdlib/utils/inherited-enumerable-properties",1UU -"@stdlib/utils-inherited-enumerable-properties",1UV -"@stdlib/utils/inherited-enumerable-property-symbols",1UW -"@stdlib/utils-inherited-enumerable-property-symbols",1UX -"@stdlib/utils/inherited-keys",1UY -"@stdlib/utils-inherited-keys",1UZ -"@stdlib/utils/inherited-nonenumerable-properties",1Ua -"@stdlib/utils-inherited-nonenumerable-properties",1Ub -"@stdlib/utils/inherited-nonenumerable-property-names",1Uc -"@stdlib/utils-inherited-nonenumerable-property-names",1Ud -"@stdlib/utils/inherited-nonenumerable-property-symbols",1Ue -"@stdlib/utils-inherited-nonenumerable-property-symbols",1Uf -"@stdlib/utils/inherited-properties",1Ug -"@stdlib/utils-inherited-properties",1Uh -"@stdlib/utils/inherited-property-descriptor",1Ui -"@stdlib/utils-inherited-property-descriptor",1Uj -"@stdlib/utils/inherited-property-descriptors",1Uk -"@stdlib/utils-inherited-property-descriptors",1Ul -"@stdlib/utils/inherited-property-names",1Um -"@stdlib/utils-inherited-property-names",1Un -"@stdlib/utils/inherited-property-symbols",1Uo -"@stdlib/utils-inherited-property-symbols",1Up -"@stdlib/utils/inherited-writable-properties",1Uq -"@stdlib/utils-inherited-writable-properties",1Ur -"@stdlib/utils/inherited-writable-property-names",1Us -"@stdlib/utils-inherited-writable-property-names",1Ut -"@stdlib/utils/inherited-writable-property-symbols",1Uu -"@stdlib/utils-inherited-writable-property-symbols",1Uv -"@stdlib/utils/inmap-right",1Uw -"@stdlib/utils-inmap-right",1Ux -"@stdlib/utils/inmap",1Uy -"@stdlib/utils-inmap",1Uz -"@stdlib/utils/key-by-right",1V0 -"@stdlib/utils-key-by-right",1V1 -"@stdlib/utils/key-by",1V2 -"@stdlib/utils-key-by",1V3 -"@stdlib/utils/keys-in",1V4 -"@stdlib/utils-keys-in",1V5 -"@stdlib/utils/keys",1V6 -"@stdlib/utils-keys",1V7 -"@stdlib/utils/library-manifest",1V8 -"@stdlib/utils-library-manifest",1V9 -"@stdlib/utils/linked-list",1VA -"@stdlib/utils-linked-list",1VB -"@stdlib/utils/lowercase-keys",1VC -"@stdlib/utils-lowercase-keys",1VD -"@stdlib/utils/map-arguments",1VE -"@stdlib/utils-map-arguments",1VF -"@stdlib/utils/map-function",1VG -"@stdlib/utils-map-function",1VH -"@stdlib/utils/map-keys",1VI -"@stdlib/utils-map-keys",1VJ -"@stdlib/utils/map-reduce-right",1VK -"@stdlib/utils-map-reduce-right",1VL -"@stdlib/utils/map-reduce",1VM -"@stdlib/utils-map-reduce",1VN -"@stdlib/utils/map-right",1VO -"@stdlib/utils-map-right",1VP -"@stdlib/utils/map-values",1VQ -"@stdlib/utils-map-values",1VR -"@stdlib/utils/map",1VS -"@stdlib/utils-map",1VT -"@stdlib/utils/map2-right",1VU -"@stdlib/utils-map2-right",1VV -"@stdlib/utils/map2",1VW -"@stdlib/utils-map2",1VX -"@stdlib/utils/map2d",1VY -"@stdlib/utils-map2d",1VZ -"@stdlib/utils/map3d",1Va -"@stdlib/utils-map3d",1Vb -"@stdlib/utils/map4d",1Vc -"@stdlib/utils-map4d",1Vd -"@stdlib/utils/map5d",1Ve -"@stdlib/utils-map5d",1Vf -"@stdlib/utils/mask-arguments",1Vg -"@stdlib/utils-mask-arguments",1Vh -"@stdlib/utils/memoize",1Vi -"@stdlib/utils-memoize",1Vj -"@stdlib/utils/merge",1Vk -"@stdlib/utils-merge",1Vl -"@stdlib/utils/move-property",1Vm -"@stdlib/utils-move-property",1Vn -"@stdlib/utils/named-typed-tuple",1Vo -"@stdlib/utils-named-typed-tuple",1Vp -"@stdlib/utils/nary-function",1Vq -"@stdlib/utils-nary-function",1Vr -"@stdlib/utils/native-class",1Vs -"@stdlib/utils-native-class",1Vt -"@stdlib/utils/next-tick",1Vu -"@stdlib/utils-next-tick",1Vv -"@stdlib/utils/none-by-right",1Vw -"@stdlib/utils-none-by-right",1Vx -"@stdlib/utils/none-by",1Vy -"@stdlib/utils-none-by",1Vz -"@stdlib/utils/none",1W0 -"@stdlib/utils-none",1W1 -"@stdlib/utils/nonenumerable-properties-in",1W2 -"@stdlib/utils-nonenumerable-properties-in",1W3 -"@stdlib/utils/nonenumerable-properties",1W4 -"@stdlib/utils-nonenumerable-properties",1W5 -"@stdlib/utils/nonenumerable-property-names-in",1W6 -"@stdlib/utils-nonenumerable-property-names-in",1W7 -"@stdlib/utils/nonenumerable-property-names",1W8 -"@stdlib/utils-nonenumerable-property-names",1W9 -"@stdlib/utils/nonenumerable-property-symbols-in",1WA -"@stdlib/utils-nonenumerable-property-symbols-in",1WB -"@stdlib/utils/nonenumerable-property-symbols",1WC -"@stdlib/utils-nonenumerable-property-symbols",1WD -"@stdlib/utils/nonindex-keys",1WE -"@stdlib/utils-nonindex-keys",1WF -"@stdlib/utils/noop",1WG -"@stdlib/utils-noop",1WH -"@stdlib/utils/object-inverse-by",1WI -"@stdlib/utils-object-inverse-by",1WJ -"@stdlib/utils/object-inverse",1WK -"@stdlib/utils-object-inverse",1WL -"@stdlib/utils/omit-by",1WM -"@stdlib/utils-omit-by",1WN -"@stdlib/utils/omit",1WO -"@stdlib/utils-omit",1WP -"@stdlib/utils/open-url",1WQ -"@stdlib/utils-open-url",1WR -"@stdlib/utils",1WT -"@stdlib/utils/papply-right",1WU -"@stdlib/utils-papply-right",1WV -"@stdlib/utils/papply",1WW -"@stdlib/utils-papply",1WX -"@stdlib/utils/parallel",1WY -"@stdlib/utils-parallel",1WZ -"@stdlib/utils/parse-json",1Wa -"@stdlib/utils-parse-json",1Wb -"@stdlib/utils/pick-arguments",1Wc -"@stdlib/utils-pick-arguments",1Wd -"@stdlib/utils/pick-by",1We -"@stdlib/utils-pick-by",1Wf -"@stdlib/utils/pick",1Wg -"@stdlib/utils-pick",1Wh -"@stdlib/utils/pluck",1Wi -"@stdlib/utils-pluck",1Wj -"@stdlib/utils/pop",1Wk -"@stdlib/utils-pop",1Wl -"@stdlib/utils/prepend",1Wm -"@stdlib/utils-prepend",1Wn -"@stdlib/utils/properties-in",1Wo -"@stdlib/utils-properties-in",1Wp -"@stdlib/utils/properties",1Wq -"@stdlib/utils-properties",1Wr -"@stdlib/utils/property-descriptor-in",1Ws -"@stdlib/utils-property-descriptor-in",1Wt -"@stdlib/utils/property-descriptor",1Wu -"@stdlib/utils-property-descriptor",1Wv -"@stdlib/utils/property-descriptors-in",1Ww -"@stdlib/utils-property-descriptors-in",1Wx -"@stdlib/utils/property-descriptors",1Wy -"@stdlib/utils-property-descriptors",1Wz -"@stdlib/utils/property-names-in",1X0 -"@stdlib/utils-property-names-in",1X1 -"@stdlib/utils/property-names",1X2 -"@stdlib/utils-property-names",1X3 -"@stdlib/utils/property-symbols-in",1X4 -"@stdlib/utils-property-symbols-in",1X5 -"@stdlib/utils/property-symbols",1X6 -"@stdlib/utils-property-symbols",1X7 -"@stdlib/utils/push",1X8 -"@stdlib/utils-push",1X9 -"@stdlib/utils/real-max",1XA -"@stdlib/utils-real-max",1XB -"@stdlib/utils/real-min",1XC -"@stdlib/utils-real-min",1XD -"@stdlib/utils/reduce-right",1XE -"@stdlib/utils-reduce-right",1XF -"@stdlib/utils/reduce",1XG -"@stdlib/utils-reduce",1XH -"@stdlib/utils/reduce2d",1XI -"@stdlib/utils-reduce2d",1XJ -"@stdlib/utils/regexp-from-string",1XK -"@stdlib/utils-regexp-from-string",1XL -"@stdlib/utils/reject-arguments",1XM -"@stdlib/utils-reject-arguments",1XN -"@stdlib/utils/reorder-arguments",1XO -"@stdlib/utils-reorder-arguments",1XP -"@stdlib/utils/reverse-arguments",1XQ -"@stdlib/utils-reverse-arguments",1XR -"@stdlib/utils/safe-int-max",1XS -"@stdlib/utils-safe-int-max",1XT -"@stdlib/utils/safe-int-min",1XU -"@stdlib/utils-safe-int-min",1XV -"@stdlib/utils/shift",1XW -"@stdlib/utils-shift",1XX -"@stdlib/utils/size-of",1XY -"@stdlib/utils-size-of",1XZ -"@stdlib/utils/some-by-right",1Xa -"@stdlib/utils-some-by-right",1Xb -"@stdlib/utils/some-by",1Xc -"@stdlib/utils-some-by",1Xd -"@stdlib/utils/some",1Xe -"@stdlib/utils-some",1Xf -"@stdlib/utils/stack",1Xg -"@stdlib/utils-stack",1Xh -"@stdlib/utils/tabulate-by",1Xi -"@stdlib/utils-tabulate-by",1Xj -"@stdlib/utils/tabulate",1Xk -"@stdlib/utils-tabulate",1Xl -"@stdlib/utils/timeit",1Xm -"@stdlib/utils-timeit",1Xn -"@stdlib/utils/try-catch",1Xo -"@stdlib/utils-try-catch",1Xp -"@stdlib/utils/try-function",1Xq -"@stdlib/utils-try-function",1Xr -"@stdlib/utils/try-require",1Xs -"@stdlib/utils-try-require",1Xt -"@stdlib/utils/try-then",1Xu -"@stdlib/utils-try-then",1Xv -"@stdlib/utils/type-max",1Xw -"@stdlib/utils-type-max",1Xx -"@stdlib/utils/type-min",1Xy -"@stdlib/utils-type-min",1Xz -"@stdlib/utils/type-of",1Y0 -"@stdlib/utils-type-of",1Y1 -"@stdlib/utils/uncapitalize-keys",1Y2 -"@stdlib/utils-uncapitalize-keys",1Y3 -"@stdlib/utils/uncurry-right",1Y4 -"@stdlib/utils-uncurry-right",1Y5 -"@stdlib/utils/uncurry",1Y6 -"@stdlib/utils-uncurry",1Y7 -"@stdlib/utils/unshift",1Y8 -"@stdlib/utils-unshift",1Y9 -"@stdlib/utils/until-each-right",1YA -"@stdlib/utils-until-each-right",1YB -"@stdlib/utils/until-each",1YC -"@stdlib/utils-until-each",1YD -"@stdlib/utils/until",1YE -"@stdlib/utils-until",1YF -"@stdlib/utils/unzip",1YG -"@stdlib/utils-unzip",1YH -"@stdlib/utils/uppercase-keys",1YI -"@stdlib/utils-uppercase-keys",1YJ -"@stdlib/utils/values-in",1YK -"@stdlib/utils-values-in",1YL -"@stdlib/utils/values",1YM -"@stdlib/utils-values",1YN -"@stdlib/utils/while-each-right",1YO -"@stdlib/utils-while-each-right",1YP -"@stdlib/utils/while-each",1YQ -"@stdlib/utils-while-each",1YR -"@stdlib/utils/while",1YS -"@stdlib/utils-while",1YT -"@stdlib/utils/writable-properties-in",1YU -"@stdlib/utils-writable-properties-in",1YV -"@stdlib/utils/writable-properties",1YW -"@stdlib/utils-writable-properties",1YX -"@stdlib/utils/writable-property-names-in",1YY -"@stdlib/utils-writable-property-names-in",1YZ -"@stdlib/utils/writable-property-names",1Ya -"@stdlib/utils-writable-property-names",1Yb -"@stdlib/utils/writable-property-symbols-in",1Yc -"@stdlib/utils-writable-property-symbols-in",1Yd -"@stdlib/utils/writable-property-symbols",1Ye -"@stdlib/utils-writable-property-symbols",1Yf -"@stdlib/utils/zip",1Yg -"@stdlib/utils-zip",1Yh -"@stdlib/array/base/accessor-getter",1Yi -"@stdlib/array-base-accessor-getter",1Yj -"@stdlib/array/base/accessor-setter",1Yk -"@stdlib/array-base-accessor-setter",1Yl -"@stdlib/array/base/accessor",1Ym -"@stdlib/array-base-accessor",1Yn -"@stdlib/array/base/accessors",1Yo -"@stdlib/array-base-accessors",1Yp -"@stdlib/array/base/assert/contains",1Yq -"@stdlib/array-base-assert-contains",1Yr -"@stdlib/array/base/assert/is-accessor-array",1Ys -"@stdlib/array-base-assert-is-accessor-array",1Yt -"@stdlib/array/base/assert",1Yu -"@stdlib/array-base-assert",1Yv -"@stdlib/array/base/cartesian-power",1Yw -"@stdlib/array-base-cartesian-power",1Yx -"@stdlib/array/base/cartesian-product",1Yy -"@stdlib/array-base-cartesian-product",1Yz -"@stdlib/array/base/cartesian-square",1Z0 -"@stdlib/array-base-cartesian-square",1Z1 -"@stdlib/array/base/copy-indexed",1Z2 -"@stdlib/array-base-copy-indexed",1Z3 -"@stdlib/array/base/filled2d",1Z4 -"@stdlib/array-base-filled2d",1Z5 -"@stdlib/array/base/flatten",1Z6 -"@stdlib/array-base-flatten",1Z7 -"@stdlib/array/base/flatten2d-by",1Z8 -"@stdlib/array-base-flatten2d-by",1Z9 -"@stdlib/array/base/flatten2d",1ZA -"@stdlib/array-base-flatten2d",1ZB -"@stdlib/array/base/flatten3d-by",1ZC -"@stdlib/array-base-flatten3d-by",1ZD -"@stdlib/array/base/flatten3d",1ZE -"@stdlib/array-base-flatten3d",1ZF -"@stdlib/array/base/flatten4d-by",1ZG -"@stdlib/array-base-flatten4d-by",1ZH -"@stdlib/array/base/flatten4d",1ZI -"@stdlib/array-base-flatten4d",1ZJ -"@stdlib/array/base/flatten5d-by",1ZK -"@stdlib/array-base-flatten5d-by",1ZL -"@stdlib/array/base/flatten5d",1ZM -"@stdlib/array-base-flatten5d",1ZN -"@stdlib/array/base/getter",1ZO -"@stdlib/array-base-getter",1ZP -"@stdlib/array/base/last",1ZQ -"@stdlib/array-base-last",1ZR -"@stdlib/array/base/n-cartesian-product",1ZS -"@stdlib/array-base-n-cartesian-product",1ZT -"@stdlib/array/base/ones2d",1ZU -"@stdlib/array-base-ones2d",1ZV -"@stdlib/array/base/setter",1ZW -"@stdlib/array-base-setter",1ZX -"@stdlib/array/base/take",1ZY -"@stdlib/array-base-take",1ZZ -"@stdlib/array/base/to-accessor-array",1Za -"@stdlib/array-base-to-accessor-array",1Zb -"@stdlib/array/base/zero-to",1Zc -"@stdlib/array-base-zero-to",1Zd -"@stdlib/array/base/zeros2d",1Ze -"@stdlib/array-base-zeros2d",1Zf -"@stdlib/array/empty-like",1Zg -"@stdlib/array-empty-like",1Zh -"@stdlib/array/empty",1Zi -"@stdlib/array-empty",1Zj -"@stdlib/array/nans-like",1Zk -"@stdlib/array-nans-like",1Zl -"@stdlib/array/nans",1Zm -"@stdlib/array-nans",1Zn -"@stdlib/assert/is-accessor-array",1Zo -"@stdlib/assert-is-accessor-array",1Zp -"@stdlib/assert/is-camelcase",1Zq -"@stdlib/assert-is-camelcase",1Zr -"@stdlib/assert/is-constantcase",1Zs -"@stdlib/assert-is-constantcase",1Zt -"@stdlib/assert/is-current-year",1Zu -"@stdlib/assert-is-current-year",1Zv -"@stdlib/assert/is-domain-name",1Zw -"@stdlib/assert-is-domain-name",1Zx -"@stdlib/assert/is-duration-string",1Zy -"@stdlib/assert-is-duration-string",1Zz -"@stdlib/assert/is-kebabcase",1a0 -"@stdlib/assert-is-kebabcase",1a1 -"@stdlib/assert/is-pascalcase",1a2 -"@stdlib/assert-is-pascalcase",1a3 -"@stdlib/assert/is-semver",1a4 -"@stdlib/assert-is-semver",1a5 -"@stdlib/assert/is-snakecase",1a6 -"@stdlib/assert-is-snakecase",1a7 -"@stdlib/assert/is-startcase",1a8 -"@stdlib/assert-is-startcase",1a9 -"@stdlib/assert/napi/equal-typedarray-types",1aA -"@stdlib/assert-napi-equal-typedarray-types",1aB -"@stdlib/assert/napi/equal-types",1aC -"@stdlib/assert-napi-equal-types",1aD -"@stdlib/assert/napi/is-type",1aE -"@stdlib/assert-napi-is-type",1aF -"@stdlib/assert/napi/is-typedarray",1aG -"@stdlib/assert-napi-is-typedarray",1aH -"@stdlib/assert/napi",1aI -"@stdlib/assert-napi",1aJ -"@stdlib/assert/napi/status-ok",1aK -"@stdlib/assert-napi-status-ok",1aL -"@stdlib/blas/base/drotg",1aM -"@stdlib/blas-base-drotg",1aN -"@stdlib/blas/base/srotg",1aO -"@stdlib/blas-base-srotg",1aP -"@stdlib/boolean/ctor",1aQ -"@stdlib/boolean-ctor",1aR -"@stdlib/boolean",1aT -"@stdlib/complex/base/cast-return",1aU -"@stdlib/complex-base-cast-return",1aV -"@stdlib/complex/base",1aW -"@stdlib/complex-base",1aX -"@stdlib/console/log-each",1aY -"@stdlib/console-log-each",1aZ -"@stdlib/console/log",1aa -"@stdlib/console-log",1ab -"@stdlib/console",1ad -"@stdlib/constants/float32/abs-mask",1ae -"@stdlib/constants-float32-abs-mask",1af -"@stdlib/constants/float32/exponent-mask",1ag -"@stdlib/constants-float32-exponent-mask",1ah -"@stdlib/constants/float32/sign-mask",1ai -"@stdlib/constants-float32-sign-mask",1aj -"@stdlib/constants/float32/significand-mask",1ak -"@stdlib/constants-float32-significand-mask",1al -"@stdlib/constants/float64/high-word-abs-mask",1am -"@stdlib/constants-float64-high-word-abs-mask",1an -"@stdlib/constants/float64/high-word-sign-mask",1ao -"@stdlib/constants-float64-high-word-sign-mask",1ap -"@stdlib/function/ctor",1aq -"@stdlib/function-ctor",1ar -"@stdlib/function",1at -"@stdlib/function/to-string",1au -"@stdlib/function-to-string",1av -"@stdlib/math/base/assert/is-negative-finite",1aw -"@stdlib/math-base-assert-is-negative-finite",1ax -"@stdlib/math/base/assert/is-nonnegative-finite",1ay -"@stdlib/math-base-assert-is-nonnegative-finite",1az -"@stdlib/math/base/assert/is-nonpositive-finite",1b0 -"@stdlib/math-base-assert-is-nonpositive-finite",1b1 -"@stdlib/math/base/assert/is-positive-finite",1b2 -"@stdlib/math-base-assert-is-positive-finite",1b3 -"@stdlib/math/base/ops/cnegf",1b4 -"@stdlib/math-base-ops-cnegf",1b5 -"@stdlib/math/base/special/asec",1b6 -"@stdlib/math-base-special-asec",1b7 -"@stdlib/math/base/special/ellipj",1b8 -"@stdlib/math-base-special-ellipj",1b9 -"@stdlib/math/base/special/erfcx",1bA -"@stdlib/math-base-special-erfcx",1bB -"@stdlib/math/base/special/gammasgn",1bC -"@stdlib/math-base-special-gammasgn",1bD -"@stdlib/math/base/special/maxabsn",1bE -"@stdlib/math-base-special-maxabsn",1bF -"@stdlib/math/base/special/maxn",1bG -"@stdlib/math-base-special-maxn",1bH -"@stdlib/math/base/special/minabsn",1bI -"@stdlib/math-base-special-minabsn",1bJ -"@stdlib/math/base/special/minmaxabsn",1bK -"@stdlib/math-base-special-minmaxabsn",1bL -"@stdlib/math/base/special/minmaxn",1bM -"@stdlib/math-base-special-minmaxn",1bN -"@stdlib/math/base/special/minn",1bO -"@stdlib/math-base-special-minn",1bP -"@stdlib/math/base/special/rcbrt",1bQ -"@stdlib/math-base-special-rcbrt",1bR -"@stdlib/math/base/special/sqrtpi",1bS -"@stdlib/math-base-special-sqrtpi",1bT -"@stdlib/math/base/tools/evalpoly-compile-c",1bU -"@stdlib/math-base-tools-evalpoly-compile-c",1bV -"@stdlib/math/base/tools/evalrational-compile-c",1bW -"@stdlib/math-base-tools-evalrational-compile-c",1bX -"@stdlib/math/strided/ops/add-by",1bY -"@stdlib/math-strided-ops-add-by",1bZ -"@stdlib/math/strided/ops/mul-by",1ba -"@stdlib/math-strided-ops-mul-by",1bb -"@stdlib/math/strided/ops/sub-by",1bc -"@stdlib/math-strided-ops-sub-by",1bd -"@stdlib/math/strided/special/cbrt-by",1be -"@stdlib/math-strided-special-cbrt-by",1bf -"@stdlib/math/strided/special/cos-by",1bg -"@stdlib/math-strided-special-cos-by",1bh -"@stdlib/math/strided/special/dcbrt-by",1bi -"@stdlib/math-strided-special-dcbrt-by",1bj -"@stdlib/math/strided/special/sin-by",1bk -"@stdlib/math-strided-special-sin-by",1bl -"@stdlib/math/strided/special/sqrt-by",1bm -"@stdlib/math-strided-special-sqrt-by",1bn -"@stdlib/napi/argv-complex128array",1bo -"@stdlib/napi-argv-complex128array",1bp -"@stdlib/napi/argv-complex64array",1bq -"@stdlib/napi-argv-complex64array",1br -"@stdlib/napi/argv-double",1bs -"@stdlib/napi-argv-double",1bt -"@stdlib/napi/argv-float",1bu -"@stdlib/napi-argv-float",1bv -"@stdlib/napi/argv-float32array",1bw -"@stdlib/napi-argv-float32array",1bx -"@stdlib/napi/argv-float64array",1by -"@stdlib/napi-argv-float64array",1bz -"@stdlib/napi/argv-int16array",1c0 -"@stdlib/napi-argv-int16array",1c1 -"@stdlib/napi/argv-int32",1c2 -"@stdlib/napi-argv-int32",1c3 -"@stdlib/napi/argv-int32array",1c4 -"@stdlib/napi-argv-int32array",1c5 -"@stdlib/napi/argv-int64",1c6 -"@stdlib/napi-argv-int64",1c7 -"@stdlib/napi/argv-int8array",1c8 -"@stdlib/napi-argv-int8array",1c9 -"@stdlib/napi/argv-strided-complex128array",1cA -"@stdlib/napi-argv-strided-complex128array",1cB -"@stdlib/napi/argv-strided-complex64array",1cC -"@stdlib/napi-argv-strided-complex64array",1cD -"@stdlib/napi/argv-strided-float32array",1cE -"@stdlib/napi-argv-strided-float32array",1cF -"@stdlib/napi/argv-strided-float64array",1cG -"@stdlib/napi-argv-strided-float64array",1cH -"@stdlib/napi/argv-strided-int16array",1cI -"@stdlib/napi-argv-strided-int16array",1cJ -"@stdlib/napi/argv-strided-int32array",1cK -"@stdlib/napi-argv-strided-int32array",1cL -"@stdlib/napi/argv-strided-int8array",1cM -"@stdlib/napi-argv-strided-int8array",1cN -"@stdlib/napi/argv-strided-uint16array",1cO -"@stdlib/napi-argv-strided-uint16array",1cP -"@stdlib/napi/argv-strided-uint32array",1cQ -"@stdlib/napi-argv-strided-uint32array",1cR -"@stdlib/napi/argv-strided-uint8array",1cS -"@stdlib/napi-argv-strided-uint8array",1cT -"@stdlib/napi/argv-uint16array",1cU -"@stdlib/napi-argv-uint16array",1cV -"@stdlib/napi/argv-uint32",1cW -"@stdlib/napi-argv-uint32",1cX -"@stdlib/napi/argv-uint32array",1cY -"@stdlib/napi-argv-uint32array",1cZ -"@stdlib/napi/argv-uint8array",1ca -"@stdlib/napi-argv-uint8array",1cb -"@stdlib/napi/argv",1cc -"@stdlib/napi-argv",1cd -"@stdlib/napi/export",1ce -"@stdlib/napi-export",1cf -"@stdlib/napi",1ch -"@stdlib/ndarray/base/assert/is-complex-floating-point-data-type",1ci -"@stdlib/ndarray-base-assert-is-complex-floating-point-data-type",1cj -"@stdlib/ndarray/base/assert/is-floating-point-data-type",1ck -"@stdlib/ndarray-base-assert-is-floating-point-data-type",1cl -"@stdlib/ndarray/base/assert/is-integer-data-type",1cm -"@stdlib/ndarray-base-assert-is-integer-data-type",1cn -"@stdlib/ndarray/base/assert/is-numeric-data-type",1co -"@stdlib/ndarray-base-assert-is-numeric-data-type",1cp -"@stdlib/ndarray/base/assert/is-real-data-type",1cq -"@stdlib/ndarray-base-assert-is-real-data-type",1cr -"@stdlib/ndarray/base/assert/is-real-floating-point-data-type",1cs -"@stdlib/ndarray-base-assert-is-real-floating-point-data-type",1ct -"@stdlib/ndarray/base/assert/is-signed-integer-data-type",1cu -"@stdlib/ndarray-base-assert-is-signed-integer-data-type",1cv -"@stdlib/ndarray/base/assert/is-unsigned-integer-data-type",1cw -"@stdlib/ndarray-base-assert-is-unsigned-integer-data-type",1cx -"@stdlib/ndarray/base/binary-loop-interchange-order",1cy -"@stdlib/ndarray-base-binary-loop-interchange-order",1cz -"@stdlib/ndarray/base/binary-tiling-block-size",1d0 -"@stdlib/ndarray-base-binary-tiling-block-size",1d1 -"@stdlib/ndarray/base/broadcast-scalar",1d2 -"@stdlib/ndarray-base-broadcast-scalar",1d3 -"@stdlib/ndarray/base/empty-like",1d4 -"@stdlib/ndarray-base-empty-like",1d5 -"@stdlib/ndarray/base/empty",1d6 -"@stdlib/ndarray-base-empty",1d7 -"@stdlib/ndarray/base/nullary-loop-interchange-order",1d8 -"@stdlib/ndarray-base-nullary-loop-interchange-order",1d9 -"@stdlib/ndarray/base/nullary-tiling-block-size",1dA -"@stdlib/ndarray-base-nullary-tiling-block-size",1dB -"@stdlib/ndarray/base/nullary",1dC -"@stdlib/ndarray-base-nullary",1dD -"@stdlib/ndarray/base/output-policy-enum2str",1dE -"@stdlib/ndarray-base-output-policy-enum2str",1dF -"@stdlib/ndarray/base/output-policy-resolve-enum",1dG -"@stdlib/ndarray-base-output-policy-resolve-enum",1dH -"@stdlib/ndarray/base/output-policy-resolve-str",1dI -"@stdlib/ndarray-base-output-policy-resolve-str",1dJ -"@stdlib/ndarray/base/output-policy-str2enum",1dK -"@stdlib/ndarray-base-output-policy-str2enum",1dL -"@stdlib/ndarray/base/unary-by",1dM -"@stdlib/ndarray-base-unary-by",1dN -"@stdlib/ndarray/base/unary-loop-interchange-order",1dO -"@stdlib/ndarray-base-unary-loop-interchange-order",1dP -"@stdlib/ndarray/base/unary-output-dtype",1dQ -"@stdlib/ndarray-base-unary-output-dtype",1dR -"@stdlib/ndarray/base/unary-tiling-block-size",1dS -"@stdlib/ndarray-base-unary-tiling-block-size",1dT -"@stdlib/ndarray/defaults",1dU -"@stdlib/ndarray-defaults",1dV -"@stdlib/ndarray/dispatch-by",1dW -"@stdlib/ndarray-dispatch-by",1dX -"@stdlib/ndarray/empty-like",1dY -"@stdlib/ndarray-empty-like",1dZ -"@stdlib/ndarray/empty",1da -"@stdlib/ndarray-empty",1db -"@stdlib/ndarray/output-dtype-policies",1dc -"@stdlib/ndarray-output-dtype-policies",1dd -"@stdlib/ndarray/to-array",1de -"@stdlib/ndarray-to-array",1df -"@stdlib/nlp/expand-acronyms",1dg -"@stdlib/nlp-expand-acronyms",1dh -"@stdlib/nlp/sentencize",1di -"@stdlib/nlp-sentencize",1dj -"@stdlib/number/float64/reviver",1dk -"@stdlib/number-float64-reviver",1dl -"@stdlib/number/float64/to-json",1dm -"@stdlib/number-float64-to-json",1dn -"@stdlib/object/assign",1do -"@stdlib/object-assign",1dp -"@stdlib/object/ctor",1dq -"@stdlib/object-ctor",1dr -"@stdlib/object",1dt -"@stdlib/random/array/arcsine",1du -"@stdlib/random-array-arcsine",1dv -"@stdlib/random/array/beta",1dw -"@stdlib/random-array-beta",1dx -"@stdlib/random/array/betaprime",1dy -"@stdlib/random-array-betaprime",1dz -"@stdlib/random/array/cosine",1e0 -"@stdlib/random-array-cosine",1e1 -"@stdlib/random/array/discrete-uniform",1e2 -"@stdlib/random-array-discrete-uniform",1e3 -"@stdlib/random/array/exponential",1e4 -"@stdlib/random-array-exponential",1e5 -"@stdlib/random/array/gamma",1e6 -"@stdlib/random-array-gamma",1e7 -"@stdlib/random/array/geometric",1e8 -"@stdlib/random-array-geometric",1e9 -"@stdlib/random/array/invgamma",1eA -"@stdlib/random-array-invgamma",1eB -"@stdlib/random/array/lognormal",1eC -"@stdlib/random-array-lognormal",1eD -"@stdlib/random/array/minstd-shuffle",1eE -"@stdlib/random-array-minstd-shuffle",1eF -"@stdlib/random/array/minstd",1eG -"@stdlib/random-array-minstd",1eH -"@stdlib/random/array/mt19937",1eI -"@stdlib/random-array-mt19937",1eJ -"@stdlib/random/array/normal",1eK -"@stdlib/random-array-normal",1eL -"@stdlib/random/array",1eM -"@stdlib/random-array",1eN -"@stdlib/random/array/randu",1eO -"@stdlib/random-array-randu",1eP -"@stdlib/random/array/uniform",1eQ -"@stdlib/random-array-uniform",1eR -"@stdlib/random/exponential",1eS -"@stdlib/random-exponential",1eT -"@stdlib/random/strided/arcsine",1eU -"@stdlib/random-strided-arcsine",1eV -"@stdlib/random/strided/beta",1eW -"@stdlib/random-strided-beta",1eX -"@stdlib/random/strided/betaprime",1eY -"@stdlib/random-strided-betaprime",1eZ -"@stdlib/random/strided/cosine",1ea -"@stdlib/random-strided-cosine",1eb -"@stdlib/random/strided/discrete-uniform",1ec -"@stdlib/random-strided-discrete-uniform",1ed -"@stdlib/random/strided/exponential",1ee -"@stdlib/random-strided-exponential",1ef -"@stdlib/random/strided/gamma",1eg -"@stdlib/random-strided-gamma",1eh -"@stdlib/random/strided/invgamma",1ei -"@stdlib/random-strided-invgamma",1ej -"@stdlib/random/strided/lognormal",1ek -"@stdlib/random-strided-lognormal",1el -"@stdlib/random/strided/minstd-shuffle",1em -"@stdlib/random-strided-minstd-shuffle",1en -"@stdlib/random/strided/minstd",1eo -"@stdlib/random-strided-minstd",1ep -"@stdlib/random/strided/mt19937",1eq -"@stdlib/random-strided-mt19937",1er -"@stdlib/random/strided/normal",1es -"@stdlib/random-strided-normal",1et -"@stdlib/random/strided",1eu -"@stdlib/random-strided",1ev -"@stdlib/random/strided/randu",1ew -"@stdlib/random-strided-randu",1ex -"@stdlib/random/strided/uniform",1ey -"@stdlib/random-strided-uniform",1ez -"@stdlib/random/strided/weibull",1f0 -"@stdlib/random-strided-weibull",1f1 -"@stdlib/regexp/duration-string",1f2 -"@stdlib/regexp-duration-string",1f3 -"@stdlib/regexp/reviver",1f4 -"@stdlib/regexp-reviver",1f5 -"@stdlib/regexp/semver",1f6 -"@stdlib/regexp-semver",1f7 -"@stdlib/regexp/to-json",1f8 -"@stdlib/regexp-to-json",1f9 -"@stdlib/stats/base/dists/lognormal/logcdf",1fA -"@stdlib/stats-base-dists-lognormal-logcdf",1fB -"@stdlib/stats/base/dists/normal/logcdf",1fC -"@stdlib/stats-base-dists-normal-logcdf",1fD -"@stdlib/stats/base/dists/studentized-range/cdf",1fE -"@stdlib/stats-base-dists-studentized-range-cdf",1fF -"@stdlib/stats/base/dists/studentized-range",1fG -"@stdlib/stats-base-dists-studentized-range",1fH -"@stdlib/stats/base/dists/studentized-range/quantile",1fI -"@stdlib/stats-base-dists-studentized-range-quantile",1fJ -"@stdlib/strided/base/mskunary-addon-dispatch",1fK -"@stdlib/strided-base-mskunary-addon-dispatch",1fL -"@stdlib/strided/base/mskunary-dtype-signatures",1fM -"@stdlib/strided-base-mskunary-dtype-signatures",1fN -"@stdlib/strided/base/mskunary-signature-callbacks",1fO -"@stdlib/strided-base-mskunary-signature-callbacks",1fP -"@stdlib/strided/base/nullary-addon-dispatch",1fQ -"@stdlib/strided-base-nullary-addon-dispatch",1fR -"@stdlib/strided/base/unary-by",1fS -"@stdlib/strided-base-unary-by",1fT -"@stdlib/strided/base/unary-dtype-signatures",1fU -"@stdlib/strided-base-unary-dtype-signatures",1fV -"@stdlib/strided/base/unary-signature-callbacks",1fW -"@stdlib/strided-base-unary-signature-callbacks",1fX -"@stdlib/strided/dispatch-by",1fY -"@stdlib/strided-dispatch-by",1fZ -"@stdlib/strided/napi/nullary",1fa -"@stdlib/strided-napi-nullary",1fb -"@stdlib/string/base/camelcase",1fc -"@stdlib/string-base-camelcase",1fd -"@stdlib/string/base/capitalize",1fe -"@stdlib/string-base-capitalize",1ff -"@stdlib/string/base/code-point-at",1fg -"@stdlib/string-base-code-point-at",1fh -"@stdlib/string/base/constantcase",1fi -"@stdlib/string-base-constantcase",1fj -"@stdlib/string/base/distances/levenshtein",1fk -"@stdlib/string-base-distances-levenshtein",1fl -"@stdlib/string/base/distances",1fm -"@stdlib/string-base-distances",1fn -"@stdlib/string/base/dotcase",1fo -"@stdlib/string-base-dotcase",1fp -"@stdlib/string/base/ends-with",1fq -"@stdlib/string-base-ends-with",1fr -"@stdlib/string/base/first-code-point",1fs -"@stdlib/string-base-first-code-point",1ft -"@stdlib/string/base/first-grapheme-cluster",1fu -"@stdlib/string-base-first-grapheme-cluster",1fv -"@stdlib/string/base/first",1fw -"@stdlib/string-base-first",1fx -"@stdlib/string/base/for-each-code-point",1fy -"@stdlib/string-base-for-each-code-point",1fz -"@stdlib/string/base/for-each-grapheme-cluster",1g0 -"@stdlib/string-base-for-each-grapheme-cluster",1g1 -"@stdlib/string/base/for-each",1g2 -"@stdlib/string-base-for-each",1g3 -"@stdlib/string/base/headercase",1g4 -"@stdlib/string-base-headercase",1g5 -"@stdlib/string/base/invcase",1g6 -"@stdlib/string-base-invcase",1g7 -"@stdlib/string/base/kebabcase",1g8 -"@stdlib/string-base-kebabcase",1g9 -"@stdlib/string/base/left-pad",1gA -"@stdlib/string-base-left-pad",1gB -"@stdlib/string/base/left-trim",1gC -"@stdlib/string-base-left-trim",1gD -"@stdlib/string/base/lowercase",1gE -"@stdlib/string-base-lowercase",1gF -"@stdlib/string/base/pascalcase",1gG -"@stdlib/string-base-pascalcase",1gH -"@stdlib/string/base/percent-encode",1gI -"@stdlib/string-base-percent-encode",1gJ -"@stdlib/string/base/remove-first-code-point",1gK -"@stdlib/string-base-remove-first-code-point",1gL -"@stdlib/string/base/remove-first-grapheme-cluster",1gM -"@stdlib/string-base-remove-first-grapheme-cluster",1gN -"@stdlib/string/base/remove-first",1gO -"@stdlib/string-base-remove-first",1gP -"@stdlib/string/base/repeat",1gQ -"@stdlib/string-base-repeat",1gR -"@stdlib/string/base/replace-before",1gS -"@stdlib/string-base-replace-before",1gT -"@stdlib/string/base/replace",1gU -"@stdlib/string-base-replace",1gV -"@stdlib/string/base/right-pad",1gW -"@stdlib/string-base-right-pad",1gX -"@stdlib/string/base/right-trim",1gY -"@stdlib/string-base-right-trim",1gZ -"@stdlib/string/base/snakecase",1ga -"@stdlib/string-base-snakecase",1gb -"@stdlib/string/base/startcase",1gc -"@stdlib/string-base-startcase",1gd -"@stdlib/string/base/starts-with",1ge -"@stdlib/string-base-starts-with",1gf -"@stdlib/string/base/trim",1gg -"@stdlib/string-base-trim",1gh -"@stdlib/string/base/uncapitalize",1gi -"@stdlib/string-base-uncapitalize",1gj -"@stdlib/string/base/uppercase",1gk -"@stdlib/string-base-uppercase",1gl -"@stdlib/string/dotcase",1gm -"@stdlib/string-dotcase",1gn -"@stdlib/string/first",1go -"@stdlib/string-first",1gp -"@stdlib/string/for-each",1gq -"@stdlib/string-for-each",1gr -"@stdlib/string/headercase",1gs -"@stdlib/string-headercase",1gt -"@stdlib/string/num2words",1gu -"@stdlib/string-num2words",1gv -"@stdlib/string/replace-before",1gw -"@stdlib/string-replace-before",1gx -"@stdlib/string/to-grapheme-cluster-iterator-right",1gy -"@stdlib/string-to-grapheme-cluster-iterator-right",1gz -"@stdlib/string/to-grapheme-cluster-iterator",1h0 -"@stdlib/string-to-grapheme-cluster-iterator",1h1 -"@stdlib/time/base",1h2 -"@stdlib/time-base",1h3 -"@stdlib/time/base/parse-duration",1h4 -"@stdlib/time-base-parse-duration",1h5 -"@stdlib/time/current-year",1h6 -"@stdlib/time-current-year",1h7 -"@stdlib/time/duration2ms",1h8 -"@stdlib/time-duration2ms",1h9 -"@stdlib/time/ms2duration",1hA -"@stdlib/time-ms2duration",1hB -"@stdlib/utils/decorate-after",1hC -"@stdlib/utils-decorate-after",1hD -"@stdlib/utils/dsv/base",1hE -"@stdlib/utils-dsv-base",1hF -"@stdlib/utils/dsv/base/parse",1hG -"@stdlib/utils-dsv-base-parse",1hH -"@stdlib/utils/dsv",1hI -"@stdlib/utils-dsv",1hJ -"@stdlib/utils/thunk",1hK -"@stdlib/utils-thunk",1hL -"@stdlib/array/base/broadcast-array",1hM -"@stdlib/array-base-broadcast-array",1hN -"@stdlib/array/base/filled2d-by",1hO -"@stdlib/array-base-filled2d-by",1hP -"@stdlib/array/base/filled3d-by",1hQ -"@stdlib/array-base-filled3d-by",1hR -"@stdlib/array/base/filled3d",1hS -"@stdlib/array-base-filled3d",1hT -"@stdlib/array/base/filled4d-by",1hU -"@stdlib/array-base-filled4d-by",1hV -"@stdlib/array/base/filled4d",1hW -"@stdlib/array-base-filled4d",1hX -"@stdlib/array/base/filled5d-by",1hY -"@stdlib/array-base-filled5d-by",1hZ -"@stdlib/array/base/filled5d",1ha -"@stdlib/array-base-filled5d",1hb -"@stdlib/array/base/fillednd",1hc -"@stdlib/array-base-fillednd",1hd -"@stdlib/array/base/flatten-by",1he -"@stdlib/array-base-flatten-by",1hf -"@stdlib/array/base/one-to",1hg -"@stdlib/array-base-one-to",1hh -"@stdlib/array/base/ones3d",1hi -"@stdlib/array-base-ones3d",1hj -"@stdlib/array/base/ones4d",1hk -"@stdlib/array-base-ones4d",1hl -"@stdlib/array/base/ones5d",1hm -"@stdlib/array-base-ones5d",1hn -"@stdlib/array/base/onesnd",1ho -"@stdlib/array-base-onesnd",1hp -"@stdlib/array/base/unary2d",1hq -"@stdlib/array-base-unary2d",1hr -"@stdlib/array/base/zeros3d",1hs -"@stdlib/array-base-zeros3d",1ht -"@stdlib/array/base/zeros4d",1hu -"@stdlib/array-base-zeros4d",1hv -"@stdlib/array/base/zeros5d",1hw -"@stdlib/array-base-zeros5d",1hx -"@stdlib/array/base/zerosnd",1hy -"@stdlib/array-base-zerosnd",1hz -"@stdlib/array/base/binary2d",1i0 -"@stdlib/array-base-binary2d",1i1 -"@stdlib/array/base/binary3d",1i2 -"@stdlib/array-base-binary3d",1i3 -"@stdlib/array/base/binary4d",1i4 -"@stdlib/array-base-binary4d",1i5 -"@stdlib/array/base/binary5d",1i6 -"@stdlib/array-base-binary5d",1i7 -"@stdlib/array/base/binarynd",1i8 -"@stdlib/array-base-binarynd",1i9 -"@stdlib/array/base/broadcasted-binary2d",1iA -"@stdlib/array-base-broadcasted-binary2d",1iB -"@stdlib/array/base/broadcasted-binary3d",1iC -"@stdlib/array-base-broadcasted-binary3d",1iD -"@stdlib/array/base/broadcasted-binary4d",1iE -"@stdlib/array-base-broadcasted-binary4d",1iF -"@stdlib/array/base/broadcasted-binary5d",1iG -"@stdlib/array-base-broadcasted-binary5d",1iH -"@stdlib/array/base/broadcasted-unary2d",1iI -"@stdlib/array-base-broadcasted-unary2d",1iJ -"@stdlib/array/base/broadcasted-unary3d",1iK -"@stdlib/array-base-broadcasted-unary3d",1iL -"@stdlib/array/base/broadcasted-unary4d",1iM -"@stdlib/array-base-broadcasted-unary4d",1iN -"@stdlib/array/base/broadcasted-unary5d",1iO -"@stdlib/array-base-broadcasted-unary5d",1iP -"@stdlib/array/base/fillednd-by",1iQ -"@stdlib/array-base-fillednd-by",1iR -"@stdlib/array/base/unary3d",1iS -"@stdlib/array-base-unary3d",1iT -"@stdlib/array/base/unary4d",1iU -"@stdlib/array-base-unary4d",1iV -"@stdlib/array/base/unary5d",1iW -"@stdlib/array-base-unary5d",1iX -"@stdlib/array/base/unarynd",1iY -"@stdlib/array-base-unarynd",1iZ -"@stdlib/array/base/mskbinary2d",1ia -"@stdlib/array-base-mskbinary2d",1ib -"@stdlib/array/base/mskunary2d",1ic -"@stdlib/array-base-mskunary2d",1id -"@stdlib/array/base/mskunary3d",1ie -"@stdlib/array-base-mskunary3d",1if -"@stdlib/array/base/unary2d-by",1ig -"@stdlib/array-base-unary2d-by",1ih -"@stdlib/assert/is-multi-slice",1ii -"@stdlib/assert-is-multi-slice",1ij -"@stdlib/assert/is-slice",1ik -"@stdlib/assert-is-slice",1il -"@stdlib/math/base/special/log1pmx",1im -"@stdlib/math-base-special-log1pmx",1in -"@stdlib/slice/base",1io -"@stdlib/slice-base",1ip -"@stdlib/slice/base/seq2slice",1iq -"@stdlib/slice-base-seq2slice",1ir -"@stdlib/slice/base/slice2seq",1is -"@stdlib/slice-base-slice2seq",1it -"@stdlib/slice/base/str2multislice",1iu -"@stdlib/slice-base-str2multislice",1iv -"@stdlib/slice/base/str2slice",1iw -"@stdlib/slice-base-str2slice",1ix -"@stdlib/slice/ctor",1iy -"@stdlib/slice-ctor",1iz -"@stdlib/slice/multi",1j0 -"@stdlib/slice-multi",1j1 -"@stdlib/slice",1j3 -"@stdlib/slice/seq2slice",1j4 -"@stdlib/slice-seq2slice",1j5 -"@stdlib/ndarray/fancy",1j6 -"@stdlib/ndarray-fancy",1j7 -"@stdlib/slice/base/length",1j8 -"@stdlib/slice-base-length",1j9 -"@stdlib/slice/base/normalize-multi-slice",1jA -"@stdlib/slice-base-normalize-multi-slice",1jB -"@stdlib/slice/base/normalize-slice",1jC -"@stdlib/slice-base-normalize-slice",1jD -"@stdlib/slice/base/seq2multislice",1jE -"@stdlib/slice-base-seq2multislice",1jF -"@stdlib/slice/base/shape",1jG -"@stdlib/slice-base-shape",1jH -"@stdlib/string/base/remove-last-code-point",1jI -"@stdlib/string-base-remove-last-code-point",1jJ -"@stdlib/string/base/remove-last-grapheme-cluster",1jK -"@stdlib/string-base-remove-last-grapheme-cluster",1jL -"@stdlib/string/base/remove-last",1jM -"@stdlib/string-base-remove-last",1jN -"@stdlib/ndarray/base/slice-assign",1jO -"@stdlib/ndarray-base-slice-assign",1jP -"@stdlib/ndarray/base/slice",1jQ -"@stdlib/ndarray-base-slice",1jR -"@stdlib/ndarray/slice-assign",1jS -"@stdlib/ndarray-slice-assign",1jT -"@stdlib/ndarray/slice",1jU -"@stdlib/ndarray-slice",1jV -"@stdlib/slice/base/nonreduced-dimensions",1jW -"@stdlib/slice-base-nonreduced-dimensions",1jX -"@stdlib/slice/base/reduced-dimensions",1jY -"@stdlib/slice-base-reduced-dimensions",1jZ -"@stdlib/slice/base/sargs2multislice",1ja -"@stdlib/slice-base-sargs2multislice",1jb -"@stdlib/ndarray/base/ndims",1jc -"@stdlib/ndarray-base-ndims",1jd -"@stdlib/ndarray/base/next-cartesian-index",1je -"@stdlib/ndarray-base-next-cartesian-index",1jf -"@stdlib/ndarray/base/offset",1jg -"@stdlib/ndarray-base-offset",1jh -"@stdlib/ndarray/base/shape",1ji -"@stdlib/ndarray-base-shape",1jj -"@stdlib/ndarray/base/strides",1jk -"@stdlib/ndarray-base-strides",1jl -"@stdlib/ndarray/broadcast-array",1jm -"@stdlib/ndarray-broadcast-array",1jn -"@stdlib/ndarray/iter/columns",1jo -"@stdlib/ndarray-iter-columns",1jp -"@stdlib/ndarray/iter/entries",1jq -"@stdlib/ndarray-iter-entries",1jr -"@stdlib/ndarray/iter/indices",1js -"@stdlib/ndarray-iter-indices",1jt -"@stdlib/ndarray/iter",1ju -"@stdlib/ndarray-iter",1jv -"@stdlib/ndarray/iter/rows",1jw -"@stdlib/ndarray-iter-rows",1jx -"@stdlib/ndarray/iter/to-array-each",1jy -"@stdlib/ndarray-iter-to-array-each",1jz -"@stdlib/ndarray/iter/values",1k0 -"@stdlib/ndarray-iter-values",1k1 -"@stdlib/ndarray/maybe-broadcast-array",1k2 -"@stdlib/ndarray-maybe-broadcast-array",1k3 -"@stdlib/ndarray/ndims",1k4 -"@stdlib/ndarray-ndims",1k5 -"@stdlib/ndarray/numel",1k6 -"@stdlib/ndarray-numel",1k7 -"@stdlib/ndarray/offset",1k8 -"@stdlib/ndarray-offset",1k9 -"@stdlib/ndarray/shape",1kA -"@stdlib/ndarray-shape",1kB -"@stdlib/ndarray/strides",1kC -"@stdlib/ndarray-strides",1kD -"@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast",1kE -"@stdlib/ndarray-base-assert-is-mostly-safe-data-type-cast",1kF -"@stdlib/ndarray/base/assign",1kG -"@stdlib/ndarray-base-assign",1kH -"@stdlib/ndarray/base/data-buffer",1kI -"@stdlib/ndarray-base-data-buffer",1kJ -"@stdlib/ndarray/base/dtype",1kK -"@stdlib/ndarray-base-dtype",1kL -"@stdlib/ndarray/base/order",1kM -"@stdlib/ndarray-base-order",1kN -"@stdlib/ndarray/base/reverse",1kO -"@stdlib/ndarray-base-reverse",1kP -"@stdlib/ndarray/base/slice-dimension",1kQ -"@stdlib/ndarray-base-slice-dimension",1kR -"@stdlib/ndarray/data-buffer",1kS -"@stdlib/ndarray-data-buffer",1kT -"@stdlib/ndarray/dtype",1kU -"@stdlib/ndarray-dtype",1kV -"@stdlib/ndarray/mostly-safe-casts",1kW -"@stdlib/ndarray-mostly-safe-casts",1kX -"@stdlib/ndarray/order",1kY -"@stdlib/ndarray-order",1kZ -"@stdlib/ndarray/slice-dimension",1ka -"@stdlib/ndarray-slice-dimension",1kb -"@stdlib/slice/base/args2multislice",1kc -"@stdlib/slice-base-args2multislice",1kd -"@stdlib/array/base/broadcasted-quaternary2d",1ke -"@stdlib/array-base-broadcasted-quaternary2d",1kf -"@stdlib/array/base/broadcasted-quinary2d",1kg -"@stdlib/array-base-broadcasted-quinary2d",1kh -"@stdlib/array/base/broadcasted-ternary2d",1ki -"@stdlib/array-base-broadcasted-ternary2d",1kj -"@stdlib/array/base/quaternary2d",1kk -"@stdlib/array-base-quaternary2d",1kl -"@stdlib/array/base/quinary2d",1km -"@stdlib/array-base-quinary2d",1kn -"@stdlib/array/base/strided2array2d",1ko -"@stdlib/array-base-strided2array2d",1kp -"@stdlib/array/base/strided2array3d",1kq -"@stdlib/array-base-strided2array3d",1kr -"@stdlib/array/base/strided2array4d",1ks -"@stdlib/array-base-strided2array4d",1kt -"@stdlib/array/base/strided2array5d",1ku -"@stdlib/array-base-strided2array5d",1kv -"@stdlib/array/base/ternary2d",1kw -"@stdlib/array-base-ternary2d",1kx -"@stdlib/array/base/ternary3d",1ky -"@stdlib/array-base-ternary3d",1kz -"@stdlib/array/base/ternary4d",1l0 -"@stdlib/array-base-ternary4d",1l1 -"@stdlib/array/base/ternary5d",1l2 -"@stdlib/array-base-ternary5d",1l3 -"@stdlib/ndarray/base/fliplr",1l4 -"@stdlib/ndarray-base-fliplr",1l5 -"@stdlib/ndarray/base/flipud",1l6 -"@stdlib/ndarray-base-flipud",1l7 -"@stdlib/ndarray/base/normalize-index",1l8 -"@stdlib/ndarray-base-normalize-index",1l9 -"@stdlib/ndarray/base/reverse-dimension",1lA -"@stdlib/ndarray-base-reverse-dimension",1lB -"@stdlib/ndarray/base/slice-dimension-from",1lC -"@stdlib/ndarray-base-slice-dimension-from",1lD -"@stdlib/ndarray/base/slice-dimension-to",1lE -"@stdlib/ndarray-base-slice-dimension-to",1lF -"@stdlib/ndarray/base/slice-from",1lG -"@stdlib/ndarray-base-slice-from",1lH -"@stdlib/ndarray/base/slice-to",1lI -"@stdlib/ndarray-base-slice-to",1lJ -"@stdlib/ndarray/iter/column-entries",1lK -"@stdlib/ndarray-iter-column-entries",1lL -"@stdlib/ndarray/iter/matrices",1lM -"@stdlib/ndarray-iter-matrices",1lN -"@stdlib/ndarray/iter/matrix-entries",1lO -"@stdlib/ndarray-iter-matrix-entries",1lP -"@stdlib/ndarray/iter/row-entries",1lQ -"@stdlib/ndarray-iter-row-entries",1lR -"@stdlib/ndarray/slice-dimension-from",1lS -"@stdlib/ndarray-slice-dimension-from",1lT -"@stdlib/ndarray/slice-dimension-to",1lU -"@stdlib/ndarray-slice-dimension-to",1lV -"@stdlib/string/base/reverse-code-points",1lW -"@stdlib/string-base-reverse-code-points",1lX -"@stdlib/string/base/reverse-grapheme-clusters",1lY -"@stdlib/string-base-reverse-grapheme-clusters",1lZ -"@stdlib/string/base/reverse",1la -"@stdlib/string-base-reverse",1lb -"@stdlib/string/base/truncate-middle",1lc -"@stdlib/string-base-truncate-middle",1ld -"@stdlib/string/next-code-point-index",1le -"@stdlib/string-next-code-point-index",1lf -"@stdlib/array/base/fliplr2d",1lg -"@stdlib/array-base-fliplr2d",1lh -"@stdlib/array/base/flipud2d",1li -"@stdlib/array-base-flipud2d",1lj -"@stdlib/array/base/from-strided",1lk -"@stdlib/array-base-from-strided",1ll -"@stdlib/array/base/map2d",1lm -"@stdlib/array-base-map2d",1ln -"@stdlib/array/base/map3d",1lo -"@stdlib/array-base-map3d",1lp -"@stdlib/array/base/quaternary3d",1lq -"@stdlib/array-base-quaternary3d",1lr -"@stdlib/array/base/quaternary4d",1ls -"@stdlib/array-base-quaternary4d",1lt -"@stdlib/array/base/quaternary5d",1lu -"@stdlib/array-base-quaternary5d",1lv -"@stdlib/array/base/resolve-getter",1lw -"@stdlib/array-base-resolve-getter",1lx -"@stdlib/array/base/take-indexed",1ly -"@stdlib/array-base-take-indexed",1lz -"@stdlib/array/base/take2d",1m0 -"@stdlib/array-base-take2d",1m1 -"@stdlib/math/base/napi/quaternary",1m2 -"@stdlib/math-base-napi-quaternary",1m3 -"@stdlib/math/base/napi/quinary",1m4 -"@stdlib/math-base-napi-quinary",1m5 -"@stdlib/math/base/ops/add3",1m6 -"@stdlib/math-base-ops-add3",1m7 -"@stdlib/math/base/ops/add4",1m8 -"@stdlib/math-base-ops-add4",1m9 -"@stdlib/math/base/ops/add5",1mA -"@stdlib/math-base-ops-add5",1mB -"@stdlib/math/base/ops/div",1mC -"@stdlib/math-base-ops-div",1mD -"@stdlib/math/base/ops/divf",1mE -"@stdlib/math-base-ops-divf",1mF -"@stdlib/math/base/special/factorial2",1mG -"@stdlib/math-base-special-factorial2",1mH -"@stdlib/array/base/fliplr3d",1mI -"@stdlib/array-base-fliplr3d",1mJ -"@stdlib/array/base/fliplr4d",1mK -"@stdlib/array-base-fliplr4d",1mL -"@stdlib/array/base/fliplr5d",1mM -"@stdlib/array-base-fliplr5d",1mN -"@stdlib/array/base/map4d",1mO -"@stdlib/array-base-map4d",1mP -"@stdlib/array/base/map5d",1mQ -"@stdlib/array-base-map5d",1mR -"@stdlib/array/base/take3d",1mS -"@stdlib/array-base-take3d",1mT -"@stdlib/assert/is-complex128matrix-like",1mU -"@stdlib/assert-is-complex128matrix-like",1mV -"@stdlib/assert/is-complex128ndarray-like",1mW -"@stdlib/assert-is-complex128ndarray-like",1mX -"@stdlib/assert/is-complex128vector-like",1mY -"@stdlib/assert-is-complex128vector-like",1mZ -"@stdlib/assert/is-complex64matrix-like",1ma -"@stdlib/assert-is-complex64matrix-like",1mb -"@stdlib/assert/is-complex64ndarray-like",1mc -"@stdlib/assert-is-complex64ndarray-like",1md -"@stdlib/assert/is-complex64vector-like",1me -"@stdlib/assert-is-complex64vector-like",1mf -"@stdlib/ndarray/base/stride",1mg -"@stdlib/ndarray-base-stride",1mh -"@stdlib/ndarray/slice-to",1mi -"@stdlib/ndarray-slice-to",1mj -"@stdlib/ndarray/stride",1mk -"@stdlib/ndarray-stride",1ml -"@stdlib/array/base/first",1mm -"@stdlib/array-base-first",1mn -"@stdlib/array/base/index-of",1mo -"@stdlib/array-base-index-of",1mp -"@stdlib/array/base/last-index-of",1mq -"@stdlib/array-base-last-index-of",1mr -"@stdlib/array/base/slice",1ms -"@stdlib/array-base-slice",1mt -"@stdlib/iter/while-each",1mu -"@stdlib/iter-while-each",1mv -"@stdlib/ndarray/slice-from",1mw -"@stdlib/ndarray-slice-from",1mx -"@stdlib/string/base/altcase",1my -"@stdlib/string-base-altcase",1mz -"@stdlib/string/base/distances/hamming",1n0 -"@stdlib/string-base-distances-hamming",1n1 -"@stdlib/array/base/bifurcate-entries",1n2 -"@stdlib/array-base-bifurcate-entries",1n3 -"@stdlib/array/base/bifurcate-indices",1n4 -"@stdlib/array-base-bifurcate-indices",1n5 -"@stdlib/array/base/bifurcate-values",1n6 -"@stdlib/array-base-bifurcate-values",1n7 -"@stdlib/array/base/dedupe",1n8 -"@stdlib/array-base-dedupe",1n9 -"@stdlib/array/base/flipud3d",1nA -"@stdlib/array-base-flipud3d",1nB -"@stdlib/array/base/flipud4d",1nC -"@stdlib/array-base-flipud4d",1nD -"@stdlib/array/base/flipud5d",1nE -"@stdlib/array-base-flipud5d",1nF -"@stdlib/array/base/group-entries",1nG -"@stdlib/array-base-group-entries",1nH -"@stdlib/array/base/group-indices",1nI -"@stdlib/array-base-group-indices",1nJ -"@stdlib/array/base/group-values",1nK -"@stdlib/array-base-group-values",1nL -"@stdlib/array/base/quinary3d",1nM -"@stdlib/array-base-quinary3d",1nN -"@stdlib/array/base/quinary4d",1nO -"@stdlib/array-base-quinary4d",1nP -"@stdlib/array/base/quinary5d",1nQ -"@stdlib/array-base-quinary5d",1nR -"@stdlib/array/base/to-deduped",1nS -"@stdlib/array-base-to-deduped",1nT -"@stdlib/ndarray/base/broadcast-arrays",1nU -"@stdlib/ndarray-base-broadcast-arrays",1nV -"@stdlib/ndarray/base/flags",1nW -"@stdlib/ndarray-base-flags",1nX -"@stdlib/ndarray/base/maybe-broadcast-arrays",1nY -"@stdlib/ndarray-base-maybe-broadcast-arrays",1nZ -"@stdlib/ndarray/broadcast-arrays",1na -"@stdlib/ndarray-broadcast-arrays",1nb -"@stdlib/ndarray/maybe-broadcast-arrays",1nc -"@stdlib/ndarray-maybe-broadcast-arrays",1nd -"@stdlib/array/base/bifurcate-entries-by",1ne -"@stdlib/array-base-bifurcate-entries-by",1nf -"@stdlib/array/base/bifurcate-indices-by",1ng -"@stdlib/array-base-bifurcate-indices-by",1nh -"@stdlib/array/base/bifurcate-values-by",1ni -"@stdlib/array-base-bifurcate-values-by",1nj -"@stdlib/array/base/group-entries-by",1nk -"@stdlib/array-base-group-entries-by",1nl -"@stdlib/array/base/group-indices-by",1nm -"@stdlib/array-base-group-indices-by",1nn -"@stdlib/array/base/group-values-by",1no -"@stdlib/array-base-group-values-by",1np -"@stdlib/array/defaults",1nq -"@stdlib/array-defaults",1nr -"@stdlib/ndarray/base/flag",1ns -"@stdlib/ndarray-base-flag",1nt -"@stdlib/ndarray/base/numel-dimension",1nu -"@stdlib/ndarray-base-numel-dimension",1nv -"@stdlib/ndarray/flag",1nw -"@stdlib/ndarray-flag",1nx -"@stdlib/ndarray/flags",1ny -"@stdlib/ndarray-flags",1nz -"@stdlib/ndarray/numel-dimension",1o0 -"@stdlib/ndarray-numel-dimension",1o1 -"@stdlib/random/array/bernoulli",1o2 -"@stdlib/random-array-bernoulli",1o3 -"@stdlib/random/array/chi",1o4 -"@stdlib/random-array-chi",1o5 -"@stdlib/random/array/chisquare",1o6 -"@stdlib/random-array-chisquare",1o7 -"@stdlib/random/array/poisson",1o8 -"@stdlib/random-array-poisson",1o9 -"@stdlib/random/array/rayleigh",1oA -"@stdlib/random-array-rayleigh",1oB -"@stdlib/random/array/t",1oC -"@stdlib/random-array-t",1oD -"@stdlib/random/array/tools/nullary",1oE -"@stdlib/random-array-tools-nullary",1oF -"@stdlib/random/array/tools/unary-factory",1oG -"@stdlib/random-array-tools-unary-factory",1oH -"@stdlib/random/array/tools/unary",1oI -"@stdlib/random-array-tools-unary",1oJ -"@stdlib/array/base/any-by-right",1oK -"@stdlib/array-base-any-by-right",1oL -"@stdlib/array/base/any-by",1oM -"@stdlib/array-base-any-by",1oN -"@stdlib/array/base/any",1oO -"@stdlib/array-base-any",1oP -"@stdlib/array/base/assert/has-same-values",1oQ -"@stdlib/array-base-assert-has-same-values",1oR -"@stdlib/array/base/assert/is-complex128array",1oS -"@stdlib/array-base-assert-is-complex128array",1oT -"@stdlib/array/base/assert/is-complex64array",1oU -"@stdlib/array-base-assert-is-complex64array",1oV -"@stdlib/array/base/at",1oW -"@stdlib/array-base-at",1oX -"@stdlib/array/base/at2d",1oY -"@stdlib/array-base-at2d",1oZ -"@stdlib/array/base/at3d",1oa -"@stdlib/array-base-at3d",1ob -"@stdlib/array/base/at4d",1oc -"@stdlib/array-base-at4d",1od -"@stdlib/array/base/at5d",1oe -"@stdlib/array-base-at5d",1of -"@stdlib/array/base/atnd",1og -"@stdlib/array-base-atnd",1oh -"@stdlib/array/base/every-by-right",1oi -"@stdlib/array-base-every-by-right",1oj -"@stdlib/array/base/every-by",1ok -"@stdlib/array-base-every-by",1ol -"@stdlib/array/base/every",1om -"@stdlib/array-base-every",1on -"@stdlib/array/base/filter",1oo -"@stdlib/array-base-filter",1op -"@stdlib/array/base/mskfilter",1oq -"@stdlib/array-base-mskfilter",1or -"@stdlib/array/base/none-by-right",1os -"@stdlib/array-base-none-by-right",1ot -"@stdlib/array/base/none-by",1ou -"@stdlib/array-base-none-by",1ov -"@stdlib/array/base/none",1ow -"@stdlib/array-base-none",1ox -"@stdlib/array/base/resolve-setter",1oy -"@stdlib/array-base-resolve-setter",1oz -"@stdlib/array/base/reverse",1p0 -"@stdlib/array-base-reverse",1p1 -"@stdlib/array/base/to-reversed",1p2 -"@stdlib/array-base-to-reversed",1p3 -"@stdlib/array/cartesian-power",1p4 -"@stdlib/array-cartesian-power",1p5 -"@stdlib/array/cartesian-product",1p6 -"@stdlib/array-cartesian-product",1p7 -"@stdlib/array/cartesian-square",1p8 -"@stdlib/array-cartesian-square",1p9 -"@stdlib/array/one-to-like",1pA -"@stdlib/array-one-to-like",1pB -"@stdlib/array/one-to",1pC -"@stdlib/array-one-to",1pD -"@stdlib/array/slice",1pE -"@stdlib/array-slice",1pF -"@stdlib/array/zero-to-like",1pG -"@stdlib/array-zero-to-like",1pH -"@stdlib/array/zero-to",1pI -"@stdlib/array-zero-to",1pJ -"@stdlib/assert/is-same-array",1pK -"@stdlib/assert-is-same-array",1pL -"@stdlib/assert/is-same-complex128",1pM -"@stdlib/assert-is-same-complex128",1pN -"@stdlib/assert/is-same-complex128array",1pO -"@stdlib/assert-is-same-complex128array",1pP -"@stdlib/assert/is-same-complex64",1pQ -"@stdlib/assert-is-same-complex64",1pR -"@stdlib/assert/is-same-complex64array",1pS -"@stdlib/assert-is-same-complex64array",1pT -"@stdlib/assert/is-same-float32array",1pU -"@stdlib/assert-is-same-float32array",1pV -"@stdlib/assert/is-same-float64array",1pW -"@stdlib/assert-is-same-float64array",1pX -"@stdlib/complex/float64/base/assert/is-equal",1pY -"@stdlib/complex-base-assert-is-equal",1pZ -"@stdlib/complex/base/assert/is-equalf",1pa -"@stdlib/complex-base-assert-is-equalf",1pb -"@stdlib/complex/base/assert/is-not-equal",1pc -"@stdlib/complex-base-assert-is-not-equal",1pd -"@stdlib/complex/base/assert/is-not-equalf",1pe -"@stdlib/complex-base-assert-is-not-equalf",1pf -"@stdlib/complex/base/assert/is-same-value-zero",1pg -"@stdlib/complex-base-assert-is-same-value-zero",1ph -"@stdlib/complex/base/assert/is-same-value-zerof",1pi -"@stdlib/complex-base-assert-is-same-value-zerof",1pj -"@stdlib/complex/base/assert/is-same-value",1pk -"@stdlib/complex-base-assert-is-same-value",1pl -"@stdlib/complex/base/assert/is-same-valuef",1pm -"@stdlib/complex-base-assert-is-same-valuef",1pn -"@stdlib/complex/base/assert",1po -"@stdlib/complex-base-assert",1pp -"@stdlib/constants/complex128/nan",1pq -"@stdlib/constants-complex128-nan",1pr -"@stdlib/constants/complex128/zero",1ps -"@stdlib/constants-complex128-zero",1pt -"@stdlib/constants/complex64/nan",1pu -"@stdlib/constants-complex64-nan",1pv -"@stdlib/constants/complex64/zero",1pw -"@stdlib/constants-complex64-zero",1px -"@stdlib/constants/float32/nan",1py -"@stdlib/constants-float32-nan",1pz -"@stdlib/constants/float64/nan",1q0 -"@stdlib/constants-float64-nan",1q1 -"@stdlib/ndarray/at",1q2 -"@stdlib/ndarray-at",1q3 -"@stdlib/number/float32/base/assert/is-same-value-zero",1q4 -"@stdlib/number-float32-base-assert-is-same-value-zero",1q5 -"@stdlib/number/float32/base/assert/is-same-value",1q6 -"@stdlib/number-float32-base-assert-is-same-value",1q7 -"@stdlib/number/float32/base/assert",1q8 -"@stdlib/number-float32-base-assert",1q9 -"@stdlib/number/float64/base/assert/is-same-value-zero",1qA -"@stdlib/number-float64-base-assert-is-same-value-zero",1qB -"@stdlib/number/float64/base/assert/is-same-value",1qC -"@stdlib/number-float64-base-assert-is-same-value",1qD -"@stdlib/number/float64/base/assert",1qE -"@stdlib/number-float64-base-assert",1qF -"@stdlib/random/array/binomial",1qG -"@stdlib/random-array-binomial",1qH -"@stdlib/random/array/cauchy",1qI -"@stdlib/random-array-cauchy",1qJ -"@stdlib/random/array/erlang",1qK -"@stdlib/random-array-erlang",1qL -"@stdlib/random/array/f",1qM -"@stdlib/random-array-f",1qN -"@stdlib/random/array/frechet",1qO -"@stdlib/random-array-frechet",1qP -"@stdlib/random/array/gumbel",1qQ -"@stdlib/random-array-gumbel",1qR -"@stdlib/random/array/hypergeometric",1qS -"@stdlib/random-array-hypergeometric",1qT -"@stdlib/random/array/kumaraswamy",1qU -"@stdlib/random-array-kumaraswamy",1qV -"@stdlib/random/array/laplace",1qW -"@stdlib/random-array-laplace",1qX -"@stdlib/random/array/levy",1qY -"@stdlib/random-array-levy",1qZ -"@stdlib/random/array/logistic",1qa -"@stdlib/random-array-logistic",1qb -"@stdlib/random/array/negative-binomial",1qc -"@stdlib/random-array-negative-binomial",1qd -"@stdlib/random/array/pareto-type1",1qe -"@stdlib/random-array-pareto-type1",1qf -"@stdlib/random/array/tools/binary-factory",1qg -"@stdlib/random-array-tools-binary-factory",1qh -"@stdlib/random/array/tools/binary",1qi -"@stdlib/random-array-tools-binary",1qj -"@stdlib/random/array/tools/ternary-factory",1qk -"@stdlib/random-array-tools-ternary-factory",1ql -"@stdlib/random/array/tools/ternary",1qm -"@stdlib/random-array-tools-ternary",1qn -"@stdlib/random/array/triangular",1qo -"@stdlib/random-array-triangular",1qp -"@stdlib/random/array/weibull",1qq -"@stdlib/random-array-weibull",1qr -"@stdlib/array/base/assert/is-complex-floating-point-data-type",1qs -"@stdlib/array-base-assert-is-complex-floating-point-data-type",1qt -"@stdlib/array/base/assert/is-data-type",1qu -"@stdlib/array-base-assert-is-data-type",1qv -"@stdlib/array/base/assert/is-floating-point-data-type",1qw -"@stdlib/array-base-assert-is-floating-point-data-type",1qx -"@stdlib/array/base/assert/is-integer-data-type",1qy -"@stdlib/array-base-assert-is-integer-data-type",1qz -"@stdlib/array/base/assert/is-mostly-safe-data-type-cast",1r0 -"@stdlib/array-base-assert-is-mostly-safe-data-type-cast",1r1 -"@stdlib/array/base/assert/is-numeric-data-type",1r2 -"@stdlib/array-base-assert-is-numeric-data-type",1r3 -"@stdlib/array/base/assert/is-real-data-type",1r4 -"@stdlib/array-base-assert-is-real-data-type",1r5 -"@stdlib/array/base/assert/is-real-floating-point-data-type",1r6 -"@stdlib/array-base-assert-is-real-floating-point-data-type",1r7 -"@stdlib/array/base/assert/is-safe-data-type-cast",1r8 -"@stdlib/array-base-assert-is-safe-data-type-cast",1r9 -"@stdlib/array/base/assert/is-same-kind-data-type-cast",1rA -"@stdlib/array-base-assert-is-same-kind-data-type-cast",1rB -"@stdlib/array/base/assert/is-signed-integer-data-type",1rC -"@stdlib/array-base-assert-is-signed-integer-data-type",1rD -"@stdlib/array/base/assert/is-unsigned-integer-data-type",1rE -"@stdlib/array-base-assert-is-unsigned-integer-data-type",1rF -"@stdlib/array/base/fancy-slice-assign",1rG -"@stdlib/array-base-fancy-slice-assign",1rH -"@stdlib/array/base/fancy-slice",1rI -"@stdlib/array-base-fancy-slice",1rJ -"@stdlib/array/base/min-signed-integer-dtype",1rK -"@stdlib/array-base-min-signed-integer-dtype",1rL -"@stdlib/array/base/min-unsigned-integer-dtype",1rM -"@stdlib/array-base-min-unsigned-integer-dtype",1rN -"@stdlib/array/base/mskreject",1rO -"@stdlib/array-base-mskreject",1rP -"@stdlib/array/base/reject",1rQ -"@stdlib/array-base-reject",1rR -"@stdlib/array/from-scalar",1rS -"@stdlib/array-from-scalar",1rT -"@stdlib/array/mostly-safe-casts",1rU -"@stdlib/array-mostly-safe-casts",1rV -"@stdlib/array/to-fancy",1rW -"@stdlib/array-to-fancy",1rX -"@stdlib/random/array/tools",1rY -"@stdlib/random-array-tools",1rZ -"@stdlib/random/strided/bernoulli",1ra -"@stdlib/random-strided-bernoulli",1rb -"@stdlib/random/strided/chi",1rc -"@stdlib/random-strided-chi",1rd -"@stdlib/random/strided/chisquare",1re -"@stdlib/random-strided-chisquare",1rf -"@stdlib/random/strided/geometric",1rg -"@stdlib/random-strided-geometric",1rh -"@stdlib/random/strided/poisson",1ri -"@stdlib/random-strided-poisson",1rj -"@stdlib/random/strided/rayleigh",1rk -"@stdlib/random-strided-rayleigh",1rl -"@stdlib/random/strided/t",1rm -"@stdlib/random-strided-t",1rn -"@stdlib/random/strided/tools/binary-factory",1ro -"@stdlib/random-strided-tools-binary-factory",1rp -"@stdlib/random/strided/tools",1rq -"@stdlib/random-strided-tools",1rr -"@stdlib/random/strided/tools/ternary-factory",1rs -"@stdlib/random-strided-tools-ternary-factory",1rt -"@stdlib/random/strided/tools/unary-factory",1ru -"@stdlib/random-strided-tools-unary-factory",1rv -"@stdlib/slice/base/int2slice",1rw -"@stdlib/slice-base-int2slice",1rx -"@stdlib/array/index",1ry -"@stdlib/array-index",1rz -"@stdlib/array/take",1s0 -"@stdlib/array-take",1s1 -"@stdlib/strided/base/reinterpret-complex",1s2 -"@stdlib/strided-base-reinterpret-complex",1s3 -"@stdlib/array/base/assert/is-complex-typed-array",1s4 -"@stdlib/array-base-assert-is-complex-typed-array",1s5 -"@stdlib/array/base/count-falsy",1s6 -"@stdlib/array-base-count-falsy",1s7 -"@stdlib/array/base/count-same-value",1s8 -"@stdlib/array-base-count-same-value",1s9 -"@stdlib/array/base/count-truthy",1sA -"@stdlib/array-base-count-truthy",1sB -"@stdlib/array/mskfilter",1sC -"@stdlib/array-mskfilter",1sD -"@stdlib/array/mskreject",1sE -"@stdlib/array-mskreject",1sF -"@stdlib/assert/is-negative-finite",1sG -"@stdlib/assert-is-negative-finite",1sH -"@stdlib/assert/is-nonnegative-finite",1sI -"@stdlib/assert-is-nonnegative-finite",1sJ -"@stdlib/assert/is-positive-finite",1sK -"@stdlib/assert-is-positive-finite",1sL -"@stdlib/random/base/shared",1sM -"@stdlib/random-base-shared",1sN -"@stdlib/array/base/count-if",1sO -"@stdlib/array-base-count-if",1sP -"@stdlib/array/base/count-same-value-zero",1sQ -"@stdlib/array-base-count-same-value-zero",1sR -"@stdlib/array/base/with",1sS -"@stdlib/array-base-with",1sT -"@stdlib/assert/is-nonpositive-finite",1sU -"@stdlib/assert-is-nonpositive-finite",1sV -"@stdlib/assert/is-ragged-nested-array",1sW -"@stdlib/assert-is-ragged-nested-array",1sX -"@stdlib/assert/is-well-formed-string",1sY -"@stdlib/assert-is-well-formed-string",1sZ -"@stdlib/complex/base/parse",1sa -"@stdlib/complex-base-parse",1sb -"@stdlib/complex/float32/parse",1sc -"@stdlib/complex-parse-float32",1sd -"@stdlib/complex/float64/parse",1se -"@stdlib/complex-parse-float64",1sf -"@stdlib/iter/until-each",1sg -"@stdlib/iter-until-each",1sh -"@stdlib/math/base/special/csc",1si -"@stdlib/math-base-special-csc",1sj -"@stdlib/math/iter/sequences/tribonacci",1sk -"@stdlib/math-iter-sequences-tribonacci",1sl -"@stdlib/string/base/for-each-right",1sm -"@stdlib/string-base-for-each-right",1sn -"@stdlib/string/base/replace-after-last",1so -"@stdlib/string-base-replace-after-last",1sp -"@stdlib/string/base/replace-after",1sq -"@stdlib/string-base-replace-after",1sr -"@stdlib/string/base/replace-before-last",1ss -"@stdlib/string-base-replace-before-last",1st -"@stdlib/utils/every-in-by",1su -"@stdlib/utils-every-in-by",1sv -"@stdlib/utils/none-own-by",1sw -"@stdlib/utils-none-own-by",1sx -"@stdlib/utils/some-in-by",1sy -"@stdlib/utils-some-in-by",1sz -"@stdlib/array/base/join",1t0 -"@stdlib/array-base-join",1t1 -"@stdlib/array/base/take-map",1t2 -"@stdlib/array-base-take-map",1t3 -"@stdlib/assert/is-same-date-object",1t4 -"@stdlib/assert-is-same-date-object",1t5 -"@stdlib/blas/base/zcopy",1t6 -"@stdlib/blas-base-zcopy",1t7 -"@stdlib/blas/base/zswap",1t8 -"@stdlib/blas-base-zswap",1t9 -"@stdlib/constants/float32/fourth-pi",1tA -"@stdlib/constants-float32-fourth-pi",1tB -"@stdlib/constants/float32/half-pi",1tC -"@stdlib/constants-float32-half-pi",1tD -"@stdlib/constants/float32/pi",1tE -"@stdlib/constants-float32-pi",1tF -"@stdlib/constants/float32/two-pi",1tG -"@stdlib/constants-float32-two-pi",1tH -"@stdlib/iter/do-until-each",1tI -"@stdlib/iter-do-until-each",1tJ -"@stdlib/iter/do-while-each",1tK -"@stdlib/iter-do-while-each",1tL -"@stdlib/math/base/special/acosd",1tM -"@stdlib/math-base-special-acosd",1tN -"@stdlib/math/base/special/acosf",1tO -"@stdlib/math-base-special-acosf",1tP -"@stdlib/math/base/special/acotd",1tQ -"@stdlib/math-base-special-acotd",1tR -"@stdlib/math/base/special/acotf",1tS -"@stdlib/math-base-special-acotf",1tT -"@stdlib/math/base/special/acscd",1tU -"@stdlib/math-base-special-acscd",1tV -"@stdlib/math/base/special/acscf",1tW -"@stdlib/math-base-special-acscf",1tX -"@stdlib/math/base/special/asecd",1tY -"@stdlib/math-base-special-asecd",1tZ -"@stdlib/math/base/special/asecf",1ta -"@stdlib/math-base-special-asecf",1tb -"@stdlib/math/base/special/asind",1tc -"@stdlib/math-base-special-asind",1td -"@stdlib/math/base/special/asinf",1te -"@stdlib/math-base-special-asinf",1tf -"@stdlib/math/base/special/atand",1tg -"@stdlib/math-base-special-atand",1th -"@stdlib/math/base/special/atanf",1ti -"@stdlib/math-base-special-atanf",1tj -"@stdlib/math/base/special/cosd",1tk -"@stdlib/math-base-special-cosd",1tl -"@stdlib/math/base/special/cotd",1tm -"@stdlib/math-base-special-cotd",1tn -"@stdlib/math/base/special/cscd",1to -"@stdlib/math-base-special-cscd",1tp -"@stdlib/math/base/special/rad2degf",1tq -"@stdlib/math-base-special-rad2degf",1tr -"@stdlib/math/base/special/secd",1ts -"@stdlib/math-base-special-secd",1tt -"@stdlib/math/base/special/tand",1tu -"@stdlib/math-base-special-tand",1tv -"@stdlib/math/base/tools/evalpolyf",1tw -"@stdlib/math-base-tools-evalpolyf",1tx -"@stdlib/math/base/tools/evalrationalf",1ty -"@stdlib/math-base-tools-evalrationalf",1tz -"@stdlib/string/base/last-code-point",1u0 -"@stdlib/string-base-last-code-point",1u1 -"@stdlib/string/base/last-grapheme-cluster",1u2 -"@stdlib/string-base-last-grapheme-cluster",1u3 -"@stdlib/string/base/last",1u4 -"@stdlib/string-base-last",1u5 -"@stdlib/string/base/stickycase",1u6 -"@stdlib/string-base-stickycase",1u7 -"@stdlib/string/to-well-formed",1u8 -"@stdlib/string-to-well-formed",1u9 -"@stdlib/utils/any-in-by",1uA -"@stdlib/utils-any-in-by",1uB -"@stdlib/utils/any-own-by",1uC -"@stdlib/utils-any-own-by",1uD -"@stdlib/utils/every-own-by",1uE -"@stdlib/utils-every-own-by",1uF -"@stdlib/utils/none-in-by",1uG -"@stdlib/utils-none-in-by",1uH -"@stdlib/utils/parse-ndjson",1uI -"@stdlib/utils-parse-ndjson",1uJ -"@stdlib/utils/some-own-by",1uK -"@stdlib/utils-some-own-by",1uL -"@stdlib/array/base/mskfilter-map",1uM -"@stdlib/array-base-mskfilter-map",1uN -"@stdlib/array/base/mskreject-map",1uO -"@stdlib/array-base-mskreject-map",1uP -"@stdlib/array/bool",1uQ -"@stdlib/array-bool",1uR -"@stdlib/assert/napi/has-property",1uS -"@stdlib/assert-napi-has-property",1uT -"@stdlib/blas/base/dger",1uU -"@stdlib/blas-base-dger",1uV -"@stdlib/blas/base/drot",1uW -"@stdlib/blas-base-drot",1uX -"@stdlib/blas/base/idamax",1uY -"@stdlib/blas-base-idamax",1uZ -"@stdlib/blas/base/isamax",1ua -"@stdlib/blas-base-isamax",1ub -"@stdlib/blas/base/shared",1uc -"@stdlib/blas-base-shared",1ud -"@stdlib/blas/base/srot",1ue -"@stdlib/blas-base-srot",1uf -"@stdlib/blas/base/xerbla",1ug -"@stdlib/blas-base-xerbla",1uh -"@stdlib/complex/float32/base/assert/is-equal",1ui -"@stdlib/complex-float32-base-assert-is-equal",1uj -"@stdlib/complex/float32/base/assert/is-not-equal",1uk -"@stdlib/complex-float32-base-assert-is-not-equal",1ul -"@stdlib/complex/float32/base/assert/is-same-value-zero",1um -"@stdlib/complex-float32-base-assert-is-same-value-zero",1un -"@stdlib/complex/float32/base/assert/is-same-value",1uo -"@stdlib/complex-float32-base-assert-is-same-value",1up -"@stdlib/complex/float32",1uq -"@stdlib/complex/float64/base/assert/is-not-equal",1us -"@stdlib/complex-float64-base-assert-is-not-equal",1ut -"@stdlib/complex/float64/base/assert/is-same-value-zero",1uu -"@stdlib/complex-float64-base-assert-is-same-value-zero",1uv -"@stdlib/complex/float64/base/assert/is-same-value",1uw -"@stdlib/complex-float64-base-assert-is-same-value",1ux -"@stdlib/complex/float64",1uy -"@stdlib/constants/float32/phi",1v0 -"@stdlib/constants-float32-phi",1v1 -"@stdlib/fs/append-file",1v2 -"@stdlib/fs-append-file",1v3 -"@stdlib/math/base/special/acscdf",1v4 -"@stdlib/math-base-special-acscdf",1v5 -"@stdlib/math/base/special/asecdf",1v6 -"@stdlib/math-base-special-asecdf",1v7 -"@stdlib/math/base/special/asindf",1v8 -"@stdlib/math-base-special-asindf",1v9 -"@stdlib/math/base/special/kernel-log1p",1vA -"@stdlib/math-base-special-kernel-log1p",1vB -"@stdlib/math/base/special/rcbrtf",1vC -"@stdlib/math-base-special-rcbrtf",1vD -"@stdlib/math/base/tools/normhermitepolyf",1vE -"@stdlib/math-base-tools-normhermitepolyf",1vF -"@stdlib/napi/argv-complex128",1vG -"@stdlib/napi-argv-complex128",1vH -"@stdlib/napi/argv-complex64",1vI -"@stdlib/napi-argv-complex64",1vJ -"@stdlib/napi/create-complex-like",1vK -"@stdlib/napi-create-complex-like",1vL -"@stdlib/napi/create-double",1vM -"@stdlib/napi-create-double",1vN -"@stdlib/napi/create-int32",1vO -"@stdlib/napi-create-int32",1vP -"@stdlib/napi/create-uint32",1vQ -"@stdlib/napi-create-uint32",1vR -"@stdlib/string/base/for-each-code-point-right",1vS -"@stdlib/string-base-for-each-code-point-right",1vT -"@stdlib/string/last",1vU -"@stdlib/string-last",1vV -"@stdlib/assert/is-booleanarray",1vW -"@stdlib/assert-is-booleanarray",1vX -"@stdlib/blas/base/assert/is-layout",1vY -"@stdlib/blas-base-assert-is-layout",1vZ -"@stdlib/blas/base/assert/is-matrix-triangle",1va -"@stdlib/blas-base-assert-is-matrix-triangle",1vb -"@stdlib/blas/base/assert/is-transpose-operation",1vc -"@stdlib/blas-base-assert-is-transpose-operation",1vd -"@stdlib/blas/base/assert",1ve -"@stdlib/blas-base-assert",1vf -"@stdlib/blas/base/cscal",1vg -"@stdlib/blas-base-cscal",1vh -"@stdlib/blas/base/dcabs1",1vi -"@stdlib/blas-base-dcabs1",1vj -"@stdlib/blas/base/diagonal-types",1vk -"@stdlib/blas-base-diagonal-types",1vl -"@stdlib/blas/base/layout-enum2str",1vm -"@stdlib/blas-base-layout-enum2str",1vn -"@stdlib/blas/base/layout-resolve-enum",1vo -"@stdlib/blas-base-layout-resolve-enum",1vp -"@stdlib/blas/base/layout-resolve-str",1vq -"@stdlib/blas-base-layout-resolve-str",1vr -"@stdlib/blas/base/layout-str2enum",1vs -"@stdlib/blas-base-layout-str2enum",1vt -"@stdlib/blas/base/layouts",1vu -"@stdlib/blas-base-layouts",1vv -"@stdlib/blas/base/matrix-triangles",1vw -"@stdlib/blas-base-matrix-triangles",1vx -"@stdlib/blas/base/operation-sides",1vy -"@stdlib/blas-base-operation-sides",1vz -"@stdlib/blas/base/scabs1",1w0 -"@stdlib/blas-base-scabs1",1w1 -"@stdlib/blas/base/transpose-operations",1w2 -"@stdlib/blas-base-transpose-operations",1w3 -"@stdlib/strided/base/reinterpret-boolean",1w4 -"@stdlib/strided-base-reinterpret-boolean",1w5 -"@stdlib/array/base/assert/is-boolean-data-type",1w6 -"@stdlib/array-base-assert-is-boolean-data-type",1w7 -"@stdlib/array/base/assert/is-booleanarray",1w8 -"@stdlib/array-base-assert-is-booleanarray",1w9 -"@stdlib/array/base/cuany",1wA -"@stdlib/array-base-cuany",1wB -"@stdlib/array/base/cuevery",1wC -"@stdlib/array-base-cuevery",1wD -"@stdlib/array/base/mskput",1wE -"@stdlib/array-base-mskput",1wF -"@stdlib/array/base/place",1wG -"@stdlib/array-base-place",1wH -"@stdlib/array/base/put",1wI -"@stdlib/array-base-put",1wJ -"@stdlib/array/base/where",1wK -"@stdlib/array-base-where",1wL -"@stdlib/array/mskput",1wM -"@stdlib/array-mskput",1wN -"@stdlib/array/place",1wO -"@stdlib/array-place",1wP -"@stdlib/array/put",1wQ -"@stdlib/array-put",1wR -"@stdlib/assert/is-same-booleanarray",1wS -"@stdlib/assert-is-same-booleanarray",1wT -"@stdlib/blas/base/assert/is-diagonal-type",1wU -"@stdlib/blas-base-assert-is-diagonal-type",1wV -"@stdlib/blas/base/assert/is-operation-side",1wW -"@stdlib/blas-base-assert-is-operation-side",1wX -"@stdlib/blas/base/scnrm2",1wY -"@stdlib/blas-base-scnrm2",1wZ -"@stdlib/blas/base/srotm",1wa -"@stdlib/blas-base-srotm",1wb -"@stdlib/blas/base/sspmv",1wc -"@stdlib/blas-base-sspmv",1wd -"@stdlib/blas/base/ssymv",1we -"@stdlib/blas-base-ssymv",1wf -"@stdlib/blas/base/transpose-operation-enum2str",1wg -"@stdlib/blas-base-transpose-operation-enum2str",1wh -"@stdlib/blas/base/transpose-operation-resolve-enum",1wi -"@stdlib/blas-base-transpose-operation-resolve-enum",1wj -"@stdlib/blas/base/transpose-operation-resolve-str",1wk -"@stdlib/blas-base-transpose-operation-resolve-str",1wl -"@stdlib/blas/base/transpose-operation-str2enum",1wm -"@stdlib/blas-base-transpose-operation-str2enum",1wn -"@stdlib/blas/base/zscal",1wo -"@stdlib/blas-base-zscal",1wp -"@stdlib/math/base/special/lnf",1wq -"@stdlib/math-base-special-lnf",1wr -"@stdlib/math/base/special/nanmax",1ws -"@stdlib/math-base-special-nanmax",1wt -"@stdlib/math/base/special/nanmin",1wu -"@stdlib/math-base-special-nanmin",1wv -"@stdlib/array/base/cunone",1ww -"@stdlib/array-base-cunone",1wx -"@stdlib/blas/base/diagonal-type-enum2str",1wy -"@stdlib/blas-base-diagonal-type-enum2str",1wz -"@stdlib/blas/base/diagonal-type-resolve-enum",1x0 -"@stdlib/blas-base-diagonal-type-resolve-enum",1x1 -"@stdlib/blas/base/diagonal-type-resolve-str",1x2 -"@stdlib/blas-base-diagonal-type-resolve-str",1x3 -"@stdlib/blas/base/diagonal-type-str2enum",1x4 -"@stdlib/blas-base-diagonal-type-str2enum",1x5 -"@stdlib/blas/base/drotm",1x6 -"@stdlib/blas-base-drotm",1x7 -"@stdlib/blas/base/dspmv",1x8 -"@stdlib/blas-base-dspmv",1x9 -"@stdlib/blas/base/dsymv",1xA -"@stdlib/blas-base-dsymv",1xB -"@stdlib/blas/base/matrix-triangle-enum2str",1xC -"@stdlib/blas-base-matrix-triangle-enum2str",1xD -"@stdlib/blas/base/matrix-triangle-resolve-enum",1xE -"@stdlib/blas-base-matrix-triangle-resolve-enum",1xF -"@stdlib/blas/base/matrix-triangle-resolve-str",1xG -"@stdlib/blas-base-matrix-triangle-resolve-str",1xH -"@stdlib/blas/base/matrix-triangle-str2enum",1xI -"@stdlib/blas-base-matrix-triangle-str2enum",1xJ -"@stdlib/blas/base/operation-side-enum2str",1xK -"@stdlib/blas-base-operation-side-enum2str",1xL -"@stdlib/blas/base/operation-side-resolve-enum",1xM -"@stdlib/blas-base-operation-side-resolve-enum",1xN -"@stdlib/blas/base/operation-side-resolve-str",1xO -"@stdlib/blas-base-operation-side-resolve-str",1xP -"@stdlib/blas/base/operation-side-str2enum",1xQ -"@stdlib/blas-base-operation-side-str2enum",1xR -"@stdlib/iter/cuany",1xS -"@stdlib/iter-cuany",1xT -"@stdlib/strided/base/stride2offset",1xU -"@stdlib/strided-base-stride2offset",1xV -"@stdlib/utils/async/parallel",1xW -"@stdlib/utils-async-parallel",1xX -"@stdlib/blas/base/csrot",1xY -"@stdlib/blas-base-csrot",1xZ -"@stdlib/blas/base/dznrm2",1xa -"@stdlib/blas-base-dznrm2",1xb -"@stdlib/blas/base/zaxpy",1xc -"@stdlib/blas-base-zaxpy",1xd -"@stdlib/blas/base/zdrot",1xe -"@stdlib/blas-base-zdrot",1xf -"@stdlib/lapack/base/dlaswp",1xg -"@stdlib/lapack-base-dlaswp",1xh -"@stdlib/lapack/base",1xi -"@stdlib/lapack-base",1xj -"@stdlib/lapack",1xl -"@stdlib/ndarray/base/assert/is-boolean-data-type",1xm -"@stdlib/ndarray-base-assert-is-boolean-data-type",1xn -"@stdlib/blas/base/caxpy",1xo -"@stdlib/blas-base-caxpy",1xp -"@stdlib/blas/base/scasum",1xq -"@stdlib/blas-base-scasum",1xr -"@stdlib/complex/float32/base/add",1xs -"@stdlib/complex-float32-base-add",1xt -"@stdlib/complex/float32/base/assert",1xu -"@stdlib/complex-float32-base-assert",1xv -"@stdlib/complex/float32/base/mul",1xw -"@stdlib/complex-float32-base-mul",1xx -"@stdlib/complex/float32/base",1xy -"@stdlib/complex-float32-base",1xz -"@stdlib/complex/float32/conj",1y0 -"@stdlib/complex-float32-conj",1y1 -"@stdlib/complex/float32/imag",1y2 -"@stdlib/complex-float32-imag",1y3 -"@stdlib/complex/float32/real",1y4 -"@stdlib/complex-float32-real",1y5 -"@stdlib/complex/float32/reim",1y6 -"@stdlib/complex-float32-reim",1y7 -"@stdlib/complex/float64/base/add",1y8 -"@stdlib/complex-float64-base-add",1y9 -"@stdlib/complex/float64/base/assert",1yA -"@stdlib/complex-float64-base-assert",1yB -"@stdlib/complex/float64/base/mul",1yC -"@stdlib/complex-float64-base-mul",1yD -"@stdlib/complex/float64/base",1yE -"@stdlib/complex-float64-base",1yF -"@stdlib/complex/float64/conj",1yG -"@stdlib/complex-float64-conj",1yH -"@stdlib/complex/float64/imag",1yI -"@stdlib/complex-float64-imag",1yJ -"@stdlib/complex/float64/real",1yK -"@stdlib/complex-float64-real",1yL -"@stdlib/complex/float64/reim",1yM -"@stdlib/complex-float64-reim",1yN -"@stdlib/constants/float64/max-safe-nth-factorial",1yO -"@stdlib/constants-float64-max-safe-nth-factorial",1yP -"@stdlib/math/base/special/fmod",1yQ -"@stdlib/math-base-special-fmod",1yR -"@stdlib/fs/resolve-parent-paths",1yS -"@stdlib/fs-resolve-parent-paths",1yT -"@stdlib/iter/cusome",1yU -"@stdlib/iter-cusome",1yV -"@stdlib/ndarray/base/for-each",1yW -"@stdlib/ndarray-base-for-each",1yX -"@stdlib/blas/base/dgemv",1yY -"@stdlib/blas-base-dgemv",1yZ -"@stdlib/blas/base/dsyr",1ya -"@stdlib/blas-base-dsyr",1yb -"@stdlib/blas/base/dsyr2",1yc -"@stdlib/blas-base-dsyr2",1yd -"@stdlib/blas/base/dtrmv",1ye -"@stdlib/blas-base-dtrmv",1yf -"@stdlib/blas/base/sgemv",1yg -"@stdlib/blas-base-sgemv",1yh -"@stdlib/blas/base/ssyr",1yi -"@stdlib/blas-base-ssyr",1yj -"@stdlib/blas/base/ssyr2",1yk -"@stdlib/blas-base-ssyr2",1yl -"@stdlib/blas/base/strmv",1ym -"@stdlib/blas-base-strmv",1yn -"@stdlib/lapack/base/dlacpy",1yo -"@stdlib/lapack-base-dlacpy",1yp -"@stdlib/lapack/base/dlassq",1yq -"@stdlib/lapack-base-dlassq",1yr -"@stdlib/lapack/base/dpttrf",1ys -"@stdlib/lapack-base-dpttrf",1yt -"@stdlib/lapack/base/slacpy",1yu -"@stdlib/lapack-base-slacpy",1yv -"@stdlib/lapack/base/spttrf",1yw -"@stdlib/lapack-base-spttrf",1yx -"@stdlib/array/base/remove-at",1yy -"@stdlib/array-base-remove-at",1yz -"@stdlib/array/base/without",1z0 -"@stdlib/array-base-without",1z1 -"@stdlib/blas/base/dgemm",1z2 -"@stdlib/blas-base-dgemm",1z3 -"@stdlib/blas/base/dtrsv",1z4 -"@stdlib/blas-base-dtrsv",1z5 -"@stdlib/blas/base/sgemm",1z6 -"@stdlib/blas-base-sgemm",1z7 -"@stdlib/blas/base/sspr",1z8 -"@stdlib/blas-base-sspr",1z9 -"@stdlib/blas/base/strsv",1zA -"@stdlib/blas-base-strsv",1zB -"@stdlib/constants/float32/max-base2-exponent-subnormal",1zC -"@stdlib/constants-float32-max-base2-exponent-subnormal",1zD -"@stdlib/constants/float32/max-base2-exponent",1zE -"@stdlib/constants-float32-max-base2-exponent",1zF -"@stdlib/constants/float32/min-base2-exponent-subnormal",1zG -"@stdlib/constants-float32-min-base2-exponent-subnormal",1zH -"@stdlib/iter/cunone-by",1zI -"@stdlib/iter-cunone-by",1zJ -"@stdlib/lapack/base/dge-trans",1zK -"@stdlib/lapack-base-dge-trans",1zL -"@stdlib/lapack/base/sge-trans",1zM -"@stdlib/lapack-base-sge-trans",1zN -"@stdlib/lapack/base/slaswp",1zO -"@stdlib/lapack-base-slaswp",1zP -"@stdlib/math/base/assert/is-integerf",1zQ -"@stdlib/math-base-assert-is-integerf",1zR -"@stdlib/math/base/special/roundf",1zS -"@stdlib/math-base-special-roundf",1zT -"@stdlib/ndarray/base/map",1zU -"@stdlib/ndarray-base-map",1zV -"@stdlib/ndarray/base/ndarraylike2ndarray",1zW -"@stdlib/ndarray-base-ndarraylike2ndarray",1zX -"@stdlib/ndarray/iter/interleave-subarrays",1zY -"@stdlib/ndarray-iter-interleave-subarrays",1zZ -"@stdlib/ndarray/iter/select-dimension",1za -"@stdlib/ndarray-iter-select-dimension",1zb -"@stdlib/ndarray/iter/stacks",1zc -"@stdlib/ndarray-iter-stacks",1zd -"@stdlib/ndarray/iter/subarrays",1ze -"@stdlib/ndarray-iter-subarrays",1zf -"@stdlib/ndarray/ndarraylike2ndarray",1zg -"@stdlib/ndarray-ndarraylike2ndarray",1zh -"@stdlib/array/base/assert/has-equal-values-indexed",1zi -"@stdlib/array-base-assert-has-equal-values-indexed",1zj -"@stdlib/array/base/assert/has-equal-values",1zk -"@stdlib/array-base-assert-has-equal-values",1zl -"@stdlib/assert/has-atob-support",1zm -"@stdlib/assert-has-atob-support",1zn -"@stdlib/assert/has-btoa-support",1zo -"@stdlib/assert-has-btoa-support",1zp -"@stdlib/assert/is-equal-array",1zq -"@stdlib/assert-is-equal-array",1zr -"@stdlib/assert/is-same-accessor-array",1zs -"@stdlib/assert-is-same-accessor-array",1zt -"@stdlib/assert/is-same-array-like-object",1zu -"@stdlib/assert-is-same-array-like-object",1zv -"@stdlib/assert/is-same-array-like",1zw -"@stdlib/assert-is-same-array-like",1zx -"@stdlib/assert/is-wasm-memory",1zy -"@stdlib/assert-is-wasm-memory",1zz -"@stdlib/blas/base/daxpy-wasm",200 -"@stdlib/blas-base-daxpy-wasm",201 -"@stdlib/blas/base/dspr",202 -"@stdlib/blas-base-dspr",203 -"@stdlib/blas/ext/base/cfill",204 -"@stdlib/blas-ext-base-cfill",205 -"@stdlib/constants/float32/max-safe-nth-factorial",206 -"@stdlib/constants-float32-max-safe-nth-factorial",207 -"@stdlib/constants/float32/max-safe-nth-fibonacci",208 -"@stdlib/constants-float32-max-safe-nth-fibonacci",209 -"@stdlib/constants/float64/num-high-word-significand-bits",20A -"@stdlib/constants-float64-num-high-word-significand-bits",20B -"@stdlib/lapack/base/dlamch",20C -"@stdlib/lapack-base-dlamch",20D -"@stdlib/math/base/assert/is-nonnegative-integerf",20E -"@stdlib/math-base-assert-is-nonnegative-integerf",20F -"@stdlib/math/base/special/acotdf",20G -"@stdlib/math-base-special-acotdf",20H -"@stdlib/math/base/special/acovercosf",20I -"@stdlib/math-base-special-acovercosf",20J -"@stdlib/math/base/special/acoversinf",20K -"@stdlib/math-base-special-acoversinf",20L -"@stdlib/math/base/special/atandf",20M -"@stdlib/math-base-special-atandf",20N -"@stdlib/math/base/special/avercosf",20O -"@stdlib/math-base-special-avercosf",20P -"@stdlib/math/base/special/aversinf",20Q -"@stdlib/math-base-special-aversinf",20R -"@stdlib/math/base/special/ldexpf",20S -"@stdlib/math-base-special-ldexpf",20T -"@stdlib/math/base/special/logf",20U -"@stdlib/math-base-special-logf",20V -"@stdlib/math/base/special/maxabsf",20W -"@stdlib/math-base-special-maxabsf",20X -"@stdlib/math/base/special/maxf",20Y -"@stdlib/math-base-special-maxf",20Z -"@stdlib/math/base/special/minabsf",20a -"@stdlib/math-base-special-minabsf",20b -"@stdlib/math/base/special/minf",20c -"@stdlib/math-base-special-minf",20d -"@stdlib/math/base/special/xlogyf",20e -"@stdlib/math-base-special-xlogyf",20f -"@stdlib/napi/argv-strided-complex128array2d",20g -"@stdlib/napi-argv-strided-complex128array2d",20h -"@stdlib/napi/argv-strided-complex64array2d",20i -"@stdlib/napi-argv-strided-complex64array2d",20j -"@stdlib/napi/argv-strided-float32array2d",20k -"@stdlib/napi-argv-strided-float32array2d",20l -"@stdlib/napi/argv-strided-float64array2d",20m -"@stdlib/napi-argv-strided-float64array2d",20n -"@stdlib/napi/argv-strided-int16array2d",20o -"@stdlib/napi-argv-strided-int16array2d",20p -"@stdlib/napi/argv-strided-int32array2d",20q -"@stdlib/napi-argv-strided-int32array2d",20r -"@stdlib/napi/argv-strided-int8array2d",20s -"@stdlib/napi-argv-strided-int8array2d",20t -"@stdlib/napi/argv-strided-uint16array2d",20u -"@stdlib/napi-argv-strided-uint16array2d",20v -"@stdlib/napi/argv-strided-uint32array2d",20w -"@stdlib/napi-argv-strided-uint32array2d",20x -"@stdlib/napi/argv-strided-uint8array2d",20y -"@stdlib/napi-argv-strided-uint8array2d",20z -"@stdlib/ndarray/base/assert/has-equal-shape",210 -"@stdlib/ndarray-base-assert-has-equal-shape",211 -"@stdlib/ndarray/base/fill",212 -"@stdlib/ndarray-base-fill",213 -"@stdlib/ndarray/base/to-reversed",214 -"@stdlib/ndarray-base-to-reversed",215 -"@stdlib/strided/base/read-dataview",216 -"@stdlib/strided-base-read-dataview",217 -"@stdlib/strided/base/strided2object",218 -"@stdlib/strided-base-strided2object",219 -"@stdlib/strided/base/write-dataview",21A -"@stdlib/strided-base-write-dataview",21B -"@stdlib/string/base/atob",21C -"@stdlib/string-base-atob",21D -"@stdlib/wasm/base/array2dtype",21E -"@stdlib/wasm-base-array2dtype",21F -"@stdlib/wasm/base/arrays2ptrs",21G -"@stdlib/wasm-base-arrays2ptrs",21H -"@stdlib/wasm/base/dtype2wasm",21I -"@stdlib/wasm-base-dtype2wasm",21J -"@stdlib/wasm/base",21K -"@stdlib/wasm-base",21L -"@stdlib/wasm/base/strided2object",21M -"@stdlib/wasm-base-strided2object",21N -"@stdlib/wasm/memory",21O -"@stdlib/wasm-memory",21P -"@stdlib/wasm/module-wrapper",21Q -"@stdlib/wasm-module-wrapper",21R -"@stdlib/wasm",21T -"@stdlib/array/base/cunone-by-right",21U -"@stdlib/array-base-cunone-by-right",21V -"@stdlib/array/base/cunone-by",21W -"@stdlib/array-base-cunone-by",21X -"@stdlib/array/base/cusome-by-right",21Y -"@stdlib/array-base-cusome-by-right",21Z -"@stdlib/array/fixed-endian-float64",21a -"@stdlib/array-fixed-endian-float64",21b -"@stdlib/assert/is-ndarray-like-with-data-type",21c -"@stdlib/assert-is-ndarray-like-with-data-type",21d -"@stdlib/blas/ext/base/zfill",21e -"@stdlib/blas-ext-base-zfill",21f -"@stdlib/blas/tools",21g -"@stdlib/blas-tools",21h -"@stdlib/blas/tools/swap-factory",21i -"@stdlib/blas-tools-swap-factory",21j -"@stdlib/constants/float32/max-safe-fibonacci",21k -"@stdlib/constants-float32-max-safe-fibonacci",21l -"@stdlib/string/base/base64-to-uint8array",21m -"@stdlib/string-base-base64-to-uint8array",21n -"@stdlib/array/base/assert/is-byte-order",21o -"@stdlib/array-base-assert-is-byte-order",21p -"@stdlib/array/base/cuany-by-right",21q -"@stdlib/array-base-cuany-by-right",21r -"@stdlib/array/base/cuany-by",21s -"@stdlib/array-base-cuany-by",21t -"@stdlib/array/base/cuevery-by",21u -"@stdlib/array-base-cuevery-by",21v -"@stdlib/array/base/cusome-by",21w -"@stdlib/array-base-cusome-by",21x -"@stdlib/array/base/cusome",21y -"@stdlib/array-base-cusome",21z -"@stdlib/array/base/nulls",220 -"@stdlib/array-base-nulls",221 -"@stdlib/array/byte-orders",222 -"@stdlib/array-byte-orders",223 -"@stdlib/array/fixed-endian-factory",224 -"@stdlib/array-fixed-endian-factory",225 -"@stdlib/array/fixed-endian-float32",226 -"@stdlib/array-fixed-endian-float32",227 -"@stdlib/array/little-endian-factory",228 -"@stdlib/array-little-endian-factory",229 -"@stdlib/array/little-endian-float32",22A -"@stdlib/array-little-endian-float32",22B -"@stdlib/array/little-endian-float64",22C -"@stdlib/array-little-endian-float64",22D -"@stdlib/array/base/cuevery-by-right",22E -"@stdlib/array-base-cuevery-by-right",22F -"@stdlib/array/base/mskbinary3d",22G -"@stdlib/array-base-mskbinary3d",22H -"@stdlib/assert/is-same-typed-array-like",22I -"@stdlib/assert-is-same-typed-array-like",22J -"@stdlib/blas/base/ccopy-wasm",22K -"@stdlib/blas-base-ccopy-wasm",22L -"@stdlib/blas/base/cscal-wasm",22M -"@stdlib/blas-base-cscal-wasm",22N -"@stdlib/blas/base/csrot-wasm",22O -"@stdlib/blas-base-csrot-wasm",22P -"@stdlib/blas/base/cswap-wasm",22Q -"@stdlib/blas-base-cswap-wasm",22R -"@stdlib/blas/base/dasum-wasm",22S -"@stdlib/blas-base-dasum-wasm",22T -"@stdlib/blas/base/dcopy-wasm",22U -"@stdlib/blas-base-dcopy-wasm",22V -"@stdlib/blas/base/ddot-wasm",22W -"@stdlib/blas-base-ddot-wasm",22X -"@stdlib/blas/base/dnrm2-wasm",22Y -"@stdlib/blas-base-dnrm2-wasm",22Z -"@stdlib/blas/base/drot-wasm",22a -"@stdlib/blas-base-drot-wasm",22b -"@stdlib/blas/base/drotm-wasm",22c -"@stdlib/blas-base-drotm-wasm",22d -"@stdlib/blas/base/dscal-wasm",22e -"@stdlib/blas-base-dscal-wasm",22f -"@stdlib/blas/base/dswap-wasm",22g -"@stdlib/blas-base-dswap-wasm",22h -"@stdlib/blas/base/idamax-wasm",22i -"@stdlib/blas-base-idamax-wasm",22j -"@stdlib/blas/base/sasum-wasm",22k -"@stdlib/blas-base-sasum-wasm",22l -"@stdlib/blas/base/saxpy-wasm",22m -"@stdlib/blas-base-saxpy-wasm",22n -"@stdlib/blas/base/scopy-wasm",22o -"@stdlib/blas-base-scopy-wasm",22p -"@stdlib/blas/base/sdot-wasm",22q -"@stdlib/blas-base-sdot-wasm",22r -"@stdlib/blas/base/snrm2-wasm",22s -"@stdlib/blas-base-snrm2-wasm",22t -"@stdlib/blas/base/srot-wasm",22u -"@stdlib/blas-base-srot-wasm",22v -"@stdlib/blas/ext/base/dapxsumkbn-wasm",22w -"@stdlib/blas-ext-base-dapxsumkbn-wasm",22x -"@stdlib/constants/float32/e",22y -"@stdlib/constants-float32-e",22z -"@stdlib/constants/float32/half-ln-two",230 -"@stdlib/constants-float32-half-ln-two",231 -"@stdlib/constants/float32/ln-two",232 -"@stdlib/constants-float32-ln-two",233 -"@stdlib/constants/float32/max-base10-exponent-subnormal",234 -"@stdlib/constants-float32-max-base10-exponent-subnormal",235 -"@stdlib/constants/float32/max-base10-exponent",236 -"@stdlib/constants-float32-max-base10-exponent",237 -"@stdlib/constants/float32/min-base10-exponent-subnormal",238 -"@stdlib/constants-float32-min-base10-exponent-subnormal",239 -"@stdlib/constants/float32/min-base10-exponent",23A -"@stdlib/constants-float32-min-base10-exponent",23B -"@stdlib/constants/float32/min-base2-exponent",23C -"@stdlib/constants-float32-min-base2-exponent",23D -"@stdlib/constants/float64/max-safe-nth-double-factorial",23E -"@stdlib/constants-float64-max-safe-nth-double-factorial",23F -"@stdlib/fs/read-ndjson",23G -"@stdlib/fs-read-ndjson",23H -"@stdlib/iter/cuany-by",23I -"@stdlib/iter-cuany-by",23J -"@stdlib/iter/cuevery-by",23K -"@stdlib/iter-cuevery-by",23L -"@stdlib/iter/cuevery",23M -"@stdlib/iter-cuevery",23N -"@stdlib/iter/cunone",23O -"@stdlib/iter-cunone",23P -"@stdlib/iter/cusome-by",23Q -"@stdlib/iter-cusome-by",23R -"@stdlib/math/base/assert/is-evenf",23S -"@stdlib/math-base-assert-is-evenf",23T -"@stdlib/math/base/special/acosdf",23U -"@stdlib/math-base-special-acosdf",23V -"@stdlib/math/base/special/ahavercosf",23W -"@stdlib/math-base-special-ahavercosf",23X -"@stdlib/math/base/special/ahaversinf",23Y -"@stdlib/math-base-special-ahaversinf",23Z -"@stdlib/math/base/special/cfloorf",23a -"@stdlib/math-base-special-cfloorf",23b -"@stdlib/math/base/special/croundf",23c -"@stdlib/math-base-special-croundf",23d -"@stdlib/math/base/special/fmodf",23e -"@stdlib/math-base-special-fmodf",23f -"@stdlib/math/base/special/gcdf",23g -"@stdlib/math-base-special-gcdf",23h -"@stdlib/math/base/special/nanmaxf",23i -"@stdlib/math-base-special-nanmaxf",23j -"@stdlib/math/base/special/nanminf",23k -"@stdlib/math-base-special-nanminf",23l -"@stdlib/math/base/special/sec",23m -"@stdlib/math-base-special-sec",23n -"@stdlib/array/base/broadcasted-quaternary3d",23o -"@stdlib/array-base-broadcasted-quaternary3d",23p -"@stdlib/array/base/broadcasted-quaternary4d",23q -"@stdlib/array-base-broadcasted-quaternary4d",23r -"@stdlib/array/base/broadcasted-quaternary5d",23s -"@stdlib/array-base-broadcasted-quaternary5d",23t -"@stdlib/array/base/broadcasted-quinary4d",23u -"@stdlib/array-base-broadcasted-quinary4d",23v -"@stdlib/array/base/broadcasted-ternary3d",23w -"@stdlib/array-base-broadcasted-ternary3d",23x -"@stdlib/array/base/broadcasted-ternary4d",23y -"@stdlib/array-base-broadcasted-ternary4d",23z -"@stdlib/array/base/broadcasted-ternary5d",240 -"@stdlib/array-base-broadcasted-ternary5d",241 -"@stdlib/array/base/mskbinary4d",242 -"@stdlib/array-base-mskbinary4d",243 -"@stdlib/array/base/mskbinary5d",244 -"@stdlib/array-base-mskbinary5d",245 -"@stdlib/array/base/mskunary4d",246 -"@stdlib/array-base-mskunary4d",247 -"@stdlib/array/base/mskunary5d",248 -"@stdlib/array-base-mskunary5d",249 -"@stdlib/array/base/unary3d-by",24A -"@stdlib/array-base-unary3d-by",24B -"@stdlib/array/base/unary4d-by",24C -"@stdlib/array-base-unary4d-by",24D -"@stdlib/array/base/unary5d-by",24E -"@stdlib/array-base-unary5d-by",24F -"@stdlib/constants/float32/ln-half",24G -"@stdlib/constants-float32-ln-half",24H -"@stdlib/constants/float32/ln-pi",24I -"@stdlib/constants-float32-ln-pi",24J -"@stdlib/constants/float32/ln-ten",24K -"@stdlib/constants-float32-ln-ten",24L -"@stdlib/constants/float32/max-safe-nth-lucas",24M -"@stdlib/constants-float32-max-safe-nth-lucas",24N -"@stdlib/constants/float32/sqrt-half-pi",24O -"@stdlib/constants-float32-sqrt-half-pi",24P -"@stdlib/constants/float32/sqrt-half",24Q -"@stdlib/constants-float32-sqrt-half",24R -"@stdlib/constants/float32/sqrt-phi",24S -"@stdlib/constants-float32-sqrt-phi",24T -"@stdlib/constants/float32/sqrt-pi",24U -"@stdlib/constants-float32-sqrt-pi",24V -"@stdlib/constants/float32/sqrt-three",24W -"@stdlib/constants-float32-sqrt-three",24X -"@stdlib/constants/float32/sqrt-two-pi",24Y -"@stdlib/constants-float32-sqrt-two-pi",24Z -"@stdlib/constants/float32/sqrt-two",24a -"@stdlib/constants-float32-sqrt-two",24b -"@stdlib/constants/float64/max-safe-nth-tribonacci",24c -"@stdlib/constants-float64-max-safe-nth-tribonacci",24d -"@stdlib/math/base/assert/is-oddf",24e -"@stdlib/math-base-assert-is-oddf",24f -"@stdlib/math/base/special/lcmf",24g -"@stdlib/math-base-special-lcmf",24h -"@stdlib/math/base/special/negalucasf",24i -"@stdlib/math-base-special-negalucasf",24j -"@stdlib/math/base/special/nonfibonaccif",24k -"@stdlib/math-base-special-nonfibonaccif",24l -"@stdlib/math/base/special/sqrtpif",24m -"@stdlib/math-base-special-sqrtpif",24n -"@stdlib/ndarray/base/from-scalar-like",24o -"@stdlib/ndarray-base-from-scalar-like",24p -"@stdlib/ndarray/base/min-signed-integer-dtype",24q -"@stdlib/ndarray-base-min-signed-integer-dtype",24r -"@stdlib/ndarray/base/min-unsigned-integer-dtype",24s -"@stdlib/ndarray-base-min-unsigned-integer-dtype",24t -"@stdlib/ndarray/filter-map",24u -"@stdlib/ndarray-filter-map",24v -"@stdlib/ndarray/filter",24w -"@stdlib/ndarray-filter",24x -"@stdlib/ndarray/for-each",24y -"@stdlib/ndarray-for-each",24z -"@stdlib/ndarray/index",250 -"@stdlib/ndarray-index",251 -"@stdlib/ndarray/map",252 -"@stdlib/ndarray-map",253 -"@stdlib/ndarray/reject",254 -"@stdlib/ndarray-reject",255 -"@stdlib/ndarray/to-fancy",256 -"@stdlib/ndarray-to-fancy",257 -"@stdlib/ndarray/to-json",258 -"@stdlib/ndarray-to-json",259 -"@stdlib/stats/base/dists/planck/cdf",25A -"@stdlib/stats-base-dists-planck-cdf",25B -"@stdlib/stats/base/dists/planck/entropy",25C -"@stdlib/stats-base-dists-planck-entropy",25D -"@stdlib/stats/base/dists/planck/kurtosis",25E -"@stdlib/stats-base-dists-planck-kurtosis",25F -"@stdlib/stats/base/dists/planck/logcdf",25G -"@stdlib/stats-base-dists-planck-logcdf",25H -"@stdlib/stats/base/dists/planck/logpmf",25I -"@stdlib/stats-base-dists-planck-logpmf",25J -"@stdlib/stats/base/dists/planck/mean",25K -"@stdlib/stats-base-dists-planck-mean",25L -"@stdlib/stats/base/dists/planck/median",25M -"@stdlib/stats-base-dists-planck-median",25N -"@stdlib/stats/base/dists/planck/mode",25O -"@stdlib/stats-base-dists-planck-mode",25P -"@stdlib/stats/base/dists/planck/pmf",25Q -"@stdlib/stats-base-dists-planck-pmf",25R -"@stdlib/stats/base/dists/planck/quantile",25S -"@stdlib/stats-base-dists-planck-quantile",25T -"@stdlib/stats/base/dists/planck/skewness",25U -"@stdlib/stats-base-dists-planck-skewness",25V -"@stdlib/stats/base/dists/planck/stdev",25W -"@stdlib/stats-base-dists-planck-stdev",25X -"@stdlib/stats/base/dists/planck/variance",25Y -"@stdlib/stats-base-dists-planck-variance",25Z -"@stdlib/array/base/assert/is-sorted-ascending",25a -"@stdlib/array-base-assert-is-sorted-ascending",25b -"@stdlib/array/base/fill",25c -"@stdlib/array-base-fill",25d -"@stdlib/array/base/indices-complement",25e -"@stdlib/array-base-indices-complement",25f -"@stdlib/array/base/mskfilter2",25g -"@stdlib/array-base-mskfilter2",25h -"@stdlib/array/base/mskfiltern",25i -"@stdlib/array-base-mskfiltern",25j -"@stdlib/array/base/scatter-filled",25k -"@stdlib/array-base-scatter-filled",25l -"@stdlib/array/base/scattered",25m -"@stdlib/array-base-scattered",25n -"@stdlib/array/base/take-indexed2",25o -"@stdlib/array-base-take-indexed2",25p -"@stdlib/math/base/assert/is-probabilityf",25q -"@stdlib/math-base-assert-is-probabilityf",25r -"@stdlib/math/base/special/dirac-deltaf",25s -"@stdlib/math-base-special-dirac-deltaf",25t -"@stdlib/ndarray/base/assert/is-column-major-string",25u -"@stdlib/ndarray-base-assert-is-column-major-string",25v -"@stdlib/ndarray/base/assert/is-row-major-string",25w -"@stdlib/ndarray-base-assert-is-row-major-string",25x -"@stdlib/ndarray/base/normalize-indices",25y -"@stdlib/ndarray-base-normalize-indices",25z -"@stdlib/ndarray/base/spread-dimensions",260 -"@stdlib/ndarray-base-spread-dimensions",261 -"@stdlib/ndarray/base/to-normalized-indices",262 -"@stdlib/ndarray-base-to-normalized-indices",263 -"@stdlib/ndarray/base/to-unique-normalized-indices",264 -"@stdlib/ndarray-base-to-unique-normalized-indices",265 -"@stdlib/blas/base/zdscal",266 -"@stdlib/blas-base-zdscal",267 -"@stdlib/lapack/base/zlacgv",268 -"@stdlib/lapack-base-zlacgv",269 -"@stdlib/lapack/base/zlacpy",26A -"@stdlib/lapack-base-zlacpy",26B -"@stdlib/lapack/base/zrot",26C -"@stdlib/lapack-base-zrot",26D -"@stdlib/math/base/special/heavisidef",26E -"@stdlib/math-base-special-heavisidef",26F -"@stdlib/ndarray/base/unary-accumulate",26G -"@stdlib/ndarray-base-unary-accumulate",26H -"@stdlib/stats/strided/dmax",26I -"@stdlib/stats-strided-dmax",26J -"@stdlib/array/base/for-each",26K -"@stdlib/array-base-for-each",26L -"@stdlib/blas/base/wasm/ccopy",26M -"@stdlib/blas-base-wasm-ccopy",26N -"@stdlib/blas/base/wasm/cscal",26O -"@stdlib/blas-base-wasm-cscal",26P -"@stdlib/blas/base/wasm/csrot",26Q -"@stdlib/blas-base-wasm-csrot",26R -"@stdlib/blas/base/wasm/cswap",26S -"@stdlib/blas-base-wasm-cswap",26T -"@stdlib/blas/base/wasm/dasum",26U -"@stdlib/blas-base-wasm-dasum",26V -"@stdlib/blas/base/wasm/daxpy",26W -"@stdlib/blas-base-wasm-daxpy",26X -"@stdlib/blas/base/wasm/dcopy",26Y -"@stdlib/blas-base-wasm-dcopy",26Z -"@stdlib/blas/base/wasm/ddot",26a -"@stdlib/blas-base-wasm-ddot",26b -"@stdlib/blas/base/wasm/dnrm2",26c -"@stdlib/blas-base-wasm-dnrm2",26d -"@stdlib/blas/base/wasm/drot",26e -"@stdlib/blas-base-wasm-drot",26f -"@stdlib/blas/base/wasm/drotm",26g -"@stdlib/blas-base-wasm-drotm",26h -"@stdlib/blas/base/wasm/dscal",26i -"@stdlib/blas-base-wasm-dscal",26j -"@stdlib/blas/base/wasm/dswap",26k -"@stdlib/blas-base-wasm-dswap",26l -"@stdlib/blas/base/wasm/idamax",26m -"@stdlib/blas-base-wasm-idamax",26n -"@stdlib/blas/base/wasm/isamax",26o -"@stdlib/blas-base-wasm-isamax",26p -"@stdlib/blas/base/wasm",26q -"@stdlib/blas-base-wasm",26r -"@stdlib/blas/base/wasm/sasum",26s -"@stdlib/blas-base-wasm-sasum",26t -"@stdlib/blas/base/wasm/saxpy",26u -"@stdlib/blas-base-wasm-saxpy",26v -"@stdlib/blas/base/wasm/scopy",26w -"@stdlib/blas-base-wasm-scopy",26x -"@stdlib/blas/base/wasm/sdot",26y -"@stdlib/blas-base-wasm-sdot",26z -"@stdlib/blas/base/wasm/snrm2",270 -"@stdlib/blas-base-wasm-snrm2",271 -"@stdlib/blas/base/wasm/srot",272 -"@stdlib/blas-base-wasm-srot",273 -"@stdlib/blas/base/wasm/sscal",274 -"@stdlib/blas-base-wasm-sscal",275 -"@stdlib/blas/base/wasm/zcopy",276 -"@stdlib/blas-base-wasm-zcopy",277 -"@stdlib/blas/base/wasm/zdrot",278 -"@stdlib/blas-base-wasm-zdrot",279 -"@stdlib/blas/base/wasm/zswap",27A -"@stdlib/blas-base-wasm-zswap",27B -"@stdlib/blas/ext/base/wasm/dapxsumkbn",27C -"@stdlib/blas-ext-base-wasm-dapxsumkbn",27D -"@stdlib/blas/ext/base/wasm",27E -"@stdlib/blas-ext-base-wasm",27F -"@stdlib/complex/float64/base/mul-add",27G -"@stdlib/complex-float64-base-mul-add",27H -"@stdlib/complex/float64/base/scale",27I -"@stdlib/complex-float64-base-scale",27J -"@stdlib/dstructs/circular-buffer",27K -"@stdlib/dstructs-circular-buffer",27L -"@stdlib/dstructs/compact-adjacency-matrix",27M -"@stdlib/dstructs-compact-adjacency-matrix",27N -"@stdlib/dstructs/doubly-linked-list",27O -"@stdlib/dstructs-doubly-linked-list",27P -"@stdlib/dstructs/fifo",27Q -"@stdlib/dstructs-fifo",27R -"@stdlib/dstructs/linked-list",27S -"@stdlib/dstructs-linked-list",27T -"@stdlib/dstructs/named-typed-tuple",27U -"@stdlib/dstructs-named-typed-tuple",27V -"@stdlib/dstructs",27X -"@stdlib/dstructs/stack",27Y -"@stdlib/dstructs-stack",27Z -"@stdlib/function/thunk",27a -"@stdlib/function-thunk",27b -"@stdlib/lapack/base/clacgv",27c -"@stdlib/lapack-base-clacgv",27d -"@stdlib/lapack/base/clacpy",27e -"@stdlib/lapack-base-clacpy",27f -"@stdlib/lapack/base/claset",27g -"@stdlib/lapack-base-claset",27h -"@stdlib/lapack/base/crot",27i -"@stdlib/lapack-base-crot",27j -"@stdlib/lapack/base/zlaset",27k -"@stdlib/lapack-base-zlaset",27l -"@stdlib/math/array",27m -"@stdlib/math-array",27n -"@stdlib/math/array/special/abs",27o -"@stdlib/math-array-special-abs",27p -"@stdlib/math/array/special",27q -"@stdlib/math-array-special",27r -"@stdlib/math/array/tools",27s -"@stdlib/math-array-tools",27t -"@stdlib/math/array/tools/unary-factory",27u -"@stdlib/math-array-tools-unary-factory",27v -"@stdlib/math/array/tools/unary",27w -"@stdlib/math-array-tools-unary",27x -"@stdlib/math/base/special/hyp2f1",27y -"@stdlib/math-base-special-hyp2f1",27z -"@stdlib/napi/argv-bool",280 -"@stdlib/napi-argv-bool",281 -"@stdlib/ndarray/base/assert/is-output-data-type-policy",282 -"@stdlib/ndarray-base-assert-is-output-data-type-policy",283 -"@stdlib/number/float32/base/add",284 -"@stdlib/number-float32-base-add",285 -"@stdlib/number/float32/base/div",286 -"@stdlib/number-float32-base-div",287 -"@stdlib/number/float32/base/mul",288 -"@stdlib/number-float32-base-mul",289 -"@stdlib/number/float32/base/sub",28A -"@stdlib/number-float32-base-sub",28B -"@stdlib/number/float64/base/add",28C -"@stdlib/number-float64-base-add",28D -"@stdlib/number/float64/base/add3",28E -"@stdlib/number-float64-base-add3",28F -"@stdlib/number/float64/base/add4",28G -"@stdlib/number-float64-base-add4",28H -"@stdlib/number/float64/base/add5",28I -"@stdlib/number-float64-base-add5",28J -"@stdlib/number/float64/base/div",28K -"@stdlib/number-float64-base-div",28L -"@stdlib/number/float64/base/mul",28M -"@stdlib/number-float64-base-mul",28N -"@stdlib/number/float64/base/sub",28O -"@stdlib/number-float64-base-sub",28P -"@stdlib/number/uint32/base/mul",28Q -"@stdlib/number-uint32-base-mul",28R -"@stdlib/stats/base/dists/bradford/cdf",28S -"@stdlib/stats-base-dists-bradford-cdf",28T -"@stdlib/stats/base/dists/bradford/entropy",28U -"@stdlib/stats-base-dists-bradford-entropy",28V -"@stdlib/stats/base/dists/bradford/mean",28W -"@stdlib/stats-base-dists-bradford-mean",28X -"@stdlib/stats/base/dists/bradford/median",28Y -"@stdlib/stats-base-dists-bradford-median",28Z -"@stdlib/stats/base/dists/bradford/mode",28a -"@stdlib/stats-base-dists-bradford-mode",28b -"@stdlib/stats/base/dists/bradford/stdev",28c -"@stdlib/stats-base-dists-bradford-stdev",28d -"@stdlib/stats/base/dists/bradford/variance",28e -"@stdlib/stats-base-dists-bradford-variance",28f -"@stdlib/stats/base/dists/planck/mgf",28g -"@stdlib/stats-base-dists-planck-mgf",28h -"@stdlib/stats/strided/dcumax",28i -"@stdlib/stats-strided-dcumax",28j -"@stdlib/stats/strided/dcumaxabs",28k -"@stdlib/stats-strided-dcumaxabs",28l -"@stdlib/stats/strided/dcuminabs",28m -"@stdlib/stats-strided-dcuminabs",28n -"@stdlib/stats/strided/dmaxabs",28o -"@stdlib/stats-strided-dmaxabs",28p -"@stdlib/stats/strided/dmaxabssorted",28q -"@stdlib/stats-strided-dmaxabssorted",28r -"@stdlib/stats/strided/dmaxsorted",28s -"@stdlib/stats-strided-dmaxsorted",28t -"@stdlib/stats/strided/dmeankbn",28u -"@stdlib/stats-strided-dmeankbn",28v -"@stdlib/stats/strided/dmeankbn2",28w -"@stdlib/stats-strided-dmeankbn2",28x -"@stdlib/stats/strided/dmeanli",28y -"@stdlib/stats-strided-dmeanli",28z -"@stdlib/stats/strided/dmeanlipw",290 -"@stdlib/stats-strided-dmeanlipw",291 -"@stdlib/stats/strided/dmeanors",292 -"@stdlib/stats-strided-dmeanors",293 -"@stdlib/stats/strided/dmeanpw",294 -"@stdlib/stats-strided-dmeanpw",295 -"@stdlib/stats/strided/dmeanwd",296 -"@stdlib/stats-strided-dmeanwd",297 -"@stdlib/stats/strided/dmediansorted",298 -"@stdlib/stats-strided-dmediansorted",299 -"@stdlib/stats/strided/dmidrange",29A -"@stdlib/stats-strided-dmidrange",29B -"@stdlib/stats/strided/dmin",29C -"@stdlib/stats-strided-dmin",29D -"@stdlib/stats/strided/dminabs",29E -"@stdlib/stats-strided-dminabs",29F -"@stdlib/stats/strided/dminsorted",29G -"@stdlib/stats-strided-dminsorted",29H -"@stdlib/stats/strided/dnanmax",29I -"@stdlib/stats-strided-dnanmax",29J -"@stdlib/stats/strided/dnanmaxabs",29K -"@stdlib/stats-strided-dnanmaxabs",29L -"@stdlib/stats/strided/dnanmean",29M -"@stdlib/stats-strided-dnanmean",29N -"@stdlib/array/base/banded/filled2d-by",29O -"@stdlib/array-base-banded-filled2d-by",29P -"@stdlib/array/base/banded/to-compact",29Q -"@stdlib/array-base-banded-to-compact",29R -"@stdlib/array/base/fill-by",29S -"@stdlib/array-base-fill-by",29T -"@stdlib/array/base/map",29U -"@stdlib/array-base-map",29V -"@stdlib/array/base/symmetric-banded/filled2d-by",29W -"@stdlib/array-base-symmetric-banded-filled2d-by",29X -"@stdlib/array/base/symmetric-banded/to-compact",29Y -"@stdlib/array-base-symmetric-banded-to-compact",29Z -"@stdlib/array/base/symmetric/filled2d-by",29a -"@stdlib/array-base-symmetric-filled2d-by",29b -"@stdlib/blas/base/wasm/srotm",29c -"@stdlib/blas-base-wasm-srotm",29d -"@stdlib/blas/ext/base/wasm/dapxsum",29e -"@stdlib/blas-ext-base-wasm-dapxsum",29f -"@stdlib/blas/ext/base/wasm/dapxsumors",29g -"@stdlib/blas-ext-base-wasm-dapxsumors",29h -"@stdlib/blas/ext/base/wasm/dapxsumpw",29i -"@stdlib/blas-ext-base-wasm-dapxsumpw",29j -"@stdlib/blas/ext/base/wasm/dasumpw",29k -"@stdlib/blas-ext-base-wasm-dasumpw",29l -"@stdlib/blas/ext/base/wasm/dnansumpw",29m -"@stdlib/blas-ext-base-wasm-dnansumpw",29n -"@stdlib/complex/float32/base/identity",29o -"@stdlib/complex-float32-base-identity",29p -"@stdlib/complex/float32/base/neg",29q -"@stdlib/complex-float32-base-neg",29r -"@stdlib/complex/float32/base/sub",29s -"@stdlib/complex-float32-base-sub",29t -"@stdlib/complex/float64/base/div",29u -"@stdlib/complex-float64-base-div",29v -"@stdlib/complex/float64/base/identity",29w -"@stdlib/complex-float64-base-identity",29x -"@stdlib/complex/float64/base/neg",29y -"@stdlib/complex-float64-base-neg",29z -"@stdlib/complex/float64/base/sub",2A0 -"@stdlib/complex-float64-base-sub",2A1 -"@stdlib/console/log-each-map",2A2 -"@stdlib/console-log-each-map",2A3 -"@stdlib/constants/float32/apery",2A4 -"@stdlib/constants-float32-apery",2A5 -"@stdlib/constants/float32/gamma-lanczos-g",2A6 -"@stdlib/constants-float32-gamma-lanczos-g",2A7 -"@stdlib/constants/float32/ln-sqrt-two-pi",2A8 -"@stdlib/constants-float32-ln-sqrt-two-pi",2A9 -"@stdlib/constants/float32/ln-two-pi",2AA -"@stdlib/constants-float32-ln-two-pi",2AB -"@stdlib/constants/float32/log10-e",2AC -"@stdlib/constants-float32-log10-e",2AD -"@stdlib/constants/float32/log2-e",2AE -"@stdlib/constants-float32-log2-e",2AF -"@stdlib/constants/float32/max-safe-nth-double-factorial",2AG -"@stdlib/constants-float32-max-safe-nth-double-factorial",2AH -"@stdlib/constants/float32/max-safe-nth-tribonacci",2AI -"@stdlib/constants-float32-max-safe-nth-tribonacci",2AJ -"@stdlib/constants/float32/num-significand-bits",2AK -"@stdlib/constants-float32-num-significand-bits",2AL -"@stdlib/constants/float32/pi-squared",2AM -"@stdlib/constants-float32-pi-squared",2AN -"@stdlib/math/base/special/sincosd",2AO -"@stdlib/math-base-special-sincosd",2AP -"@stdlib/math/base/special/sind",2AQ -"@stdlib/math-base-special-sind",2AR -"@stdlib/ndarray/base/assert/is-scalar-mostly-safe-compatible",2AS -"@stdlib/ndarray-base-assert-is-scalar-mostly-safe-compatible",2AT -"@stdlib/ndarray/base/every",2AU -"@stdlib/ndarray-base-every",2AV -"@stdlib/ndarray/base/fill-by",2AW -"@stdlib/ndarray-base-fill-by",2AX -"@stdlib/ndarray/base/unary-reduce-subarray",2AY -"@stdlib/ndarray-base-unary-reduce-subarray",2AZ -"@stdlib/ndarray/fill-by",2Aa -"@stdlib/ndarray-fill-by",2Ab -"@stdlib/ndarray/fill",2Ac -"@stdlib/ndarray-fill",2Ad -"@stdlib/number/float32/base/identity",2Ae -"@stdlib/number-float32-base-identity",2Af -"@stdlib/number/float64/base/identity",2Ag -"@stdlib/number-float64-base-identity",2Ah -"@stdlib/number/int32/base/mul",2Ai -"@stdlib/number-int32-base-mul",2Aj -"@stdlib/number/int32/base/muldw",2Ak -"@stdlib/number-int32-base-muldw",2Al -"@stdlib/number/uint32/base/muldw",2Am -"@stdlib/number-uint32-base-muldw",2An -"@stdlib/stats/base/dists/bradford/pdf",2Ao -"@stdlib/stats-base-dists-bradford-pdf",2Ap -"@stdlib/stats/base/dists/bradford/quantile",2Aq -"@stdlib/stats-base-dists-bradford-quantile",2Ar -"@stdlib/stats/incr/nanmean",2As -"@stdlib/stats-incr-nanmean",2At -"@stdlib/stats/incr/nanmeanabs",2Au -"@stdlib/stats-incr-nanmeanabs",2Av -"@stdlib/stats/incr/nanskewness",2Aw -"@stdlib/stats-incr-nanskewness",2Ax -"@stdlib/stats/strided/dnanmeanors",2Ay -"@stdlib/stats-strided-dnanmeanors",2Az -"@stdlib/stats/strided/dnanmeanpn",2B0 -"@stdlib/stats-strided-dnanmeanpn",2B1 -"@stdlib/stats/strided/dnanmeanpw",2B2 -"@stdlib/stats-strided-dnanmeanpw",2B3 -"@stdlib/stats/strided/dnanmeanwd",2B4 -"@stdlib/stats-strided-dnanmeanwd",2B5 -"@stdlib/stats/strided/dnanmin",2B6 -"@stdlib/stats-strided-dnanmin",2B7 -"@stdlib/stats/strided/dnanminabs",2B8 -"@stdlib/stats-strided-dnanminabs",2B9 -"@stdlib/stats/strided/dnanrange",2BA -"@stdlib/stats-strided-dnanrange",2BB -"@stdlib/stats/strided/dnanstdevch",2BC -"@stdlib/stats-strided-dnanstdevch",2BD -"@stdlib/stats/strided/dnanstdevpn",2BE -"@stdlib/stats-strided-dnanstdevpn",2BF -"@stdlib/stats/strided/dnanstdevtk",2BG -"@stdlib/stats-strided-dnanstdevtk",2BH -"@stdlib/stats/strided/dnanstdevwd",2BI -"@stdlib/stats-strided-dnanstdevwd",2BJ -"@stdlib/stats/strided/dnanstdevyc",2BK -"@stdlib/stats-strided-dnanstdevyc",2BL -"@stdlib/stats/strided/dnanvariance",2BM -"@stdlib/stats-strided-dnanvariance",2BN -"@stdlib/stats/strided/dnanvariancech",2BO -"@stdlib/stats-strided-dnanvariancech",2BP -"@stdlib/stats/strided/dnanvariancepn",2BQ -"@stdlib/stats-strided-dnanvariancepn",2BR -"@stdlib/stats/strided/dnanvariancetk",2BS -"@stdlib/stats-strided-dnanvariancetk",2BT -"@stdlib/stats/strided/dnanvariancewd",2BU -"@stdlib/stats-strided-dnanvariancewd",2BV -"@stdlib/stats/strided/dnanvarianceyc",2BW -"@stdlib/stats-strided-dnanvarianceyc",2BX -"@stdlib/stats/strided/drange",2BY -"@stdlib/stats-strided-drange",2BZ -"@stdlib/stats/strided/dsemch",2Ba -"@stdlib/stats-strided-dsemch",2Bb -"@stdlib/stats/strided/dsemtk",2Bc -"@stdlib/stats-strided-dsemtk",2Bd -"@stdlib/stats/strided/dsemwd",2Be -"@stdlib/stats-strided-dsemwd",2Bf -"@stdlib/stats/strided/dsemyc",2Bg -"@stdlib/stats-strided-dsemyc",2Bh -"@stdlib/stats/strided/dsmean",2Bi -"@stdlib/stats-strided-dsmean",2Bj -"@stdlib/stats/strided/dsmeanpn",2Bk -"@stdlib/stats-strided-dsmeanpn",2Bl -"@stdlib/stats/strided/dsmeanpw",2Bm -"@stdlib/stats-strided-dsmeanpw",2Bn -"@stdlib/stats/strided/dsmeanwd",2Bo -"@stdlib/stats-strided-dsmeanwd",2Bp -"@stdlib/stats/strided/dsnanmean",2Bq -"@stdlib/stats-strided-dsnanmean",2Br -"@stdlib/stats/strided/dsnanmeanors",2Bs -"@stdlib/stats-strided-dsnanmeanors",2Bt -"@stdlib/stats/strided/dsnanmeanpn",2Bu -"@stdlib/stats-strided-dsnanmeanpn",2Bv -"@stdlib/stats/strided/dsnanmeanwd",2Bw -"@stdlib/stats-strided-dsnanmeanwd",2Bx -"@stdlib/stats/strided/dstdevch",2By -"@stdlib/stats-strided-dstdevch",2Bz -"@stdlib/stats/strided/dstdevpn",2C0 -"@stdlib/stats-strided-dstdevpn",2C1 -"@stdlib/stats/strided/dstdevtk",2C2 -"@stdlib/stats-strided-dstdevtk",2C3 -"@stdlib/stats/strided/dstdevwd",2C4 -"@stdlib/stats-strided-dstdevwd",2C5 -"@stdlib/stats/strided/dstdevyc",2C6 -"@stdlib/stats-strided-dstdevyc",2C7 -"@stdlib/stats/strided/dsvariance",2C8 -"@stdlib/stats-strided-dsvariance",2C9 -"@stdlib/stats/strided/dsvariancepn",2CA -"@stdlib/stats-strided-dsvariancepn",2CB -"@stdlib/stats/strided/dvariance",2CC -"@stdlib/stats-strided-dvariance",2CD -"@stdlib/stats/strided/dvariancech",2CE -"@stdlib/stats-strided-dvariancech",2CF -"@stdlib/stats/strided/dvariancepn",2CG -"@stdlib/stats-strided-dvariancepn",2CH -"@stdlib/stats/strided/dvariancetk",2CI -"@stdlib/stats-strided-dvariancetk",2CJ -"@stdlib/stats/strided/dvariancewd",2CK -"@stdlib/stats-strided-dvariancewd",2CL -"@stdlib/stats/strided/dvarianceyc",2CM -"@stdlib/stats-strided-dvarianceyc",2CN -"@stdlib/stats/strided/dvarmtk",2CO -"@stdlib/stats-strided-dvarmtk",2CP -"@stdlib/stats/strided/scumax",2CQ -"@stdlib/stats-strided-scumax",2CR -"@stdlib/stats/strided/scumaxabs",2CS -"@stdlib/stats-strided-scumaxabs",2CT -"@stdlib/stats/strided/scumin",2CU -"@stdlib/stats-strided-scumin",2CV -"@stdlib/stats/strided/scuminabs",2CW -"@stdlib/stats-strided-scuminabs",2CX -"@stdlib/stats/strided/sdsmean",2CY -"@stdlib/stats-strided-sdsmean",2CZ -"@stdlib/stats/strided/sdsmeanors",2Ca -"@stdlib/stats-strided-sdsmeanors",2Cb -"@stdlib/stats/strided/smax",2Cc -"@stdlib/stats-strided-smax",2Cd -"@stdlib/stats/strided/smaxabs",2Ce -"@stdlib/stats-strided-smaxabs",2Cf -"@stdlib/stats/strided/smaxabssorted",2Cg -"@stdlib/stats-strided-smaxabssorted",2Ch -"@stdlib/stats/strided/smaxsorted",2Ci -"@stdlib/stats-strided-smaxsorted",2Cj -"@stdlib/stats/strided/smeanli",2Ck -"@stdlib/stats-strided-smeanli",2Cl -"@stdlib/stats/strided/smeanpw",2Cm -"@stdlib/stats-strided-smeanpw",2Cn -"@stdlib/stats/strided/smeanwd",2Co -"@stdlib/stats-strided-smeanwd",2Cp -"@stdlib/stats/strided/smediansorted",2Cq -"@stdlib/stats-strided-smediansorted",2Cr -"@stdlib/stats/strided/smin",2Cs -"@stdlib/stats-strided-smin",2Ct -"@stdlib/stats/strided/sminabs",2Cu -"@stdlib/stats-strided-sminabs",2Cv -"@stdlib/stats/strided/sminsorted",2Cw -"@stdlib/stats-strided-sminsorted",2Cx -"@stdlib/stats/strided/smskmax",2Cy -"@stdlib/stats-strided-smskmax",2Cz -"@stdlib/stats/strided/smskmin",2D0 -"@stdlib/stats-strided-smskmin",2D1 -"@stdlib/stats/strided/smskrange",2D2 -"@stdlib/stats-strided-smskrange",2D3 -"@stdlib/stats/strided/snanmax",2D4 -"@stdlib/stats-strided-snanmax",2D5 -"@stdlib/stats/strided/snanmaxabs",2D6 -"@stdlib/stats-strided-snanmaxabs",2D7 -"@stdlib/stats/strided/snanmeanors",2D8 -"@stdlib/stats-strided-snanmeanors",2D9 -"@stdlib/stats/strided/snanmeanpn",2DA -"@stdlib/stats-strided-snanmeanpn",2DB -"@stdlib/stats/strided/snanmeanwd",2DC -"@stdlib/stats-strided-snanmeanwd",2DD -"@stdlib/stats/strided/snanmin",2DE -"@stdlib/stats-strided-snanmin",2DF -"@stdlib/stats/strided/snanminabs",2DG -"@stdlib/stats-strided-snanminabs",2DH -"@stdlib/stats/strided/snanrange",2DI -"@stdlib/stats-strided-snanrange",2DJ -"@stdlib/stats/strided/srange",2DK -"@stdlib/stats-strided-srange",2DL -"@stdlib/stats/strided/sstdevch",2DM -"@stdlib/stats-strided-sstdevch",2DN -"@stdlib/stats/strided/sstdevpn",2DO -"@stdlib/stats-strided-sstdevpn",2DP -"@stdlib/stats/strided/sstdevtk",2DQ -"@stdlib/stats-strided-sstdevtk",2DR -"@stdlib/string/base/slice-grapheme-clusters",2DS -"@stdlib/string-base-slice-grapheme-clusters",2DT -"@stdlib/string/base/slice",2DU -"@stdlib/string-base-slice",2DV -"@stdlib/string/num-code-points",2DW -"@stdlib/string-num-code-points",2DX -"@stdlib/array/base/index-of-same-value",2DY -"@stdlib/array-base-index-of-same-value",2DZ -"@stdlib/array/base/last-index-of-same-value",2Da -"@stdlib/array-base-last-index-of-same-value",2Db -"@stdlib/array/base/linspace2d",2Dc -"@stdlib/array-base-linspace2d",2Dd -"@stdlib/array/base/reshape",2De -"@stdlib/array-base-reshape",2Df -"@stdlib/constants/float32/catalan",2Dg -"@stdlib/constants-float32-catalan",2Dh -"@stdlib/constants/float32/eulergamma",2Di -"@stdlib/constants-float32-eulergamma",2Dj -"@stdlib/constants/float32/fourth-root-eps",2Dk -"@stdlib/constants-float32-fourth-root-eps",2Dl -"@stdlib/constants/float32/max-ln",2Dm -"@stdlib/constants-float32-max-ln",2Dn -"@stdlib/constants/float32/max-safe-lucas",2Do -"@stdlib/constants-float32-max-safe-lucas",2Dp -"@stdlib/constants/float32/min-ln",2Dq -"@stdlib/constants-float32-min-ln",2Dr -"@stdlib/math/base/special/atan2d",2Ds -"@stdlib/math-base-special-atan2d",2Dt -"@stdlib/math/base/special/csignumf",2Du -"@stdlib/math-base-special-csignumf",2Dv -"@stdlib/math/base/special/fibonaccif",2Dw -"@stdlib/math-base-special-fibonaccif",2Dx -"@stdlib/ndarray/base/includes",2Dy -"@stdlib/ndarray-base-includes",2Dz -"@stdlib/ndarray/every",2E0 -"@stdlib/ndarray-every",2E1 -"@stdlib/ndarray/includes",2E2 -"@stdlib/ndarray-includes",2E3 -"@stdlib/stats/incr/nanstdev",2E4 -"@stdlib/stats-incr-nanstdev",2E5 -"@stdlib/stats/strided/dcumin",2E6 -"@stdlib/stats-strided-dcumin",2E7 -"@stdlib/stats/strided/dmskmax",2E8 -"@stdlib/stats-strided-dmskmax",2E9 -"@stdlib/stats/strided/dmskmin",2EA -"@stdlib/stats-strided-dmskmin",2EB -"@stdlib/stats/strided/dmskrange",2EC -"@stdlib/stats-strided-dmskrange",2ED -"@stdlib/stats/strided/dsmeanors",2EE -"@stdlib/stats-strided-dsmeanors",2EF -"@stdlib/stats/strided/smidrange",2EG -"@stdlib/stats-strided-smidrange",2EH -"@stdlib/stats/strided/sstdevyc",2EI -"@stdlib/stats-strided-sstdevyc",2EJ -"@stdlib/stats/strided/svariancech",2EK -"@stdlib/stats-strided-svariancech",2EL -"@stdlib/stats/strided/svariancepn",2EM -"@stdlib/stats-strided-svariancepn",2EN -"@stdlib/stats/strided/svariancetk",2EO -"@stdlib/stats-strided-svariancetk",2EP -"@stdlib/stats/strided/svarianceyc",2EQ -"@stdlib/stats-strided-svarianceyc",2ER -"@stdlib/string/base/slice-code-points",2ES -"@stdlib/string-base-slice-code-points",2ET -"@stdlib/array/base/count-ifs",2EU -"@stdlib/array-base-count-ifs",2EV -"@stdlib/math/base/special/fibonacci-indexf",2EW -"@stdlib/math-base-special-fibonacci-indexf",2EX -"@stdlib/stats/array/max",2EY -"@stdlib/stats-array-max",2EZ -"@stdlib/stats/array/mskmax",2Ea -"@stdlib/stats-array-mskmax",2Eb -"@stdlib/stats/array/nanmax",2Ec -"@stdlib/stats-array-nanmax",2Ed -"@stdlib/stats/array/varianceyc",2Ee -"@stdlib/stats-array-varianceyc",2Ef -"@stdlib/array/base/banded",2Eg -"@stdlib/array-base-banded",2Eh -"@stdlib/array/base/symmetric-banded",2Ei -"@stdlib/array-base-symmetric-banded",2Ej -"@stdlib/array/base/symmetric",2Ek -"@stdlib/array-base-symmetric",2El -"@stdlib/blas/base/wasm/sswap",2Em -"@stdlib/blas-base-wasm-sswap",2En -"@stdlib/math/base/special/lucasf",2Eo -"@stdlib/math-base-special-lucasf",2Ep -"@stdlib/ndarray/base/every-by",2Eq -"@stdlib/ndarray-base-every-by",2Er -"@stdlib/ndarray/base/unary-reduce-strided1d",2Es -"@stdlib/ndarray-base-unary-reduce-strided1d",2Et -"@stdlib/object/every-in-by",2Eu -"@stdlib/object-every-in-by",2Ev -"@stdlib/stats/array/min",2Ew -"@stdlib/stats-array-min",2Ex -"@stdlib/stats/base/ndarray/dmax",2Ey -"@stdlib/stats-base-ndarray-dmax",2Ez -"@stdlib/stats/base/ndarray/max",2F0 -"@stdlib/stats-base-ndarray-max",2F1 -"@stdlib/stats/base/ndarray",2F2 -"@stdlib/stats-base-ndarray",2F3 -"@stdlib/stats/base/ndarray/smax",2F4 -"@stdlib/stats-base-ndarray-smax",2F5 -"@stdlib/stats/max",2F6 -"@stdlib/stats-max",2F7 -"@stdlib/stats/tools/reduce/unary-strided-dispatch-factory",2F8 -"@stdlib/stats-tools-reduce-unary-strided-dispatch-factory",2F9 -"@stdlib/stats/tools/reduce/unary-strided-dispatch",2FA -"@stdlib/stats-tools-reduce-unary-strided-dispatch",2FB -"@stdlib/blas/base/wasm/dsdot",2FC -"@stdlib/blas-base-wasm-dsdot",2FD -"@stdlib/blas/ext/base/ndarray/dcusum",2FE -"@stdlib/blas-ext-base-ndarray-dcusum",2FF -"@stdlib/blas/ext/base/ndarray/dsum",2FG -"@stdlib/blas-ext-base-ndarray-dsum",2FH -"@stdlib/blas/ext/base/ndarray/gcusum",2FI -"@stdlib/blas-ext-base-ndarray-gcusum",2FJ -"@stdlib/blas/ext/base/ndarray/gsum",2FK -"@stdlib/blas-ext-base-ndarray-gsum",2FL -"@stdlib/blas/ext/base/ndarray",2FM -"@stdlib/blas-ext-base-ndarray",2FN -"@stdlib/blas/ext/base/ndarray/scusum",2FO -"@stdlib/blas-ext-base-ndarray-scusum",2FP -"@stdlib/blas/ext/base/ndarray/ssum",2FQ -"@stdlib/blas-ext-base-ndarray-ssum",2FR -"@stdlib/blas/ext/cusum",2FS -"@stdlib/blas-ext-cusum",2FT -"@stdlib/blas/ext/sum",2FU -"@stdlib/blas-ext-sum",2FV -"@stdlib/constants/float32/max-nth-double-factorial",2FW -"@stdlib/constants-float32-max-nth-double-factorial",2FX -"@stdlib/constants/float32/max-nth-factorial",2FY -"@stdlib/constants-float32-max-nth-factorial",2FZ -"@stdlib/constants/float64/max-nth-double-factorial",2Fa -"@stdlib/constants-float64-max-nth-double-factorial",2Fb -"@stdlib/constants/float64/max-nth-factorial",2Fc -"@stdlib/constants-float64-max-nth-factorial",2Fd -"@stdlib/ndarray/base/assert/is-boolean-index-data-type",2Fe -"@stdlib/ndarray-base-assert-is-boolean-index-data-type",2Ff -"@stdlib/ndarray/base/assert/is-index-data-type",2Fg -"@stdlib/ndarray-base-assert-is-index-data-type",2Fh -"@stdlib/ndarray/base/assert/is-input-casting-policy",2Fi -"@stdlib/ndarray-base-assert-is-input-casting-policy",2Fj -"@stdlib/ndarray/base/assert/is-integer-index-data-type",2Fk -"@stdlib/ndarray-base-assert-is-integer-index-data-type",2Fl -"@stdlib/ndarray/base/assert/is-mask-index-data-type",2Fm -"@stdlib/ndarray-base-assert-is-mask-index-data-type",2Fn -"@stdlib/ndarray/base/unary-input-casting-dtype",2Fo -"@stdlib/ndarray-base-unary-input-casting-dtype",2Fp -"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory",2Fq -"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-factory",2Fr -"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch",2Fs -"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch",2Ft -"@stdlib/ndarray/base/unary-strided1d-dispatch-factory",2Fu -"@stdlib/ndarray-base-unary-strided1d-dispatch-factory",2Fv -"@stdlib/ndarray/base/unary-strided1d-dispatch",2Fw -"@stdlib/ndarray-base-unary-strided1d-dispatch",2Fx -"@stdlib/ndarray/base/unary-strided1d",2Fy -"@stdlib/ndarray-base-unary-strided1d",2Fz -"@stdlib/ndarray/input-casting-policies",2G0 -"@stdlib/ndarray-input-casting-policies",2G1 -"@stdlib/stats/base/ndarray/cumax",2G2 -"@stdlib/stats-base-ndarray-cumax",2G3 -"@stdlib/stats/base/ndarray/dcumax",2G4 -"@stdlib/stats-base-ndarray-dcumax",2G5 -"@stdlib/stats/base/ndarray/scumax",2G6 -"@stdlib/stats-base-ndarray-scumax",2G7 -"@stdlib/stats/cumax",2G8 -"@stdlib/stats-cumax",2G9 -"@stdlib/blas/base/wasm/sdsdot",2GA -"@stdlib/blas-base-wasm-sdsdot",2GB -"@stdlib/blas/ext/base/wasm/dnanasumors",2GC -"@stdlib/blas-ext-base-wasm-dnanasumors",2GD -"@stdlib/blas/ext/base/wasm/sapxsumkbn",2GE -"@stdlib/blas-ext-base-wasm-sapxsumkbn",2GF -"@stdlib/lapack/base/zlaswp",2GG -"@stdlib/lapack-base-zlaswp",2GH -"@stdlib/math/base/special/logitf",2GI -"@stdlib/math-base-special-logitf",2GJ -"@stdlib/random/tools",2GK -"@stdlib/random-tools",2GL -"@stdlib/random/tools/unary-factory",2GM -"@stdlib/random-tools-unary-factory",2GN -"@stdlib/random/tools/unary",2GO -"@stdlib/random-tools-unary",2GP -"@stdlib/stats/array/maxabs",2GQ -"@stdlib/stats-array-maxabs",2GR -"@stdlib/stats/array/maxsorted",2GS -"@stdlib/stats-array-maxsorted",2GT -"@stdlib/stats/incr/nanmaxabs",2GU -"@stdlib/stats-incr-nanmaxabs",2GV -"@stdlib/stats/incr/nanmstdev",2GW -"@stdlib/stats-incr-nanmstdev",2GX -"@stdlib/stats/strided/wasm/dmeanors",2GY -"@stdlib/stats-strided-wasm-dmeanors",2GZ -"@stdlib/array/base/assert/any-has-own-property",2Ga -"@stdlib/array-base-assert-any-has-own-property",2Gb -"@stdlib/array/base/assert/any-has-property",2Gc -"@stdlib/array-base-assert-any-has-property",2Gd -"@stdlib/array/base/assert/any-is-entry-in",2Ge -"@stdlib/array-base-assert-any-is-entry-in",2Gf -"@stdlib/array/base/assert/any-is-entry",2Gg -"@stdlib/array-base-assert-any-is-entry",2Gh -"@stdlib/ndarray/base/binary-output-dtype",2Gi -"@stdlib/ndarray-base-binary-output-dtype",2Gj -"@stdlib/ndarray/base/binary",2Gk -"@stdlib/ndarray-base-binary",2Gl -"@stdlib/ndarray/base/output-dtype",2Gm -"@stdlib/ndarray-base-output-dtype",2Gn -"@stdlib/ndarray/base/promote-dtypes",2Go -"@stdlib/ndarray-base-promote-dtypes",2Gp -"@stdlib/stats/array/minabs",2Gq -"@stdlib/stats-array-minabs",2Gr -"@stdlib/stats/array/minsorted",2Gs -"@stdlib/stats-array-minsorted",2Gt -"@stdlib/stats/array/mskmin",2Gu -"@stdlib/stats-array-mskmin",2Gv -"@stdlib/blas/ext/base/dnancusumkbn",2Gw -"@stdlib/blas-ext-base-dnancusumkbn",2Gx -"@stdlib/blas/ext/base/wasm/dapx",2Gy -"@stdlib/blas-ext-base-wasm-dapx",2Gz -"@stdlib/lapack/base/claswp",2H0 -"@stdlib/lapack-base-claswp",2H1 -"@stdlib/math/base/special/bernoullif",2H2 -"@stdlib/math-base-special-bernoullif",2H3 -"@stdlib/math/base/special/gammasgnf",2H4 -"@stdlib/math-base-special-gammasgnf",2H5 -"@stdlib/ndarray/base/loop-interchange-order",2H6 -"@stdlib/ndarray-base-loop-interchange-order",2H7 -"@stdlib/ndarray/vector/ctor",2H8 -"@stdlib/ndarray-vector-ctor",2H9 -"@stdlib/ndarray/vector/float32",2HA -"@stdlib/ndarray-vector-float32",2HB -"@stdlib/ndarray/vector/float64",2HC -"@stdlib/ndarray-vector-float64",2HD -"@stdlib/random/tools/binary-factory",2HE -"@stdlib/random-tools-binary-factory",2HF -"@stdlib/random/tools/binary",2HG -"@stdlib/random-tools-binary",2HH -"@stdlib/random/uniform",2HI -"@stdlib/random-uniform",2HJ -"@stdlib/stats/array/mean",2HK -"@stdlib/stats-array-mean",2HL -"@stdlib/stats/array/mskrange",2HM -"@stdlib/stats-array-mskrange",2HN -"@stdlib/stats/array/nanmin",2HO -"@stdlib/stats-array-nanmin",2HP -"@stdlib/array/base/any-has-own-property",2HQ -"@stdlib/array-base-any-has-own-property",2HR -"@stdlib/array/base/any-has-property",2HS -"@stdlib/array-base-any-has-property",2HT -"@stdlib/array/base/any-is-entry-in",2HU -"@stdlib/array-base-any-is-entry-in",2HV -"@stdlib/array/base/any-is-entry",2HW -"@stdlib/array-base-any-is-entry",2HX -"@stdlib/assert/is-equal-booleanarray",2HY -"@stdlib/assert-is-equal-booleanarray",2HZ -"@stdlib/assert/is-equal-date-object",2Ha -"@stdlib/assert-is-equal-date-object",2Hb -"@stdlib/assert/is-equal-int16array",2Hc -"@stdlib/assert-is-equal-int16array",2Hd -"@stdlib/assert/is-equal-int32array",2He -"@stdlib/assert-is-equal-int32array",2Hf -"@stdlib/assert/is-equal-int8array",2Hg -"@stdlib/assert-is-equal-int8array",2Hh -"@stdlib/assert/is-equal-uint16array",2Hi -"@stdlib/assert-is-equal-uint16array",2Hj -"@stdlib/assert/is-equal-uint32array",2Hk -"@stdlib/assert-is-equal-uint32array",2Hl -"@stdlib/assert/is-equal-uint8array",2Hm -"@stdlib/assert-is-equal-uint8array",2Hn -"@stdlib/assert/is-equal-uint8clampedarray",2Ho -"@stdlib/assert-is-equal-uint8clampedarray",2Hp -"@stdlib/blas/base/csscal",2Hq -"@stdlib/blas-base-csscal",2Hr -"@stdlib/blas/ext/base/csum",2Hs -"@stdlib/blas-ext-base-csum",2Ht -"@stdlib/blas/ext/base/csumkbn",2Hu -"@stdlib/blas-ext-base-csumkbn",2Hv -"@stdlib/blas/ext/base/gnannsumpw",2Hw -"@stdlib/blas-ext-base-gnannsumpw",2Hx -"@stdlib/blas/ext/base/ndarray/csum",2Hy -"@stdlib/blas-ext-base-ndarray-csum",2Hz -"@stdlib/blas/ext/base/ndarray/zsum",2I0 -"@stdlib/blas-ext-base-ndarray-zsum",2I1 -"@stdlib/blas/ext/base/zsum",2I2 -"@stdlib/blas-ext-base-zsum",2I3 -"@stdlib/blas/ext/base/zsumkbn",2I4 -"@stdlib/blas-ext-base-zsumkbn",2I5 -"@stdlib/complex/float32/base/scale",2I6 -"@stdlib/complex-float32-base-scale",2I7 -"@stdlib/lapack/base/dgttrf",2I8 -"@stdlib/lapack-base-dgttrf",2I9 -"@stdlib/lapack/base/dlapy2",2IA -"@stdlib/lapack-base-dlapy2",2IB -"@stdlib/lapack/base/dlapy3",2IC -"@stdlib/lapack-base-dlapy3",2ID -"@stdlib/lapack/base/iladlc",2IE -"@stdlib/lapack-base-iladlc",2IF -"@stdlib/lapack/base/iladlr",2IG -"@stdlib/lapack-base-iladlr",2IH -"@stdlib/math/base/special/atan2f",2II -"@stdlib/math-base-special-atan2f",2IJ -"@stdlib/math/base/special/binomcoeff",2IK -"@stdlib/math-base-special-binomcoeff",2IL -"@stdlib/math/base/special/cinvf",2IM -"@stdlib/math-base-special-cinvf",2IN -"@stdlib/math/base/special/factorial2f",2IO -"@stdlib/math-base-special-factorial2f",2IP -"@stdlib/math/base/special/kernel-cosf",2IQ -"@stdlib/math-base-special-kernel-cosf",2IR -"@stdlib/math/base/special/kernel-sinf",2IS -"@stdlib/math-base-special-kernel-sinf",2IT -"@stdlib/math/base/special/negafibonaccif",2IU -"@stdlib/math-base-special-negafibonaccif",2IV -"@stdlib/math/base/special/rempio2f",2IW -"@stdlib/math-base-special-rempio2f",2IX -"@stdlib/math/base/special/spencef",2IY -"@stdlib/math-base-special-spencef",2IZ -"@stdlib/math/base/special/tribonaccif",2Ia -"@stdlib/math-base-special-tribonaccif",2Ib -"@stdlib/math/base/special/wrapf",2Ic -"@stdlib/math-base-special-wrapf",2Id -"@stdlib/ndarray/base/count-falsy",2Ie -"@stdlib/ndarray-base-count-falsy",2If -"@stdlib/ndarray/base/count-if",2Ig -"@stdlib/ndarray-base-count-if",2Ih -"@stdlib/ndarray/base/count-truthy",2Ii -"@stdlib/ndarray-base-count-truthy",2Ij -"@stdlib/ndarray/base/some-by",2Ik -"@stdlib/ndarray-base-some-by",2Il -"@stdlib/ndarray/base/unary-reduce-strided1d-by",2Im -"@stdlib/ndarray-base-unary-reduce-strided1d-by",2In -"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory",2Io -"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by-factory",2Ip -"@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by",2Iq -"@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by",2Ir -"@stdlib/ndarray/base/unary-reduce-subarray-by",2Is -"@stdlib/ndarray-base-unary-reduce-subarray-by",2It -"@stdlib/ndarray/count-falsy",2Iu -"@stdlib/ndarray-count-falsy",2Iv -"@stdlib/ndarray/count-if",2Iw -"@stdlib/ndarray-count-if",2Ix -"@stdlib/ndarray/count-truthy",2Iy -"@stdlib/ndarray-count-truthy",2Iz -"@stdlib/ndarray/some-by",2J0 -"@stdlib/ndarray-some-by",2J1 -"@stdlib/ndarray/vector/bool",2J2 -"@stdlib/ndarray-vector-bool",2J3 -"@stdlib/ndarray/vector/complex128",2J4 -"@stdlib/ndarray-vector-complex128",2J5 -"@stdlib/ndarray/vector/complex64",2J6 -"@stdlib/ndarray-vector-complex64",2J7 -"@stdlib/ndarray/vector/int16",2J8 -"@stdlib/ndarray-vector-int16",2J9 -"@stdlib/ndarray/vector/int32",2JA -"@stdlib/ndarray-vector-int32",2JB -"@stdlib/ndarray/vector/int8",2JC -"@stdlib/ndarray-vector-int8",2JD -"@stdlib/ndarray/vector",2JE -"@stdlib/ndarray-vector",2JF -"@stdlib/ndarray/vector/uint16",2JG -"@stdlib/ndarray-vector-uint16",2JH -"@stdlib/ndarray/vector/uint32",2JI -"@stdlib/ndarray-vector-uint32",2JJ -"@stdlib/ndarray/vector/uint8",2JK -"@stdlib/ndarray-vector-uint8",2JL -"@stdlib/ndarray/vector/uint8c",2JM -"@stdlib/ndarray-vector-uint8c",2JN -"@stdlib/stats/array/max-by",2JO -"@stdlib/stats-array-max-by",2JP -"@stdlib/stats/array/mediansorted",2JQ -"@stdlib/stats-array-mediansorted",2JR -"@stdlib/stats/array/min-by",2JS -"@stdlib/stats-array-min-by",2JT -"@stdlib/stats/array/nanmax-by",2JU -"@stdlib/stats-array-nanmax-by",2JV -"@stdlib/stats/array/nanmaxabs",2JW -"@stdlib/stats-array-nanmaxabs",2JX -"@stdlib/stats/array/nanmin-by",2JY -"@stdlib/stats-array-nanmin-by",2JZ -"@stdlib/stats/array/nanminabs",2Ja -"@stdlib/stats-array-nanminabs",2Jb -"@stdlib/stats/array/nanrange",2Jc -"@stdlib/stats-array-nanrange",2Jd -"@stdlib/stats/array",2Je -"@stdlib/stats-array",2Jf -"@stdlib/stats/array/range",2Jg -"@stdlib/stats-array-range",2Jh -"@stdlib/stats/base/ndarray/max-by",2Ji -"@stdlib/stats-base-ndarray-max-by",2Jj -"@stdlib/stats/max-by",2Jk -"@stdlib/stats-max-by",2Jl -"@stdlib/stats/strided/dmean",2Jm -"@stdlib/stats-strided-dmean",2Jn -"@stdlib/stats/strided/dmeanpn",2Jo -"@stdlib/stats-strided-dmeanpn",2Jp -"@stdlib/stats/strided/dnanmskmax",2Jq -"@stdlib/stats-strided-dnanmskmax",2Jr -"@stdlib/stats/strided/dnanmskmin",2Js -"@stdlib/stats-strided-dnanmskmin",2Jt -"@stdlib/stats/strided/dnanmskrange",2Ju -"@stdlib/stats-strided-dnanmskrange",2Jv -"@stdlib/stats/strided/dnanstdev",2Jw -"@stdlib/stats-strided-dnanstdev",2Jx -"@stdlib/stats/strided/dsem",2Jy -"@stdlib/stats-strided-dsem",2Jz -"@stdlib/stats/strided/dsempn",2K0 -"@stdlib/stats-strided-dsempn",2K1 -"@stdlib/stats/strided/dstdev",2K2 -"@stdlib/stats-strided-dstdev",2K3 -"@stdlib/stats/strided",2K4 -"@stdlib/stats-strided",2K5 -"@stdlib/stats/strided/snanmskmax",2K6 -"@stdlib/stats-strided-snanmskmax",2K7 -"@stdlib/stats/strided/snanmskmin",2K8 -"@stdlib/stats-strided-snanmskmin",2K9 -"@stdlib/stats/strided/snanmskrange",2KA -"@stdlib/stats-strided-snanmskrange",2KB -"@stdlib/stats/strided/wasm/dmeanwd",2KC -"@stdlib/stats-strided-wasm-dmeanwd",2KD -"@stdlib/array/struct-factory",2KE -"@stdlib/array-struct-factory",2KF -"@stdlib/assert/napi/is-dataview",2KG -"@stdlib/assert-napi-is-dataview",2KH -"@stdlib/dstructs/struct",2KI -"@stdlib/dstructs-struct",2KJ -"@stdlib/math/base/special/cosf",2KK -"@stdlib/math-base-special-cosf",2KL -"@stdlib/math/base/special/cosm1f",2KM -"@stdlib/math-base-special-cosm1f",2KN -"@stdlib/math/base/special/covercosf",2KO -"@stdlib/math-base-special-covercosf",2KP -"@stdlib/math/base/special/coversinf",2KQ -"@stdlib/math-base-special-coversinf",2KR -"@stdlib/math/base/special/cphasef",2KS -"@stdlib/math-base-special-cphasef",2KT -"@stdlib/math/base/special/cscf",2KU -"@stdlib/math-base-special-cscf",2KV -"@stdlib/math/base/special/frexpf",2KW -"@stdlib/math-base-special-frexpf",2KX -"@stdlib/math/base/special/gamma-lanczos-sum-expg-scaledf",2KY -"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaledf",2KZ -"@stdlib/math/base/special/hacovercosf",2Ka -"@stdlib/math-base-special-hacovercosf",2Kb -"@stdlib/math/base/special/hacoversinf",2Kc -"@stdlib/math-base-special-hacoversinf",2Kd -"@stdlib/math/base/special/havercosf",2Ke -"@stdlib/math-base-special-havercosf",2Kf -"@stdlib/math/base/special/haversinf",2Kg -"@stdlib/math-base-special-haversinf",2Kh -"@stdlib/math/base/special/kernel-tanf",2Ki -"@stdlib/math-base-special-kernel-tanf",2Kj -"@stdlib/math/base/special/minmaxabsf",2Kk -"@stdlib/math-base-special-minmaxabsf",2Kl -"@stdlib/math/base/special/minmaxf",2Km -"@stdlib/math-base-special-minmaxf",2Kn -"@stdlib/math/base/special/modff",2Ko -"@stdlib/math-base-special-modff",2Kp -"@stdlib/math/base/special/secf",2Kq -"@stdlib/math-base-special-secf",2Kr -"@stdlib/math/base/special/sinf",2Ks -"@stdlib/math-base-special-sinf",2Kt -"@stdlib/math/base/special/tanf",2Ku -"@stdlib/math-base-special-tanf",2Kv -"@stdlib/math/base/special/vercosf",2Kw -"@stdlib/math-base-special-vercosf",2Kx -"@stdlib/math/base/special/versinf",2Ky -"@stdlib/math-base-special-versinf",2Kz -"@stdlib/napi/argv-dataview-cast",2L0 -"@stdlib/napi-argv-dataview-cast",2L1 -"@stdlib/napi/argv-dataview",2L2 -"@stdlib/napi-argv-dataview",2L3 -"@stdlib/ndarray/base/assert/is-struct-data-type",2L4 -"@stdlib/ndarray-base-assert-is-struct-data-type",2L5 -"@stdlib/number/float64/base/ulp-difference",2L6 -"@stdlib/number-float64-base-ulp-difference",2L7 -"@stdlib/number/uint16/base/add",2L8 -"@stdlib/number-uint16-base-add",2L9 -"@stdlib/number/uint16/base/mul",2LA -"@stdlib/number-uint16-base-mul",2LB -"@stdlib/number/uint16/base/sub",2LC -"@stdlib/number-uint16-base-sub",2LD -"@stdlib/number/uint32/base/add",2LE -"@stdlib/number-uint32-base-add",2LF -"@stdlib/number/uint32/base/sub",2LG -"@stdlib/number-uint32-base-sub",2LH -"@stdlib/number/uint8/base/add",2LI -"@stdlib/number-uint8-base-add",2LJ -"@stdlib/number/uint8/base/mul",2LK -"@stdlib/number-uint8-base-mul",2LL -"@stdlib/number/uint8/base/sub",2LM -"@stdlib/number-uint8-base-sub",2LN -"@stdlib/stats/array/meankbn",2LO -"@stdlib/stats-array-meankbn",2LP -"@stdlib/stats/array/meankbn2",2LQ -"@stdlib/stats-array-meankbn2",2LR -"@stdlib/stats/array/meanors",2LS -"@stdlib/stats-array-meanors",2LT -"@stdlib/stats/array/meanpn",2LU -"@stdlib/stats-array-meanpn",2LV -"@stdlib/stats/array/meanpw",2LW -"@stdlib/stats-array-meanpw",2LX -"@stdlib/stats/array/meanwd",2LY -"@stdlib/stats-array-meanwd",2LZ -"@stdlib/stats/array/nanmean",2La -"@stdlib/stats-array-nanmean",2Lb -"@stdlib/stats/array/nanmskmax",2Lc -"@stdlib/stats-array-nanmskmax",2Ld -"@stdlib/stats/base/ztest/alternative-enum2str",2Le -"@stdlib/stats-base-ztest-alternative-enum2str",2Lf -"@stdlib/stats/base/ztest/alternative-resolve-enum",2Lg -"@stdlib/stats-base-ztest-alternative-resolve-enum",2Lh -"@stdlib/stats/base/ztest/alternative-resolve-str",2Li -"@stdlib/stats-base-ztest-alternative-resolve-str",2Lj -"@stdlib/stats/base/ztest/alternative-str2enum",2Lk -"@stdlib/stats-base-ztest-alternative-str2enum",2Ll -"@stdlib/stats/base/ztest/alternatives",2Lm -"@stdlib/stats-base-ztest-alternatives",2Ln -"@stdlib/stats/base/ztest/one-sample/results/factory",2Lo -"@stdlib/stats-base-ztest-one-sample-results-factory",2Lp -"@stdlib/stats/base/ztest/one-sample/results/float32",2Lq -"@stdlib/stats-base-ztest-one-sample-results-float32",2Lr -"@stdlib/stats/base/ztest/one-sample/results/float64",2Ls -"@stdlib/stats-base-ztest-one-sample-results-float64",2Lt -"@stdlib/stats/base/ztest/one-sample/results/struct-factory",2Lu -"@stdlib/stats-base-ztest-one-sample-results-struct-factory",2Lv -"@stdlib/stats/base/ztest/one-sample/results/to-json",2Lw -"@stdlib/stats-base-ztest-one-sample-results-to-json",2Lx -"@stdlib/stats/base/ztest/one-sample/results/to-string",2Ly -"@stdlib/stats-base-ztest-one-sample-results-to-string",2Lz -"@stdlib/stats/strided/dvarm",2M0 -"@stdlib/stats-strided-dvarm",2M1 -"@stdlib/stats/strided/dvarmpn",2M2 -"@stdlib/stats-strided-dvarmpn",2M3 -"@stdlib/stats/strided/dztest",2M4 -"@stdlib/stats-strided-dztest",2M5 -"@stdlib/stats/strided/max-by",2M6 -"@stdlib/stats-strided-max-by",2M7 -"@stdlib/stats/strided/max",2M8 -"@stdlib/stats-strided-max",2M9 -"@stdlib/stats/strided/maxabs",2MA -"@stdlib/stats-strided-maxabs",2MB -"@stdlib/stats/strided/maxsorted",2MC -"@stdlib/stats-strided-maxsorted",2MD -"@stdlib/stats/strided/mean",2ME -"@stdlib/stats-strided-mean",2MF -"@stdlib/stats/strided/meankbn",2MG -"@stdlib/stats-strided-meankbn",2MH -"@stdlib/stats/strided/meankbn2",2MI -"@stdlib/stats-strided-meankbn2",2MJ -"@stdlib/stats/strided/meanors",2MK -"@stdlib/stats-strided-meanors",2ML -"@stdlib/stats/strided/meanpn",2MM -"@stdlib/stats-strided-meanpn",2MN -"@stdlib/stats/strided/meanpw",2MO -"@stdlib/stats-strided-meanpw",2MP -"@stdlib/stats/strided/meanwd",2MQ -"@stdlib/stats-strided-meanwd",2MR -"@stdlib/stats/strided/mediansorted",2MS -"@stdlib/stats-strided-mediansorted",2MT -"@stdlib/stats/strided/min-by",2MU -"@stdlib/stats-strided-min-by",2MV -"@stdlib/stats/strided/min",2MW -"@stdlib/stats-strided-min",2MX -"@stdlib/stats/strided/minabs",2MY -"@stdlib/stats-strided-minabs",2MZ -"@stdlib/stats/strided/minsorted",2Ma -"@stdlib/stats-strided-minsorted",2Mb -"@stdlib/stats/strided/mskmax",2Mc -"@stdlib/stats-strided-mskmax",2Md -"@stdlib/stats/strided/mskmin",2Me -"@stdlib/stats-strided-mskmin",2Mf -"@stdlib/stats/strided/mskrange",2Mg -"@stdlib/stats-strided-mskrange",2Mh -"@stdlib/stats/strided/nanmax-by",2Mi -"@stdlib/stats-strided-nanmax-by",2Mj -"@stdlib/stats/strided/nanmax",2Mk -"@stdlib/stats-strided-nanmax",2Ml -"@stdlib/stats/strided/nanmaxabs",2Mm -"@stdlib/stats-strided-nanmaxabs",2Mn -"@stdlib/stats/strided/nanmin-by",2Mo -"@stdlib/stats-strided-nanmin-by",2Mp -"@stdlib/stats/strided/nanmin",2Mq -"@stdlib/stats-strided-nanmin",2Mr -"@stdlib/stats/strided/nanminabs",2Ms -"@stdlib/stats-strided-nanminabs",2Mt -"@stdlib/stats/strided/smean",2Mu -"@stdlib/stats-strided-smean",2Mv -"@stdlib/stats/strided/smeanpn",2Mw -"@stdlib/stats-strided-smeanpn",2Mx -"@stdlib/stats/strided/sstdev",2My -"@stdlib/stats-strided-sstdev",2Mz -"@stdlib/stats/strided/svariance",2N0 -"@stdlib/stats-strided-svariance",2N1 -"@stdlib/stats/strided/svariancewd",2N2 -"@stdlib/stats-strided-svariancewd",2N3 -"@stdlib/stats/strided/sztest",2N4 -"@stdlib/stats-strided-sztest",2N5 -"@stdlib/stats/strided/ztest",2N6 -"@stdlib/stats-strided-ztest",2N7 -"@stdlib/array/base/assert/has-almost-equal-values",2N8 -"@stdlib/array-base-assert-has-almost-equal-values",2N9 -"@stdlib/assert/has-float16array-support",2NA -"@stdlib/assert-has-float16array-support",2NB -"@stdlib/assert/is-almost-equal-float64array",2NC -"@stdlib/assert-is-almost-equal-float64array",2ND -"@stdlib/assert/is-almost-equal",2NE -"@stdlib/assert-is-almost-equal",2NF -"@stdlib/assert/is-float16array",2NG -"@stdlib/assert-is-float16array",2NH -"@stdlib/assert/is-struct-constructor-like",2NI -"@stdlib/assert-is-struct-constructor-like",2NJ -"@stdlib/assert/is-struct",2NK -"@stdlib/assert-is-struct",2NL -"@stdlib/blas/base/assert/is-matrix-orientation",2NM -"@stdlib/blas-base-assert-is-matrix-orientation",2NN -"@stdlib/blas/base/gger",2NO -"@stdlib/blas-base-gger",2NP -"@stdlib/blas/base/igamax",2NQ -"@stdlib/blas-base-igamax",2NR -"@stdlib/blas/base/matrix-orientation-enum2str",2NS -"@stdlib/blas-base-matrix-orientation-enum2str",2NT -"@stdlib/blas/base/matrix-orientation-resolve-enum",2NU -"@stdlib/blas-base-matrix-orientation-resolve-enum",2NV -"@stdlib/blas/base/matrix-orientation-resolve-str",2NW -"@stdlib/blas-base-matrix-orientation-resolve-str",2NX -"@stdlib/blas/base/matrix-orientation-str2enum",2NY -"@stdlib/blas-base-matrix-orientation-str2enum",2NZ -"@stdlib/blas/base/matrix-orientations",2Na -"@stdlib/blas-base-matrix-orientations",2Nb -"@stdlib/blas/base/sger",2Nc -"@stdlib/blas-base-sger",2Nd -"@stdlib/blas/base/wasm/dznrm2",2Ne -"@stdlib/blas-base-wasm-dznrm2",2Nf -"@stdlib/blas/base/wasm/scasum",2Ng -"@stdlib/blas-base-wasm-scasum",2Nh -"@stdlib/blas/base/wasm/scnrm2",2Ni -"@stdlib/blas-base-wasm-scnrm2",2Nj -"@stdlib/blas/ext/base/dindex-of",2Nk -"@stdlib/blas-ext-base-dindex-of",2Nl -"@stdlib/blas/ext/base/dlast-index-of",2Nm -"@stdlib/blas-ext-base-dlast-index-of",2Nn -"@stdlib/blas/ext/base/gindex-of",2No -"@stdlib/blas-ext-base-gindex-of",2Np -"@stdlib/blas/ext/base/glast-index-of",2Nq -"@stdlib/blas-ext-base-glast-index-of",2Nr -"@stdlib/blas/ext/base/ndarray/dindex-of",2Ns -"@stdlib/blas-ext-base-ndarray-dindex-of",2Nt -"@stdlib/blas/ext/base/ndarray/dlast-index-of",2Nu -"@stdlib/blas-ext-base-ndarray-dlast-index-of",2Nv -"@stdlib/blas/ext/base/ndarray/gindex-of",2Nw -"@stdlib/blas-ext-base-ndarray-gindex-of",2Nx -"@stdlib/blas/ext/base/ndarray/glast-index-of",2Ny -"@stdlib/blas-ext-base-ndarray-glast-index-of",2Nz -"@stdlib/blas/ext/base/ndarray/sindex-of",2O0 -"@stdlib/blas-ext-base-ndarray-sindex-of",2O1 -"@stdlib/blas/ext/base/ndarray/slast-index-of",2O2 -"@stdlib/blas-ext-base-ndarray-slast-index-of",2O3 -"@stdlib/blas/ext/base/sindex-of",2O4 -"@stdlib/blas-ext-base-sindex-of",2O5 -"@stdlib/blas/ext/base/slast-index-of",2O6 -"@stdlib/blas-ext-base-slast-index-of",2O7 -"@stdlib/blas/ext/base/wasm/dnansumkbn2",2O8 -"@stdlib/blas-ext-base-wasm-dnansumkbn2",2O9 -"@stdlib/complex/float32/base/assert/is-almost-equal",2OA -"@stdlib/complex-float32-base-assert-is-almost-equal",2OB -"@stdlib/complex/float64/base/assert/is-almost-equal",2OC -"@stdlib/complex-float64-base-assert-is-almost-equal",2OD -"@stdlib/lapack/base/dlaset",2OE -"@stdlib/lapack-base-dlaset",2OF -"@stdlib/lapack/base/shared",2OG -"@stdlib/lapack-base-shared",2OH -"@stdlib/lapack/base/xerbla",2OI -"@stdlib/lapack-base-xerbla",2OJ -"@stdlib/math/base/special/kernel-log1pf",2OK -"@stdlib/math-base-special-kernel-log1pf",2OL -"@stdlib/math/base/special/round-nearest-even",2OM -"@stdlib/math-base-special-round-nearest-even",2ON -"@stdlib/math/base/special/sech",2OO -"@stdlib/math-base-special-sech",2OP -"@stdlib/ndarray/base/assert/is-data-type-string",2OQ -"@stdlib/ndarray-base-assert-is-data-type-string",2OR -"@stdlib/ndarray/base/ndarraylike2scalar",2OS -"@stdlib/ndarray-base-ndarraylike2scalar",2OT -"@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct",2OU -"@stdlib/ndarray-base-unary-reduce-strided1d-assign-struct",2OV -"@stdlib/number/float32/base/assert/is-almost-equal",2OW -"@stdlib/number-float32-base-assert-is-almost-equal",2OX -"@stdlib/number/float32/base/ulp-difference",2OY -"@stdlib/number-float32-base-ulp-difference",2OZ -"@stdlib/number/float64/base/assert/is-almost-equal",2Oa -"@stdlib/number-float64-base-assert-is-almost-equal",2Ob -"@stdlib/object/every-own-by",2Oc -"@stdlib/object-every-own-by",2Od -"@stdlib/object/none-in-by",2Oe -"@stdlib/object-none-in-by",2Of -"@stdlib/object/some-in-by",2Og -"@stdlib/object-some-in-by",2Oh -"@stdlib/stats/array/nanmeanors",2Oi -"@stdlib/stats-array-nanmeanors",2Oj -"@stdlib/stats/array/nanmeanpn",2Ok -"@stdlib/stats-array-nanmeanpn",2Ol -"@stdlib/stats/array/nanmeanwd",2Om -"@stdlib/stats-array-nanmeanwd",2On -"@stdlib/stats/array/nanmskmin",2Oo -"@stdlib/stats-array-nanmskmin",2Op -"@stdlib/stats/array/nanmskrange",2Oq -"@stdlib/stats-array-nanmskrange",2Or -"@stdlib/stats/array/nanrange-by",2Os -"@stdlib/stats-array-nanrange-by",2Ot -"@stdlib/stats/array/nanstdev",2Ou -"@stdlib/stats-array-nanstdev",2Ov -"@stdlib/stats/array/nanstdevch",2Ow -"@stdlib/stats-array-nanstdevch",2Ox -"@stdlib/stats/array/nanvariance",2Oy -"@stdlib/stats-array-nanvariance",2Oz -"@stdlib/stats/array/nanvariancech",2P0 -"@stdlib/stats-array-nanvariancech",2P1 -"@stdlib/stats/array/nanvariancepn",2P2 -"@stdlib/stats-array-nanvariancepn",2P3 -"@stdlib/stats/array/nanvariancetk",2P4 -"@stdlib/stats-array-nanvariancetk",2P5 -"@stdlib/stats/array/nanvariancewd",2P6 -"@stdlib/stats-array-nanvariancewd",2P7 -"@stdlib/stats/array/nanvarianceyc",2P8 -"@stdlib/stats-array-nanvarianceyc",2P9 -"@stdlib/stats/array/range-by",2PA -"@stdlib/stats-array-range-by",2PB -"@stdlib/stats/array/stdev",2PC -"@stdlib/stats-array-stdev",2PD -"@stdlib/stats/array/stdevch",2PE -"@stdlib/stats-array-stdevch",2PF -"@stdlib/stats/array/stdevpn",2PG -"@stdlib/stats-array-stdevpn",2PH -"@stdlib/stats/array/stdevtk",2PI -"@stdlib/stats-array-stdevtk",2PJ -"@stdlib/stats/array/stdevwd",2PK -"@stdlib/stats-array-stdevwd",2PL -"@stdlib/stats/array/stdevyc",2PM -"@stdlib/stats-array-stdevyc",2PN -"@stdlib/stats/array/variance",2PO -"@stdlib/stats-array-variance",2PP -"@stdlib/stats/array/variancech",2PQ -"@stdlib/stats-array-variancech",2PR -"@stdlib/stats/array/variancepn",2PS -"@stdlib/stats-array-variancepn",2PT -"@stdlib/stats/array/variancetk",2PU -"@stdlib/stats-array-variancetk",2PV -"@stdlib/stats/array/variancewd",2PW -"@stdlib/stats-array-variancewd",2PX -"@stdlib/stats/base/dists/bradford/skewness",2PY -"@stdlib/stats-base-dists-bradford-skewness",2PZ -"@stdlib/stats/base/ndarray/cumin",2Pa -"@stdlib/stats-base-ndarray-cumin",2Pb -"@stdlib/stats/base/ndarray/dcumin",2Pc -"@stdlib/stats-base-ndarray-dcumin",2Pd -"@stdlib/stats/base/ndarray/dmin",2Pe -"@stdlib/stats-base-ndarray-dmin",2Pf -"@stdlib/stats/base/ndarray/drange",2Pg -"@stdlib/stats-base-ndarray-drange",2Ph -"@stdlib/stats/base/ndarray/dztest",2Pi -"@stdlib/stats-base-ndarray-dztest",2Pj -"@stdlib/stats/base/ndarray/min-by",2Pk -"@stdlib/stats-base-ndarray-min-by",2Pl -"@stdlib/stats/base/ndarray/min",2Pm -"@stdlib/stats-base-ndarray-min",2Pn -"@stdlib/stats/base/ndarray/range",2Po -"@stdlib/stats-base-ndarray-range",2Pp -"@stdlib/stats/base/ndarray/scumin",2Pq -"@stdlib/stats-base-ndarray-scumin",2Pr -"@stdlib/stats/base/ndarray/smin",2Ps -"@stdlib/stats-base-ndarray-smin",2Pt -"@stdlib/stats/base/ndarray/srange",2Pu -"@stdlib/stats-base-ndarray-srange",2Pv -"@stdlib/stats/base/ndarray/sztest",2Pw -"@stdlib/stats-base-ndarray-sztest",2Px -"@stdlib/stats/base/ndarray/ztest",2Py -"@stdlib/stats-base-ndarray-ztest",2Pz -"@stdlib/stats/base/ztest/two-sample/results/factory",2Q0 -"@stdlib/stats-base-ztest-two-sample-results-factory",2Q1 -"@stdlib/stats/base/ztest/two-sample/results/float32",2Q2 -"@stdlib/stats-base-ztest-two-sample-results-float32",2Q3 -"@stdlib/stats/base/ztest/two-sample/results/float64",2Q4 -"@stdlib/stats-base-ztest-two-sample-results-float64",2Q5 -"@stdlib/stats/base/ztest/two-sample/results/struct-factory",2Q6 -"@stdlib/stats-base-ztest-two-sample-results-struct-factory",2Q7 -"@stdlib/stats/base/ztest/two-sample/results/to-json",2Q8 -"@stdlib/stats-base-ztest-two-sample-results-to-json",2Q9 -"@stdlib/stats/base/ztest/two-sample/results/to-string",2QA -"@stdlib/stats-base-ztest-two-sample-results-to-string",2QB -"@stdlib/stats/incr/nanmsum",2QC -"@stdlib/stats-incr-nanmsum",2QD -"@stdlib/stats/strided/covarmtk",2QE -"@stdlib/stats-strided-covarmtk",2QF -"@stdlib/stats/strided/dcovarmtk",2QG -"@stdlib/stats-strided-dcovarmtk",2QH -"@stdlib/stats/strided/dcovmatmtk",2QI -"@stdlib/stats-strided-dcovmatmtk",2QJ -"@stdlib/stats/strided/dmeanstdev",2QK -"@stdlib/stats-strided-dmeanstdev",2QL -"@stdlib/stats/strided/dmeanstdevpn",2QM -"@stdlib/stats-strided-dmeanstdevpn",2QN -"@stdlib/stats/strided/dmeanvar",2QO -"@stdlib/stats-strided-dmeanvar",2QP -"@stdlib/stats/strided/dmeanvarpn",2QQ -"@stdlib/stats-strided-dmeanvarpn",2QR -"@stdlib/stats/strided/nanmean",2QS -"@stdlib/stats-strided-nanmean",2QT -"@stdlib/stats/strided/nanmeanors",2QU -"@stdlib/stats-strided-nanmeanors",2QV -"@stdlib/stats/strided/nanmeanpn",2QW -"@stdlib/stats-strided-nanmeanpn",2QX -"@stdlib/stats/strided/nanmeanwd",2QY -"@stdlib/stats-strided-nanmeanwd",2QZ -"@stdlib/stats/strided/nanmskmax",2Qa -"@stdlib/stats-strided-nanmskmax",2Qb -"@stdlib/stats/strided/nanmskmin",2Qc -"@stdlib/stats-strided-nanmskmin",2Qd -"@stdlib/stats/strided/nanmskrange",2Qe -"@stdlib/stats-strided-nanmskrange",2Qf -"@stdlib/stats/strided/nanrange-by",2Qg -"@stdlib/stats-strided-nanrange-by",2Qh -"@stdlib/stats/strided/nanrange",2Qi -"@stdlib/stats-strided-nanrange",2Qj -"@stdlib/stats/strided/nanvariance",2Qk -"@stdlib/stats-strided-nanvariance",2Ql -"@stdlib/stats/strided/nanvariancech",2Qm -"@stdlib/stats-strided-nanvariancech",2Qn -"@stdlib/stats/strided/nanvariancepn",2Qo -"@stdlib/stats-strided-nanvariancepn",2Qp -"@stdlib/stats/strided/nanvariancetk",2Qq -"@stdlib/stats-strided-nanvariancetk",2Qr -"@stdlib/stats/strided/nanvariancewd",2Qs -"@stdlib/stats-strided-nanvariancewd",2Qt -"@stdlib/stats/strided/nanvarianceyc",2Qu -"@stdlib/stats-strided-nanvarianceyc",2Qv -"@stdlib/stats/strided/range-by",2Qw -"@stdlib/stats-strided-range-by",2Qx -"@stdlib/stats/strided/range",2Qy -"@stdlib/stats-strided-range",2Qz -"@stdlib/stats/strided/scovarmtk",2R0 -"@stdlib/stats-strided-scovarmtk",2R1 -"@stdlib/stats/strided/smeankbn",2R2 -"@stdlib/stats-strided-smeankbn",2R3 -"@stdlib/stats/strided/smeankbn2",2R4 -"@stdlib/stats-strided-smeankbn2",2R5 -"@stdlib/stats/strided/smeanlipw",2R6 -"@stdlib/stats-strided-smeanlipw",2R7 -"@stdlib/stats/strided/smeanors",2R8 -"@stdlib/stats-strided-smeanors",2R9 -"@stdlib/stats/strided/stdev",2RA -"@stdlib/stats-strided-stdev",2RB -"@stdlib/stats/strided/stdevch",2RC -"@stdlib/stats-strided-stdevch",2RD -"@stdlib/stats/strided/stdevpn",2RE -"@stdlib/stats-strided-stdevpn",2RF -"@stdlib/stats/strided/stdevtk",2RG -"@stdlib/stats-strided-stdevtk",2RH -"@stdlib/stats/strided/stdevwd",2RI -"@stdlib/stats-strided-stdevwd",2RJ -"@stdlib/stats/strided/stdevyc",2RK -"@stdlib/stats-strided-stdevyc",2RL -"@stdlib/stats/strided/sztest2",2RM -"@stdlib/stats-strided-sztest2",2RN -"@stdlib/stats/strided/variance",2RO -"@stdlib/stats-strided-variance",2RP -"@stdlib/stats/strided/variancech",2RQ -"@stdlib/stats-strided-variancech",2RR -"@stdlib/stats/strided/variancepn",2RS -"@stdlib/stats-strided-variancepn",2RT -"@stdlib/stats/strided/variancetk",2RU -"@stdlib/stats-strided-variancetk",2RV -"@stdlib/stats/strided/variancewd",2RW -"@stdlib/stats-strided-variancewd",2RX -"@stdlib/stats/strided/varianceyc",2RY -"@stdlib/stats-strided-varianceyc",2RZ -"@stdlib/stats/strided/ztest2",2Ra -"@stdlib/stats-strided-ztest2",2Rb -"@stdlib/wasm/types",2Rc -"@stdlib/wasm-types",2Rd -"@stdlib/array/base/zip2object",2Re -"@stdlib/array-base-zip2object",2Rf -"@stdlib/assert/is-almost-equal-array",2Rg -"@stdlib/assert-is-almost-equal-array",2Rh -"@stdlib/assert/is-almost-equal-complex128array",2Ri -"@stdlib/assert-is-almost-equal-complex128array",2Rj -"@stdlib/assert/is-almost-equal-complex64array",2Rk -"@stdlib/assert-is-almost-equal-complex64array",2Rl -"@stdlib/assert/is-almost-equal-float32array",2Rm -"@stdlib/assert-is-almost-equal-float32array",2Rn -"@stdlib/blas/ext/index-of",2Ro -"@stdlib/blas-ext-index-of",2Rp -"@stdlib/math/base/special/cospif",2Rq -"@stdlib/math-base-special-cospif",2Rr -"@stdlib/math/base/special/cpolarf",2Rs -"@stdlib/math-base-special-cpolarf",2Rt -"@stdlib/math/base/special/kernel-sincos",2Ru -"@stdlib/math-base-special-kernel-sincos",2Rv -"@stdlib/math/base/special/sinpif",2Rw -"@stdlib/math-base-special-sinpif",2Rx -"@stdlib/object/assign-in",2Ry -"@stdlib/object-assign-in",2Rz -"@stdlib/stats/array/nanstdevpn",2S0 -"@stdlib/stats-array-nanstdevpn",2S1 -"@stdlib/stats/array/nanstdevtk",2S2 -"@stdlib/stats-array-nanstdevtk",2S3 -"@stdlib/stats/array/nanstdevwd",2S4 -"@stdlib/stats-array-nanstdevwd",2S5 -"@stdlib/stats/array/nanstdevyc",2S6 -"@stdlib/stats-array-nanstdevyc",2S7 -"@stdlib/stats/base/ndarray/dztest2",2S8 -"@stdlib/stats-base-ndarray-dztest2",2S9 -"@stdlib/stats/base/ndarray/sztest2",2SA -"@stdlib/stats-base-ndarray-sztest2",2SB -"@stdlib/stats/base/ndarray/ztest2",2SC -"@stdlib/stats-base-ndarray-ztest2",2SD -"@stdlib/stats/strided/dztest2",2SE -"@stdlib/stats-strided-dztest2",2SF -"@stdlib/stats/strided/nanstdev",2SG -"@stdlib/stats-strided-nanstdev",2SH -"@stdlib/stats/strided/nanstdevch",2SI -"@stdlib/stats-strided-nanstdevch",2SJ -"@stdlib/stats/strided/nanstdevpn",2SK -"@stdlib/stats-strided-nanstdevpn",2SL -"@stdlib/stats/strided/nanstdevtk",2SM -"@stdlib/stats-strided-nanstdevtk",2SN -"@stdlib/stats/strided/nanstdevwd",2SO -"@stdlib/stats-strided-nanstdevwd",2SP -"@stdlib/stats/strided/nanstdevyc",2SQ -"@stdlib/stats-strided-nanstdevyc",2SR -"@stdlib/array/base/entries2objects",2SS -"@stdlib/array-base-entries2objects",2ST -"@stdlib/array/base/entries2views",2SU -"@stdlib/array-base-entries2views",2SV -"@stdlib/array/base/group-values-on-key",2SW -"@stdlib/array-base-group-values-on-key",2SX -"@stdlib/array/base/nested2objects",2SY -"@stdlib/array-base-nested2objects",2SZ -"@stdlib/array/base/nested2views",2Sa -"@stdlib/array-base-nested2views",2Sb -"@stdlib/array/base/rekey-views",2Sc -"@stdlib/array-base-rekey-views",2Sd -"@stdlib/array/base/rekey",2Se -"@stdlib/array-base-rekey",2Sf -"@stdlib/array/base/zip",2Sg -"@stdlib/array-base-zip",2Sh -"@stdlib/array/base/zip2objects",2Si -"@stdlib/array-base-zip2objects",2Sj -"@stdlib/array/base/zip2views",2Sk -"@stdlib/array-base-zip2views",2Sl -"@stdlib/blas/base/ggemm",2Sm -"@stdlib/blas-base-ggemm",2Sn -"@stdlib/blas/base/ggemv",2So -"@stdlib/blas-base-ggemv",2Sp -"@stdlib/blas/base/gsyr",2Sq -"@stdlib/blas-base-gsyr",2Sr -"@stdlib/blas/base/ndarray/ddot",2Ss -"@stdlib/blas-base-ndarray-ddot",2St -"@stdlib/blas/base/ndarray/gdot",2Su -"@stdlib/blas-base-ndarray-gdot",2Sv -"@stdlib/blas/base/ndarray/sdot",2Sw -"@stdlib/blas-base-ndarray-sdot",2Sx -"@stdlib/blas/ext/base/gfind-index",2Sy -"@stdlib/blas-ext-base-gfind-index",2Sz -"@stdlib/blas/ext/base/gfind-last-index",2T0 -"@stdlib/blas-ext-base-gfind-last-index",2T1 -"@stdlib/blas/ext/base/ndarray/dsorthp",2T2 -"@stdlib/blas-ext-base-ndarray-dsorthp",2T3 -"@stdlib/blas/ext/base/ndarray/gfind-index",2T4 -"@stdlib/blas-ext-base-ndarray-gfind-index",2T5 -"@stdlib/blas/ext/base/ndarray/gfind-last-index",2T6 -"@stdlib/blas-ext-base-ndarray-gfind-last-index",2T7 -"@stdlib/blas/ext/base/ndarray/gsorthp",2T8 -"@stdlib/blas-ext-base-ndarray-gsorthp",2T9 -"@stdlib/blas/ext/base/ndarray/ssorthp",2TA -"@stdlib/blas-ext-base-ndarray-ssorthp",2TB -"@stdlib/blas/ext/find-index",2TC -"@stdlib/blas-ext-find-index",2TD -"@stdlib/blas/ext/find-last-index",2TE -"@stdlib/blas-ext-find-last-index",2TF -"@stdlib/lapack/base/dladiv",2TG -"@stdlib/lapack-base-dladiv",2TH -"@stdlib/math/base/assert/is-negative-integerf",2TI -"@stdlib/math-base-assert-is-negative-integerf",2TJ -"@stdlib/math/base/special/absgammalnf",2TK -"@stdlib/math-base-special-absgammalnf",2TL -"@stdlib/math/base/special/cosdf",2TM -"@stdlib/math-base-special-cosdf",2TN -"@stdlib/math/base/special/cotdf",2TO -"@stdlib/math-base-special-cotdf",2TP -"@stdlib/math/base/special/cotf",2TQ -"@stdlib/math-base-special-cotf",2TR -"@stdlib/math/base/special/cscdf",2TS -"@stdlib/math-base-special-cscdf",2TT -"@stdlib/math/base/special/factoriallnf",2TU -"@stdlib/math-base-special-factoriallnf",2TV -"@stdlib/math/base/special/kernel-sincosf",2TW -"@stdlib/math-base-special-kernel-sincosf",2TX -"@stdlib/math/base/special/secdf",2TY -"@stdlib/math-base-special-secdf",2TZ -"@stdlib/math/base/special/sincf",2Ta -"@stdlib/math-base-special-sincf",2Tb -"@stdlib/math/base/special/sincosf",2Tc -"@stdlib/math-base-special-sincosf",2Td -"@stdlib/math/base/special/sindf",2Te -"@stdlib/math-base-special-sindf",2Tf -"@stdlib/math/base/special/tandf",2Tg -"@stdlib/math-base-special-tandf",2Th -"@stdlib/math/base/special/trigammaf",2Ti -"@stdlib/math-base-special-trigammaf",2Tj -"@stdlib/ndarray/base/binary-reduce-strided1d",2Tk -"@stdlib/ndarray-base-binary-reduce-strided1d",2Tl -"@stdlib/ndarray/base/from-array",2Tm -"@stdlib/ndarray-base-from-array",2Tn -"@stdlib/ndarray/base/zip2views1d",2To -"@stdlib/ndarray-base-zip2views1d",2Tp -"@stdlib/net/http2-secure-server",2Tq -"@stdlib/net-http2-secure-server",2Tr -"@stdlib/number/int16/base/identity",2Ts -"@stdlib/number-int16-base-identity",2Tt -"@stdlib/number/int32/base/identity",2Tu -"@stdlib/number-int32-base-identity",2Tv -"@stdlib/number/int8/base/identity",2Tw -"@stdlib/number-int8-base-identity",2Tx -"@stdlib/number/uint16/base/identity",2Ty -"@stdlib/number-uint16-base-identity",2Tz -"@stdlib/number/uint32/base/identity",2U0 -"@stdlib/number-uint32-base-identity",2U1 -"@stdlib/number/uint8/base/identity",2U2 -"@stdlib/number-uint8-base-identity",2U3 -"@stdlib/stats/base/dists/bradford",2U4 -"@stdlib/stats-base-dists-bradford",2U5 -"@stdlib/stats/base/dists/planck",2U6 -"@stdlib/stats-base-dists-planck",2U7 -"@stdlib/stats/base/ndarray/covarmtk",2U8 -"@stdlib/stats-base-ndarray-covarmtk",2U9 -"@stdlib/stats/base/ndarray/dcovarmtk",2UA -"@stdlib/stats-base-ndarray-dcovarmtk",2UB -"@stdlib/stats/base/ndarray/dmaxabs",2UC -"@stdlib/stats-base-ndarray-dmaxabs",2UD -"@stdlib/stats/base/ndarray/dmean",2UE -"@stdlib/stats-base-ndarray-dmean",2UF -"@stdlib/stats/base/ndarray/dminabs",2UG -"@stdlib/stats-base-ndarray-dminabs",2UH -"@stdlib/stats/base/ndarray/dnanmax",2UI -"@stdlib/stats-base-ndarray-dnanmax",2UJ -"@stdlib/stats/base/ndarray/dnanmin",2UK -"@stdlib/stats-base-ndarray-dnanmin",2UL -"@stdlib/stats/base/ndarray/maxabs",2UM -"@stdlib/stats-base-ndarray-maxabs",2UN -"@stdlib/stats/base/ndarray/mean",2UO -"@stdlib/stats-base-ndarray-mean",2UP -"@stdlib/stats/base/ndarray/minabs",2UQ -"@stdlib/stats-base-ndarray-minabs",2UR -"@stdlib/stats/base/ndarray/nanmax",2US -"@stdlib/stats-base-ndarray-nanmax",2UT -"@stdlib/stats/base/ndarray/nanmin",2UU -"@stdlib/stats-base-ndarray-nanmin",2UV -"@stdlib/stats/base/ndarray/scovarmtk",2UW -"@stdlib/stats-base-ndarray-scovarmtk",2UX -"@stdlib/stats/base/ndarray/smaxabs",2UY -"@stdlib/stats-base-ndarray-smaxabs",2UZ -"@stdlib/stats/base/ndarray/smean",2Ua -"@stdlib/stats-base-ndarray-smean",2Ub -"@stdlib/stats/base/ndarray/sminabs",2Uc -"@stdlib/stats-base-ndarray-sminabs",2Ud -"@stdlib/stats/base/ndarray/snanmax",2Ue -"@stdlib/stats-base-ndarray-snanmax",2Uf -"@stdlib/stats/base/ndarray/snanmin",2Ug -"@stdlib/stats-base-ndarray-snanmin",2Uh -"@stdlib/stats/cumin",2Ui -"@stdlib/stats-cumin",2Uj -"@stdlib/stats/maxabs",2Uk -"@stdlib/stats-maxabs",2Ul -"@stdlib/stats/mean",2Um -"@stdlib/stats-mean",2Un -"@stdlib/stats/min-by",2Uo -"@stdlib/stats-min-by",2Up -"@stdlib/stats/min",2Uq -"@stdlib/stats-min",2Ur -"@stdlib/stats/minabs",2Us -"@stdlib/stats-minabs",2Ut -"@stdlib/stats/nanmax",2Uu -"@stdlib/stats-nanmax",2Uv -"@stdlib/stats/nanmin",2Uw -"@stdlib/stats-nanmin",2Ux -"@stdlib/stats/range",2Uy -"@stdlib/stats-range",2Uz -"@stdlib/lapack/base/dlarf1f",2V0 -"@stdlib/lapack-base-dlarf1f",2V1 -"@stdlib/math/base/special/fast/absf",2V2 -"@stdlib/math-base-special-fast-absf",2V3 -"@stdlib/ndarray/base/any",2V4 -"@stdlib/ndarray-base-any",2V5 -"@stdlib/ndarray/base/nullary-strided1d",2V6 -"@stdlib/ndarray-base-nullary-strided1d",2V7 -"@stdlib/ndarray/with",2V8 -"@stdlib/ndarray-with",2V9 -"@stdlib/stats/base/ndarray/dnanmean",2VA -"@stdlib/stats-base-ndarray-dnanmean",2VB -"@stdlib/stats/base/ndarray/nanmean",2VC -"@stdlib/stats-base-ndarray-nanmean",2VD -"@stdlib/stats/base/ndarray/snanmean",2VE -"@stdlib/stats-base-ndarray-snanmean",2VF -"@stdlib/stats/nanmean",2VG -"@stdlib/stats-nanmean",2VH -"@stdlib/blas/base/wasm/zscal",2VI -"@stdlib/blas-base-wasm-zscal",2VJ -"@stdlib/blas/ext/last-index-of",2VK -"@stdlib/blas-ext-last-index-of",2VL -"@stdlib/complex/float32/base/mul-add",2VM -"@stdlib/complex-float32-base-mul-add",2VN -"@stdlib/math/base/special/fast/hypotf",2VO -"@stdlib/math-base-special-fast-hypotf",2VP -"@stdlib/ndarray/base/any-by",2VQ -"@stdlib/ndarray-base-any-by",2VR -"@stdlib/ndarray/base/binary-input-casting-dtype",2VS -"@stdlib/ndarray-base-binary-input-casting-dtype",2VT -"@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory",2VU -"@stdlib/ndarray-base-binary-reduce-strided1d-dispatch-factory",2VV -"@stdlib/ndarray/base/binary-reduce-strided1d-dispatch",2VW -"@stdlib/ndarray-base-binary-reduce-strided1d-dispatch",2VX -"@stdlib/ndarray/base/broadcast-array-except-dimensions",2VY -"@stdlib/ndarray-base-broadcast-array-except-dimensions",2VZ -"@stdlib/ndarray/base/find",2Va -"@stdlib/ndarray-base-find",2Vb -"@stdlib/ndarray/base/flatten-shape",2Vc -"@stdlib/ndarray-base-flatten-shape",2Vd -"@stdlib/ndarray/base/nullary-strided1d-dispatch",2Ve -"@stdlib/ndarray-base-nullary-strided1d-dispatch",2Vf -"@stdlib/ndarray/base/unary-addon-dispatch",2Vg -"@stdlib/ndarray-base-unary-addon-dispatch",2Vh -"@stdlib/ndarray/fill-slice",2Vi -"@stdlib/ndarray-fill-slice",2Vj -"@stdlib/ndarray/flatten",2Vk -"@stdlib/ndarray-flatten",2Vl -"@stdlib/stats/base/ndarray/dmaxsorted",2Vm -"@stdlib/stats-base-ndarray-dmaxsorted",2Vn -"@stdlib/stats/base/ndarray/maxsorted",2Vo -"@stdlib/stats-base-ndarray-maxsorted",2Vp -"@stdlib/stats/base/ndarray/smaxsorted",2Vq -"@stdlib/stats-base-ndarray-smaxsorted",2Vr -"@stdlib/stats/strided/sdsnanmeanors",2Vs -"@stdlib/stats-strided-sdsnanmeanors",2Vt -"@stdlib/stats/strided/snanmean",2Vu -"@stdlib/stats-strided-snanmean",2Vv -"@stdlib/stats/strided/sstdevwd",2Vw -"@stdlib/stats-strided-sstdevwd",2Vx -"@stdlib/array/base/insert-at",2Vy -"@stdlib/array-base-insert-at",2Vz -"@stdlib/array/base/to-inserted-at",2W0 -"@stdlib/array-base-to-inserted-at",2W1 -"@stdlib/blas/ext/base/gindex-of-row",2W2 -"@stdlib/blas-ext-base-gindex-of-row",2W3 -"@stdlib/math/base/special/fast/maxf",2W4 -"@stdlib/math-base-special-fast-maxf",2W5 -"@stdlib/ndarray/base/assert/is-data-type-object",2W6 -"@stdlib/ndarray-base-assert-is-data-type-object",2W7 -"@stdlib/ndarray/base/assert/is-equal-data-type",2W8 -"@stdlib/ndarray-base-assert-is-equal-data-type",2W9 -"@stdlib/ndarray/base/dtype-alignment",2WA -"@stdlib/ndarray-base-dtype-alignment",2WB -"@stdlib/ndarray/base/dtypes2enums",2WC -"@stdlib/ndarray-base-dtypes2enums",2WD -"@stdlib/ndarray/base/nullary-strided1d-dispatch-factory",2WE -"@stdlib/ndarray-base-nullary-strided1d-dispatch-factory",2WF -"@stdlib/ndarray/dtype-ctor",2WG -"@stdlib/ndarray-dtype-ctor",2WH -"@stdlib/ndarray/flatten-by",2WI -"@stdlib/ndarray-flatten-by",2WJ -"@stdlib/stats/strided/wasm/dnanvariancewd",2WK -"@stdlib/stats-strided-wasm-dnanvariancewd",2WL -"@stdlib/blas/ext/sorthp",2WM -"@stdlib/blas-ext-sorthp",2WN -"@stdlib/math/base/special/fast/minf",2WO -"@stdlib/math-base-special-fast-minf",2WP -"@stdlib/ndarray/any-by",2WQ -"@stdlib/ndarray-any-by",2WR -"@stdlib/ndarray/any",2WS -"@stdlib/ndarray-any",2WT -"@stdlib/ndarray/base/dtype-enums",2WU -"@stdlib/ndarray-base-dtype-enums",2WV -"@stdlib/ndarray/base/dtype-objects",2WW -"@stdlib/ndarray-base-dtype-objects",2WX -"@stdlib/ndarray/base/dtype-strings",2WY -"@stdlib/ndarray-base-dtype-strings",2WZ -"@stdlib/ndarray/base/pop",2Wa -"@stdlib/ndarray-base-pop",2Wb -"@stdlib/ndarray/base/shift",2Wc -"@stdlib/ndarray-base-shift",2Wd -"@stdlib/stats/incr/nangmean",2We -"@stdlib/stats-incr-nangmean",2Wf -"@stdlib/stats/incr/nanhmean",2Wg -"@stdlib/stats-incr-nanhmean",2Wh -"@stdlib/stats/incr/nanmin",2Wi -"@stdlib/stats-incr-nanmin",2Wj -"@stdlib/assert/has-is-concat-spreadable-symbol-support",2Wk -"@stdlib/assert-has-is-concat-spreadable-symbol-support",2Wl -"@stdlib/blas/ext/to-sortedhp",2Wm -"@stdlib/blas-ext-to-sortedhp",2Wn -"@stdlib/ndarray/base/assert/is-complex-floating-point-data-type-char",2Wo -"@stdlib/ndarray-base-assert-is-complex-floating-point-data-type-char",2Wp -"@stdlib/ndarray/base/copy",2Wq -"@stdlib/ndarray-base-copy",2Wr -"@stdlib/ndarray/base/dtype-chars",2Ws -"@stdlib/ndarray-base-dtype-chars",2Wt -"@stdlib/ndarray/base/flatten-shape-from",2Wu -"@stdlib/ndarray-base-flatten-shape-from",2Wv -"@stdlib/ndarray/base/some",2Ww -"@stdlib/ndarray-base-some",2Wx -"@stdlib/ndarray/concat",2Wy -"@stdlib/ndarray-concat",2Wz -"@stdlib/ndarray/find",2X0 -"@stdlib/ndarray-find",2X1 -"@stdlib/ndarray/flatten-from",2X2 -"@stdlib/ndarray-flatten-from",2X3 -"@stdlib/ndarray/pop",2X4 -"@stdlib/ndarray-pop",2X5 -"@stdlib/ndarray/reverse-dimension",2X6 -"@stdlib/ndarray-reverse-dimension",2X7 -"@stdlib/ndarray/reverse",2X8 -"@stdlib/ndarray-reverse",2X9 -"@stdlib/ndarray/shift",2XA -"@stdlib/ndarray-shift",2XB -"@stdlib/ndarray/to-reversed",2XC -"@stdlib/ndarray-to-reversed",2XD -"@stdlib/stats/base/ndarray/meankbn",2XE -"@stdlib/stats-base-ndarray-meankbn",2XF -"@stdlib/stats/base/ndarray/meankbn2",2XG -"@stdlib/stats-base-ndarray-meankbn2",2XH -"@stdlib/stats/base/ndarray/meanors",2XI -"@stdlib/stats-base-ndarray-meanors",2XJ -"@stdlib/stats/base/ndarray/meanpn",2XK -"@stdlib/stats-base-ndarray-meanpn",2XL -"@stdlib/stats/base/ndarray/meanpw",2XM -"@stdlib/stats-base-ndarray-meanpw",2XN -"@stdlib/stats/base/ndarray/meanwd",2XO -"@stdlib/stats-base-ndarray-meanwd",2XP -"@stdlib/stats/base/ndarray/mediansorted",2XQ -"@stdlib/stats-base-ndarray-mediansorted",2XR -"@stdlib/stats/base/ndarray/minsorted",2XS -"@stdlib/stats-base-ndarray-minsorted",2XT -"@stdlib/stats/base/ndarray/mskmax",2XU -"@stdlib/stats-base-ndarray-mskmax",2XV -"@stdlib/symbol/is-concat-spreadable",2XW -"@stdlib/symbol-is-concat-spreadable",2XX -"@stdlib/assert/has-has-instance-symbol-support",2XY -"@stdlib/assert-has-has-instance-symbol-support",2XZ -"@stdlib/assert/has-match-symbol-support",2Xa -"@stdlib/assert-has-match-symbol-support",2Xb -"@stdlib/assert/has-replace-symbol-support",2Xc -"@stdlib/assert-has-replace-symbol-support",2Xd -"@stdlib/assert/has-search-symbol-support",2Xe -"@stdlib/assert-has-search-symbol-support",2Xf -"@stdlib/assert/has-split-symbol-support",2Xg -"@stdlib/assert-has-split-symbol-support",2Xh -"@stdlib/assert/has-to-primitive-symbol-support",2Xi -"@stdlib/assert-has-to-primitive-symbol-support",2Xj -"@stdlib/blas/ext/base/dlinspace",2Xk -"@stdlib/blas-ext-base-dlinspace",2Xl -"@stdlib/blas/ext/base/glinspace",2Xm -"@stdlib/blas-ext-base-glinspace",2Xn -"@stdlib/blas/ext/base/ndarray/dlinspace",2Xo -"@stdlib/blas-ext-base-ndarray-dlinspace",2Xp -"@stdlib/blas/ext/base/ndarray/glinspace",2Xq -"@stdlib/blas-ext-base-ndarray-glinspace",2Xr -"@stdlib/blas/ext/base/ndarray/slinspace",2Xs -"@stdlib/blas-ext-base-ndarray-slinspace",2Xt -"@stdlib/blas/ext/base/slinspace",2Xu -"@stdlib/blas-ext-base-slinspace",2Xv -"@stdlib/ndarray/base/complement-shape",2Xw -"@stdlib/ndarray-base-complement-shape",2Xx -"@stdlib/ndarray/copy",2Xy -"@stdlib/ndarray-copy",2Xz -"@stdlib/stats/base/ndarray/dmeankbn",2Y0 -"@stdlib/stats-base-ndarray-dmeankbn",2Y1 -"@stdlib/stats/base/ndarray/dmeankbn2",2Y2 -"@stdlib/stats-base-ndarray-dmeankbn2",2Y3 -"@stdlib/stats/base/ndarray/dmeanli",2Y4 -"@stdlib/stats-base-ndarray-dmeanli",2Y5 -"@stdlib/stats/base/ndarray/dmeanlipw",2Y6 -"@stdlib/stats-base-ndarray-dmeanlipw",2Y7 -"@stdlib/stats/base/ndarray/dminsorted",2Y8 -"@stdlib/stats-base-ndarray-dminsorted",2Y9 -"@stdlib/stats/base/ndarray/mskmin",2YA -"@stdlib/stats-base-ndarray-mskmin",2YB -"@stdlib/stats/base/ndarray/range-by",2YC -"@stdlib/stats-base-ndarray-range-by",2YD -"@stdlib/stats/base/ndarray/smaxabssorted",2YE -"@stdlib/stats-base-ndarray-smaxabssorted",2YF -"@stdlib/stats/base/ndarray/sminsorted",2YG -"@stdlib/stats-base-ndarray-sminsorted",2YH -"@stdlib/stats/base/ndarray/snanmaxabs",2YI -"@stdlib/stats-base-ndarray-snanmaxabs",2YJ -"@stdlib/stats/base/ndarray/snanminabs",2YK -"@stdlib/stats-base-ndarray-snanminabs",2YL -"@stdlib/symbol/has-instance",2YM -"@stdlib/symbol-has-instance",2YN -"@stdlib/symbol/to-primitive",2YO -"@stdlib/symbol-to-primitive",2YP -"@stdlib/blas/ext/base/drrss",2YQ -"@stdlib/blas-ext-base-drrss",2YR -"@stdlib/blas/ext/linspace",2YS -"@stdlib/blas-ext-linspace",2YT -"@stdlib/ndarray/some",2YU -"@stdlib/ndarray-some",2YV -"@stdlib/number/float64/base/to-float16",2YW -"@stdlib/number-float64-base-to-float16",2YX -"@stdlib/number/int16/base",2YY -"@stdlib/number-int16-base",2YZ -"@stdlib/number/int8/base",2Ya -"@stdlib/number-int8-base",2Yb -"@stdlib/stats/base/ndarray/dnanmaxabs",2Yc -"@stdlib/stats-base-ndarray-dnanmaxabs",2Yd -"@stdlib/stats/base/ndarray/dnanminabs",2Ye -"@stdlib/stats-base-ndarray-dnanminabs",2Yf -"@stdlib/stats/base/ndarray/nanmaxabs",2Yg -"@stdlib/stats-base-ndarray-nanmaxabs",2Yh -"@stdlib/stats/base/ndarray/nanminabs",2Yi -"@stdlib/stats-base-ndarray-nanminabs",2Yj -"@stdlib/stats/base/ndarray/scumaxabs",2Yk -"@stdlib/stats-base-ndarray-scumaxabs",2Yl -"@stdlib/stats/base/ndarray/scuminabs",2Ym -"@stdlib/stats-base-ndarray-scuminabs",2Yn -"@stdlib/stats/incr/nanmcv",2Yo -"@stdlib/stats-incr-nanmcv",2Yp -"@stdlib/stats/strided/wasm/dmeanpw",2Yq -"@stdlib/stats-strided-wasm-dmeanpw",2Yr -"@stdlib/string/base/concat",2Ys -"@stdlib/string-base-concat",2Yt -"@stdlib/symbol/replace",2Yu -"@stdlib/symbol-replace",2Yv -"@stdlib/blas/ext/base/gjoin",2Yw -"@stdlib/blas-ext-base-gjoin",2Yx -"@stdlib/blas/ext/base/ndarray/csumkbn",2Yy -"@stdlib/blas-ext-base-ndarray-csumkbn",2Yz -"@stdlib/blas/ext/base/ndarray/dcusumkbn",2Z0 -"@stdlib/blas-ext-base-ndarray-dcusumkbn",2Z1 -"@stdlib/blas/ext/base/ndarray/dcusumkbn2",2Z2 -"@stdlib/blas-ext-base-ndarray-dcusumkbn2",2Z3 -"@stdlib/blas/ext/base/ndarray/dsumkbn",2Z4 -"@stdlib/blas-ext-base-ndarray-dsumkbn",2Z5 -"@stdlib/blas/ext/base/ndarray/dsumkbn2",2Z6 -"@stdlib/blas-ext-base-ndarray-dsumkbn2",2Z7 -"@stdlib/blas/ext/base/ndarray/gjoin",2Z8 -"@stdlib/blas-ext-base-ndarray-gjoin",2Z9 -"@stdlib/blas/ext/base/ndarray/gsumkbn",2ZA -"@stdlib/blas-ext-base-ndarray-gsumkbn",2ZB -"@stdlib/blas/ext/base/ndarray/gsumkbn2",2ZC -"@stdlib/blas-ext-base-ndarray-gsumkbn2",2ZD -"@stdlib/blas/ext/base/ndarray/scusumkbn",2ZE -"@stdlib/blas-ext-base-ndarray-scusumkbn",2ZF -"@stdlib/blas/ext/base/ndarray/scusumkbn2",2ZG -"@stdlib/blas-ext-base-ndarray-scusumkbn2",2ZH -"@stdlib/blas/ext/base/ndarray/ssumkbn",2ZI -"@stdlib/blas-ext-base-ndarray-ssumkbn",2ZJ -"@stdlib/blas/ext/base/ndarray/ssumkbn2",2ZK -"@stdlib/blas-ext-base-ndarray-ssumkbn2",2ZL -"@stdlib/blas/ext/base/ndarray/zsumkbn",2ZM -"@stdlib/blas-ext-base-ndarray-zsumkbn",2ZN -"@stdlib/constants/float16/apery",2ZO -"@stdlib/constants-float16-apery",2ZP -"@stdlib/constants/float16/catalan",2ZQ -"@stdlib/constants-float16-catalan",2ZR -"@stdlib/constants/float16/e",2ZS -"@stdlib/constants-float16-e",2ZT -"@stdlib/constants/float16/eulergamma",2ZU -"@stdlib/constants-float16-eulergamma",2ZV -"@stdlib/constants/float16/exponent-mask",2ZW -"@stdlib/constants-float16-exponent-mask",2ZX -"@stdlib/constants/float16/fourth-pi",2ZY -"@stdlib/constants-float16-fourth-pi",2ZZ -"@stdlib/constants/float16/half-pi",2Za -"@stdlib/constants-float16-half-pi",2Zb -"@stdlib/constants/float16/max-base2-exponent",2Zc -"@stdlib/constants-float16-max-base2-exponent",2Zd -"@stdlib/constants/float16/max-ln",2Ze -"@stdlib/constants-float16-max-ln",2Zf -"@stdlib/constants/float16/min-base2-exponent",2Zg -"@stdlib/constants-float16-min-base2-exponent",2Zh -"@stdlib/constants/float16/min-ln",2Zi -"@stdlib/constants-float16-min-ln",2Zj -"@stdlib/constants/float16/num-exponent-bits",2Zk -"@stdlib/constants-float16-num-exponent-bits",2Zl -"@stdlib/constants/float16/num-significand-bits",2Zm -"@stdlib/constants-float16-num-significand-bits",2Zn -"@stdlib/constants/float16/phi",2Zo -"@stdlib/constants-float16-phi",2Zp -"@stdlib/constants/float16/pi-squared",2Zq -"@stdlib/constants-float16-pi-squared",2Zr -"@stdlib/constants/float16/pi",2Zs -"@stdlib/constants-float16-pi",2Zt -"@stdlib/constants/float16/sign-mask",2Zu -"@stdlib/constants-float16-sign-mask",2Zv -"@stdlib/constants/float16/significand-mask",2Zw -"@stdlib/constants-float16-significand-mask",2Zx -"@stdlib/constants/float16/sqrt-two",2Zy -"@stdlib/constants-float16-sqrt-two",2Zz -"@stdlib/constants/float16/two-pi",2a0 -"@stdlib/constants-float16-two-pi",2a1 -"@stdlib/constants/float32/glaisher-kinkelin",2a2 -"@stdlib/constants-float32-glaisher-kinkelin",2a3 -"@stdlib/math/base/special/log1pf",2a4 -"@stdlib/math-base-special-log1pf",2a5 -"@stdlib/math/base/special/powf",2a6 -"@stdlib/math-base-special-powf",2a7 -"@stdlib/ndarray/base/to-flippedlr",2a8 -"@stdlib/ndarray-base-to-flippedlr",2a9 -"@stdlib/ndarray/base/to-flippedud",2aA -"@stdlib/ndarray-base-to-flippedud",2aB -"@stdlib/ndarray/concat1d",2aC -"@stdlib/ndarray-concat1d",2aD -"@stdlib/ndarray/fliplr",2aE -"@stdlib/ndarray-fliplr",2aF -"@stdlib/ndarray/flipud",2aG -"@stdlib/ndarray-flipud",2aH -"@stdlib/number/float16/base/exponent",2aI -"@stdlib/number-float16-base-exponent",2aJ -"@stdlib/number/float16/base/from-word",2aK -"@stdlib/number-float16-base-from-word",2aL -"@stdlib/number/float16/base/to-binary-string",2aM -"@stdlib/number-float16-base-to-binary-string",2aN -"@stdlib/number/float16/base/to-word",2aO -"@stdlib/number-float16-base-to-word",2aP -"@stdlib/object/any-in-by",2aQ -"@stdlib/object-any-in-by",2aR -"@stdlib/object/any-own-by",2aS -"@stdlib/object-any-own-by",2aT -"@stdlib/object/move-property",2aU -"@stdlib/object-move-property",2aV -"@stdlib/object/none-own-by",2aW -"@stdlib/object-none-own-by",2aX -"@stdlib/object/some-own-by",2aY -"@stdlib/object-some-own-by",2aZ -"@stdlib/stats/base/ndarray/dcumaxabs",2aa -"@stdlib/stats-base-ndarray-dcumaxabs",2ab -"@stdlib/stats/base/ndarray/dcuminabs",2ac -"@stdlib/stats-base-ndarray-dcuminabs",2ad -"@stdlib/stats/base/ndarray/dmaxabssorted",2ae -"@stdlib/stats-base-ndarray-dmaxabssorted",2af -"@stdlib/stats/base/ndarray/dmeanors",2ag -"@stdlib/stats-base-ndarray-dmeanors",2ah -"@stdlib/stats/base/ndarray/dmeanpn",2ai -"@stdlib/stats-base-ndarray-dmeanpn",2aj -"@stdlib/stats/base/ndarray/dmeanpw",2ak -"@stdlib/stats-base-ndarray-dmeanpw",2al -"@stdlib/stats/base/ndarray/dmeanwd",2am -"@stdlib/stats-base-ndarray-dmeanwd",2an -"@stdlib/stats/base/ndarray/dmediansorted",2ao -"@stdlib/stats-base-ndarray-dmediansorted",2ap -"@stdlib/stats/base/ndarray/dmidrange",2aq -"@stdlib/stats-base-ndarray-dmidrange",2ar -"@stdlib/stats/base/ndarray/dmskmax",2as -"@stdlib/stats-base-ndarray-dmskmax",2at -"@stdlib/stats/base/ndarray/dmskmin",2au -"@stdlib/stats-base-ndarray-dmskmin",2av -"@stdlib/stats/base/ndarray/dmskrange",2aw -"@stdlib/stats-base-ndarray-dmskrange",2ax -"@stdlib/stats/base/ndarray/dnanmeanors",2ay -"@stdlib/stats-base-ndarray-dnanmeanors",2az -"@stdlib/stats/base/ndarray/dnanmeanpn",2b0 -"@stdlib/stats-base-ndarray-dnanmeanpn",2b1 -"@stdlib/stats/base/ndarray/dnanmeanpw",2b2 -"@stdlib/stats-base-ndarray-dnanmeanpw",2b3 -"@stdlib/stats/base/ndarray/dnanmeanwd",2b4 -"@stdlib/stats-base-ndarray-dnanmeanwd",2b5 -"@stdlib/stats/base/ndarray/dnanmskmax",2b6 -"@stdlib/stats-base-ndarray-dnanmskmax",2b7 -"@stdlib/stats/base/ndarray/dnanmskmin",2b8 -"@stdlib/stats-base-ndarray-dnanmskmin",2b9 -"@stdlib/stats/base/ndarray/dnanmskrange",2bA -"@stdlib/stats-base-ndarray-dnanmskrange",2bB -"@stdlib/stats/base/ndarray/mskrange",2bC -"@stdlib/stats-base-ndarray-mskrange",2bD -"@stdlib/stats/base/ndarray/nanmax-by",2bE -"@stdlib/stats-base-ndarray-nanmax-by",2bF -"@stdlib/stats/base/ndarray/nanmeanors",2bG -"@stdlib/stats-base-ndarray-nanmeanors",2bH -"@stdlib/stats/base/ndarray/nanmeanpn",2bI -"@stdlib/stats-base-ndarray-nanmeanpn",2bJ -"@stdlib/stats/base/ndarray/nanmeanwd",2bK -"@stdlib/stats-base-ndarray-nanmeanwd",2bL -"@stdlib/stats/base/ndarray/nanmin-by",2bM -"@stdlib/stats-base-ndarray-nanmin-by",2bN -"@stdlib/stats/base/ndarray/nanmskmax",2bO -"@stdlib/stats-base-ndarray-nanmskmax",2bP -"@stdlib/stats/base/ndarray/nanmskmin",2bQ -"@stdlib/stats-base-ndarray-nanmskmin",2bR -"@stdlib/stats/base/ndarray/nanmskrange",2bS -"@stdlib/stats-base-ndarray-nanmskrange",2bT -"@stdlib/stats/base/ndarray/nanrange-by",2bU -"@stdlib/stats-base-ndarray-nanrange-by",2bV -"@stdlib/stats/base/ndarray/nanrange",2bW -"@stdlib/stats-base-ndarray-nanrange",2bX -"@stdlib/stats/base/ndarray/sdsmean",2bY -"@stdlib/stats-base-ndarray-sdsmean",2bZ -"@stdlib/stats/base/ndarray/sdsmeanors",2ba -"@stdlib/stats-base-ndarray-sdsmeanors",2bb -"@stdlib/stats/base/ndarray/sdsnanmeanors",2bc -"@stdlib/stats-base-ndarray-sdsnanmeanors",2bd -"@stdlib/stats/base/ndarray/smeankbn",2be -"@stdlib/stats-base-ndarray-smeankbn",2bf -"@stdlib/stats/base/ndarray/smeankbn2",2bg -"@stdlib/stats-base-ndarray-smeankbn2",2bh -"@stdlib/stats/base/ndarray/smeanli",2bi -"@stdlib/stats-base-ndarray-smeanli",2bj -"@stdlib/stats/base/ndarray/smeanlipw",2bk -"@stdlib/stats-base-ndarray-smeanlipw",2bl -"@stdlib/stats/base/ndarray/smeanors",2bm -"@stdlib/stats-base-ndarray-smeanors",2bn -"@stdlib/stats/base/ndarray/smeanpn",2bo -"@stdlib/stats-base-ndarray-smeanpn",2bp -"@stdlib/stats/base/ndarray/smeanpw",2bq -"@stdlib/stats-base-ndarray-smeanpw",2br -"@stdlib/stats/base/ndarray/smeanwd",2bs -"@stdlib/stats-base-ndarray-smeanwd",2bt -"@stdlib/stats/base/ndarray/smediansorted",2bu -"@stdlib/stats-base-ndarray-smediansorted",2bv -"@stdlib/stats/base/ndarray/smidrange",2bw -"@stdlib/stats-base-ndarray-smidrange",2bx -"@stdlib/stats/base/ndarray/smskmax",2by -"@stdlib/stats-base-ndarray-smskmax",2bz -"@stdlib/stats/base/ndarray/smskmin",2c0 -"@stdlib/stats-base-ndarray-smskmin",2c1 -"@stdlib/stats/base/ndarray/smskrange",2c2 -"@stdlib/stats-base-ndarray-smskrange",2c3 -"@stdlib/stats/base/ndarray/snanmeanors",2c4 -"@stdlib/stats-base-ndarray-snanmeanors",2c5 -"@stdlib/stats/base/ndarray/snanmeanpn",2c6 -"@stdlib/stats-base-ndarray-snanmeanpn",2c7 -"@stdlib/stats/base/ndarray/snanmeanwd",2c8 -"@stdlib/stats-base-ndarray-snanmeanwd",2c9 -"@stdlib/stats/base/ndarray/snanmskmax",2cA -"@stdlib/stats-base-ndarray-snanmskmax",2cB -"@stdlib/stats/base/ndarray/snanmskmin",2cC -"@stdlib/stats-base-ndarray-snanmskmin",2cD -"@stdlib/stats/base/ndarray/snanmskrange",2cE -"@stdlib/stats-base-ndarray-snanmskrange",2cF -"@stdlib/stats/maxsorted",2cG -"@stdlib/stats-maxsorted",2cH -"@stdlib/stats/meankbn",2cI -"@stdlib/stats-meankbn",2cJ -"@stdlib/stats/meankbn2",2cK -"@stdlib/stats-meankbn2",2cL -"@stdlib/stats/meanors",2cM -"@stdlib/stats-meanors",2cN -"@stdlib/stats/meanpn",2cO -"@stdlib/stats-meanpn",2cP -"@stdlib/stats/meanpw",2cQ -"@stdlib/stats-meanpw",2cR -"@stdlib/stats/meanwd",2cS -"@stdlib/stats-meanwd",2cT -"@stdlib/stats/mediansorted",2cU -"@stdlib/stats-mediansorted",2cV -"@stdlib/stats/minsorted",2cW -"@stdlib/stats-minsorted",2cX -"@stdlib/stats/nanmax-by",2cY -"@stdlib/stats-nanmax-by",2cZ -"@stdlib/stats/nanmaxabs",2ca -"@stdlib/stats-nanmaxabs",2cb -"@stdlib/stats/nanmeanors",2cc -"@stdlib/stats-nanmeanors",2cd -"@stdlib/stats/nanmeanpn",2ce -"@stdlib/stats-nanmeanpn",2cf -"@stdlib/stats/nanmeanwd",2cg -"@stdlib/stats-nanmeanwd",2ch -"@stdlib/stats/nanmin-by",2ci -"@stdlib/stats-nanmin-by",2cj -"@stdlib/stats/nanminabs",2ck -"@stdlib/stats-nanminabs",2cl -"@stdlib/stats/range-by",2cm -"@stdlib/stats-range-by",2cn -"@stdlib/array/base/assert/has-almost-same-values",2co -"@stdlib/array-base-assert-has-almost-same-values",2cp -"@stdlib/array/base/falses",2cq -"@stdlib/array-base-falses",2cr -"@stdlib/array/base/to-filled",2cs -"@stdlib/array-base-to-filled",2ct -"@stdlib/array/base/trues",2cu -"@stdlib/array-base-trues",2cv -"@stdlib/array/float16",2cw -"@stdlib/array-float16",2cx -"@stdlib/array/nulls",2cy -"@stdlib/array-nulls",2cz -"@stdlib/assert/is-almost-same-array",2d0 -"@stdlib/assert-is-almost-same-array",2d1 -"@stdlib/assert/is-almost-same-complex128array",2d2 -"@stdlib/assert-is-almost-same-complex128array",2d3 -"@stdlib/assert/is-almost-same-complex64array",2d4 -"@stdlib/assert-is-almost-same-complex64array",2d5 -"@stdlib/assert/is-almost-same-float32array",2d6 -"@stdlib/assert-is-almost-same-float32array",2d7 -"@stdlib/assert/is-almost-same-float64array",2d8 -"@stdlib/assert-is-almost-same-float64array",2d9 -"@stdlib/assert/is-almost-same-value",2dA -"@stdlib/assert-is-almost-same-value",2dB -"@stdlib/assert/is-ndarray-descriptor",2dC -"@stdlib/assert-is-ndarray-descriptor",2dD -"@stdlib/blas/base/cgemv",2dE -"@stdlib/blas-base-cgemv",2dF -"@stdlib/blas/base/dzasum",2dG -"@stdlib/blas-base-dzasum",2dH -"@stdlib/blas/base/ndarray/caxpy",2dI -"@stdlib/blas-base-ndarray-caxpy",2dJ -"@stdlib/blas/base/ndarray/ccopy",2dK -"@stdlib/blas-base-ndarray-ccopy",2dL -"@stdlib/blas/base/ndarray/cscal",2dM -"@stdlib/blas-base-ndarray-cscal",2dN -"@stdlib/blas/base/ndarray/csscal",2dO -"@stdlib/blas-base-ndarray-csscal",2dP -"@stdlib/blas/base/ndarray/cswap",2dQ -"@stdlib/blas-base-ndarray-cswap",2dR -"@stdlib/blas/base/ndarray/dasum",2dS -"@stdlib/blas-base-ndarray-dasum",2dT -"@stdlib/blas/base/ndarray/daxpy",2dU -"@stdlib/blas-base-ndarray-daxpy",2dV -"@stdlib/blas/base/ndarray/dcopy",2dW -"@stdlib/blas-base-ndarray-dcopy",2dX -"@stdlib/blas/base/ndarray/dnrm2",2dY -"@stdlib/blas-base-ndarray-dnrm2",2dZ -"@stdlib/blas/base/ndarray/dscal",2da -"@stdlib/blas-base-ndarray-dscal",2db -"@stdlib/blas/base/ndarray/dsdot",2dc -"@stdlib/blas-base-ndarray-dsdot",2dd -"@stdlib/blas/base/ndarray/dswap",2de -"@stdlib/blas-base-ndarray-dswap",2df -"@stdlib/blas/base/ndarray/dzasum",2dg -"@stdlib/blas-base-ndarray-dzasum",2dh -"@stdlib/blas/base/ndarray/dznrm2",2di -"@stdlib/blas-base-ndarray-dznrm2",2dj -"@stdlib/blas/base/ndarray/gasum",2dk -"@stdlib/blas-base-ndarray-gasum",2dl -"@stdlib/blas/base/ndarray/gaxpy",2dm -"@stdlib/blas-base-ndarray-gaxpy",2dn -"@stdlib/blas/base/ndarray/gcopy",2do -"@stdlib/blas-base-ndarray-gcopy",2dp -"@stdlib/blas/base/ndarray/gnrm2",2dq -"@stdlib/blas-base-ndarray-gnrm2",2dr -"@stdlib/blas/base/ndarray/gscal",2ds -"@stdlib/blas-base-ndarray-gscal",2dt -"@stdlib/blas/base/ndarray/gswap",2du -"@stdlib/blas-base-ndarray-gswap",2dv -"@stdlib/blas/base/ndarray/idamax",2dw -"@stdlib/blas-base-ndarray-idamax",2dx -"@stdlib/blas/base/ndarray",2dy -"@stdlib/blas-base-ndarray",2dz -"@stdlib/blas/base/ndarray/sasum",2e0 -"@stdlib/blas-base-ndarray-sasum",2e1 -"@stdlib/blas/base/ndarray/saxpy",2e2 -"@stdlib/blas-base-ndarray-saxpy",2e3 -"@stdlib/blas/base/ndarray/scasum",2e4 -"@stdlib/blas-base-ndarray-scasum",2e5 -"@stdlib/blas/base/ndarray/scnrm2",2e6 -"@stdlib/blas-base-ndarray-scnrm2",2e7 -"@stdlib/blas/base/ndarray/scopy",2e8 -"@stdlib/blas-base-ndarray-scopy",2e9 -"@stdlib/blas/base/ndarray/sdsdot",2eA -"@stdlib/blas-base-ndarray-sdsdot",2eB -"@stdlib/blas/base/ndarray/snrm2",2eC -"@stdlib/blas-base-ndarray-snrm2",2eD -"@stdlib/blas/base/ndarray/sscal",2eE -"@stdlib/blas-base-ndarray-sscal",2eF -"@stdlib/blas/base/ndarray/sswap",2eG -"@stdlib/blas-base-ndarray-sswap",2eH -"@stdlib/blas/base/ndarray/zaxpy",2eI -"@stdlib/blas-base-ndarray-zaxpy",2eJ -"@stdlib/blas/base/ndarray/zcopy",2eK -"@stdlib/blas-base-ndarray-zcopy",2eL -"@stdlib/blas/base/ndarray/zdscal",2eM -"@stdlib/blas-base-ndarray-zdscal",2eN -"@stdlib/blas/base/ndarray/zscal",2eO -"@stdlib/blas-base-ndarray-zscal",2eP -"@stdlib/blas/base/ndarray/zswap",2eQ -"@stdlib/blas-base-ndarray-zswap",2eR -"@stdlib/blas/ext/base/capx",2eS -"@stdlib/blas-ext-base-capx",2eT -"@stdlib/blas/ext/base/caxpb",2eU -"@stdlib/blas-ext-base-caxpb",2eV -"@stdlib/blas/ext/base/cindex-of-column",2eW -"@stdlib/blas-ext-base-cindex-of-column",2eX -"@stdlib/blas/ext/base/cindex-of-row",2eY -"@stdlib/blas-ext-base-cindex-of-row",2eZ -"@stdlib/blas/ext/base/cindex-of",2ea -"@stdlib/blas-ext-base-cindex-of",2eb -"@stdlib/blas/ext/base/clast-index-of-row",2ec -"@stdlib/blas-ext-base-clast-index-of-row",2ed -"@stdlib/blas/ext/base/cone-to",2ee -"@stdlib/blas-ext-base-cone-to",2ef -"@stdlib/blas/ext/base/cunitspace",2eg -"@stdlib/blas-ext-base-cunitspace",2eh -"@stdlib/blas/ext/base/cwhere",2ei -"@stdlib/blas-ext-base-cwhere",2ej -"@stdlib/blas/ext/base/cxsa",2ek -"@stdlib/blas-ext-base-cxsa",2el -"@stdlib/blas/ext/base/czero-to",2em -"@stdlib/blas-ext-base-czero-to",2en -"@stdlib/blas/ext/base/daxpb",2eo -"@stdlib/blas-ext-base-daxpb",2ep -"@stdlib/blas/ext/base/dcartesian-power",2eq -"@stdlib/blas-ext-base-dcartesian-power",2er -"@stdlib/blas/ext/base/dcartesian-product",2es -"@stdlib/blas-ext-base-dcartesian-product",2et -"@stdlib/blas/ext/base/dcartesian-square",2eu -"@stdlib/blas-ext-base-dcartesian-square",2ev -"@stdlib/blas/ext/base/dcircshift",2ew -"@stdlib/blas-ext-base-dcircshift",2ex -"@stdlib/blas/ext/base/ddiff",2ey -"@stdlib/blas-ext-base-ddiff",2ez -"@stdlib/blas/ext/base/dediff",2f0 -"@stdlib/blas-ext-base-dediff",2f1 -"@stdlib/blas/ext/base/dindex-of-column",2f2 -"@stdlib/blas-ext-base-dindex-of-column",2f3 -"@stdlib/blas/ext/base/dindex-of-row",2f4 -"@stdlib/blas-ext-base-dindex-of-row",2f5 -"@stdlib/blas/ext/base/dlast-index-of-row",2f6 -"@stdlib/blas-ext-base-dlast-index-of-row",2f7 -"@stdlib/blas/ext/base/dmskrev",2f8 -"@stdlib/blas-ext-base-dmskrev",2f9 -"@stdlib/blas/ext/base/dnancount",2fA -"@stdlib/blas-ext-base-dnancount",2fB -"@stdlib/blas/ext/base/done-to",2fC -"@stdlib/blas-ext-base-done-to",2fD -"@stdlib/blas/ext/base/drss",2fE -"@stdlib/blas-ext-base-drss",2fF -"@stdlib/blas/ext/base/drssbl",2fG -"@stdlib/blas-ext-base-drssbl",2fH -"@stdlib/blas/ext/base/drsskbn",2fI -"@stdlib/blas-ext-base-drsskbn",2fJ -"@stdlib/blas/ext/base/dsort",2fK -"@stdlib/blas-ext-base-dsort",2fL -"@stdlib/blas/ext/base/dunitspace",2fM -"@stdlib/blas-ext-base-dunitspace",2fN -"@stdlib/blas/ext/base/dvander",2fO -"@stdlib/blas-ext-base-dvander",2fP -"@stdlib/blas/ext/base/dwhere",2fQ -"@stdlib/blas-ext-base-dwhere",2fR -"@stdlib/blas/ext/base/dxsa",2fS -"@stdlib/blas-ext-base-dxsa",2fT -"@stdlib/blas/ext/base/dzero-to",2fU -"@stdlib/blas-ext-base-dzero-to",2fV -"@stdlib/blas/ext/base/gaxpb",2fW -"@stdlib/blas-ext-base-gaxpb",2fX -"@stdlib/blas/ext/base/gaxpby",2fY -"@stdlib/blas-ext-base-gaxpby",2fZ -"@stdlib/blas/ext/base/gcartesian-power",2fa -"@stdlib/blas-ext-base-gcartesian-power",2fb -"@stdlib/blas/ext/base/gcartesian-square",2fc -"@stdlib/blas-ext-base-gcartesian-square",2fd -"@stdlib/blas/ext/base/gcircshift",2fe -"@stdlib/blas-ext-base-gcircshift",2ff -"@stdlib/blas/ext/base/gconjoin",2fg -"@stdlib/blas-ext-base-gconjoin",2fh -"@stdlib/blas/ext/base/gcuevery",2fi -"@stdlib/blas-ext-base-gcuevery",2fj -"@stdlib/blas/ext/base/gcunone",2fk -"@stdlib/blas-ext-base-gcunone",2fl -"@stdlib/blas/ext/base/gdiff",2fm -"@stdlib/blas-ext-base-gdiff",2fn -"@stdlib/blas/ext/base/gindex-of-column",2fo -"@stdlib/blas-ext-base-gindex-of-column",2fp -"@stdlib/blas/ext/base/gjoin-between",2fq -"@stdlib/blas-ext-base-gjoin-between",2fr -"@stdlib/blas/ext/base/glast-index-of-row",2fs -"@stdlib/blas-ext-base-glast-index-of-row",2ft -"@stdlib/blas/ext/base/gmskrev",2fu -"@stdlib/blas-ext-base-gmskrev",2fv -"@stdlib/blas/ext/base/gnancount",2fw -"@stdlib/blas-ext-base-gnancount",2fx -"@stdlib/blas/ext/base/gone-to",2fy -"@stdlib/blas-ext-base-gone-to",2fz -"@stdlib/blas/ext/base/greplicate",2g0 -"@stdlib/blas-ext-base-greplicate",2g1 -"@stdlib/blas/ext/base/gsort",2g2 -"@stdlib/blas-ext-base-gsort",2g3 -"@stdlib/blas/ext/base/gunitspace",2g4 -"@stdlib/blas-ext-base-gunitspace",2g5 -"@stdlib/blas/ext/base/gvander",2g6 -"@stdlib/blas-ext-base-gvander",2g7 -"@stdlib/blas/ext/base/gwhere",2g8 -"@stdlib/blas-ext-base-gwhere",2g9 -"@stdlib/blas/ext/base/gxsa",2gA -"@stdlib/blas-ext-base-gxsa",2gB -"@stdlib/blas/ext/base/gzero-to",2gC -"@stdlib/blas-ext-base-gzero-to",2gD -"@stdlib/blas/ext/base/ndarray/caxpb",2gE -"@stdlib/blas-ext-base-ndarray-caxpb",2gF -"@stdlib/blas/ext/base/ndarray/cindex-of",2gG -"@stdlib/blas-ext-base-ndarray-cindex-of",2gH -"@stdlib/blas/ext/base/ndarray/cone-to",2gI -"@stdlib/blas-ext-base-ndarray-cone-to",2gJ -"@stdlib/blas/ext/base/ndarray/cunitspace",2gK -"@stdlib/blas-ext-base-ndarray-cunitspace",2gL -"@stdlib/blas/ext/base/ndarray/cxsa",2gM -"@stdlib/blas-ext-base-ndarray-cxsa",2gN -"@stdlib/blas/ext/base/ndarray/czero-to",2gO -"@stdlib/blas-ext-base-ndarray-czero-to",2gP -"@stdlib/blas/ext/base/ndarray/daxpb",2gQ -"@stdlib/blas-ext-base-ndarray-daxpb",2gR -"@stdlib/blas/ext/base/ndarray/dcircshift",2gS -"@stdlib/blas-ext-base-ndarray-dcircshift",2gT -"@stdlib/blas/ext/base/ndarray/dcusumors",2gU -"@stdlib/blas-ext-base-ndarray-dcusumors",2gV -"@stdlib/blas/ext/base/ndarray/dcusumpw",2gW -"@stdlib/blas-ext-base-ndarray-dcusumpw",2gX -"@stdlib/blas/ext/base/ndarray/dnansum",2gY -"@stdlib/blas-ext-base-ndarray-dnansum",2gZ -"@stdlib/blas/ext/base/ndarray/dnansumkbn",2ga -"@stdlib/blas-ext-base-ndarray-dnansumkbn",2gb -"@stdlib/blas/ext/base/ndarray/dnansumkbn2",2gc -"@stdlib/blas-ext-base-ndarray-dnansumkbn2",2gd -"@stdlib/blas/ext/base/ndarray/dnansumors",2ge -"@stdlib/blas-ext-base-ndarray-dnansumors",2gf -"@stdlib/blas/ext/base/ndarray/dnansumpw",2gg -"@stdlib/blas-ext-base-ndarray-dnansumpw",2gh -"@stdlib/blas/ext/base/ndarray/done-to",2gi -"@stdlib/blas-ext-base-ndarray-done-to",2gj -"@stdlib/blas/ext/base/ndarray/dsort",2gk -"@stdlib/blas-ext-base-ndarray-dsort",2gl -"@stdlib/blas/ext/base/ndarray/dsortins",2gm -"@stdlib/blas-ext-base-ndarray-dsortins",2gn -"@stdlib/blas/ext/base/ndarray/dsortsh",2go -"@stdlib/blas-ext-base-ndarray-dsortsh",2gp -"@stdlib/blas/ext/base/ndarray/dsumors",2gq -"@stdlib/blas-ext-base-ndarray-dsumors",2gr -"@stdlib/blas/ext/base/ndarray/dsumpw",2gs -"@stdlib/blas-ext-base-ndarray-dsumpw",2gt -"@stdlib/blas/ext/base/ndarray/dunitspace",2gu -"@stdlib/blas-ext-base-ndarray-dunitspace",2gv -"@stdlib/blas/ext/base/ndarray/dxsa",2gw -"@stdlib/blas-ext-base-ndarray-dxsa",2gx -"@stdlib/blas/ext/base/ndarray/dzero-to",2gy -"@stdlib/blas-ext-base-ndarray-dzero-to",2gz -"@stdlib/blas/ext/base/ndarray/gaxpb",2h0 -"@stdlib/blas-ext-base-ndarray-gaxpb",2h1 -"@stdlib/blas/ext/base/ndarray/gcircshift",2h2 -"@stdlib/blas-ext-base-ndarray-gcircshift",2h3 -"@stdlib/blas/ext/base/ndarray/gcusumkbn",2h4 -"@stdlib/blas-ext-base-ndarray-gcusumkbn",2h5 -"@stdlib/blas/ext/base/ndarray/gcusumkbn2",2h6 -"@stdlib/blas-ext-base-ndarray-gcusumkbn2",2h7 -"@stdlib/blas/ext/base/ndarray/gcusumors",2h8 -"@stdlib/blas-ext-base-ndarray-gcusumors",2h9 -"@stdlib/blas/ext/base/ndarray/gcusumpw",2hA -"@stdlib/blas-ext-base-ndarray-gcusumpw",2hB -"@stdlib/blas/ext/base/ndarray/gjoin-between",2hC -"@stdlib/blas-ext-base-ndarray-gjoin-between",2hD -"@stdlib/blas/ext/base/ndarray/gnansum",2hE -"@stdlib/blas-ext-base-ndarray-gnansum",2hF -"@stdlib/blas/ext/base/ndarray/gnansumkbn",2hG -"@stdlib/blas-ext-base-ndarray-gnansumkbn",2hH -"@stdlib/blas/ext/base/ndarray/gnansumkbn2",2hI -"@stdlib/blas-ext-base-ndarray-gnansumkbn2",2hJ -"@stdlib/blas/ext/base/ndarray/gnansumors",2hK -"@stdlib/blas-ext-base-ndarray-gnansumors",2hL -"@stdlib/blas/ext/base/ndarray/gnansumpw",2hM -"@stdlib/blas-ext-base-ndarray-gnansumpw",2hN -"@stdlib/blas/ext/base/ndarray/gone-to",2hO -"@stdlib/blas-ext-base-ndarray-gone-to",2hP -"@stdlib/blas/ext/base/ndarray/gsort",2hQ -"@stdlib/blas-ext-base-ndarray-gsort",2hR -"@stdlib/blas/ext/base/ndarray/gsumors",2hS -"@stdlib/blas-ext-base-ndarray-gsumors",2hT -"@stdlib/blas/ext/base/ndarray/gsumpw",2hU -"@stdlib/blas-ext-base-ndarray-gsumpw",2hV -"@stdlib/blas/ext/base/ndarray/gunitspace",2hW -"@stdlib/blas-ext-base-ndarray-gunitspace",2hX -"@stdlib/blas/ext/base/ndarray/gzero-to",2hY -"@stdlib/blas-ext-base-ndarray-gzero-to",2hZ -"@stdlib/blas/ext/base/ndarray/saxpb",2ha -"@stdlib/blas-ext-base-ndarray-saxpb",2hb -"@stdlib/blas/ext/base/ndarray/scircshift",2hc -"@stdlib/blas-ext-base-ndarray-scircshift",2hd -"@stdlib/blas/ext/base/ndarray/scusumors",2he -"@stdlib/blas-ext-base-ndarray-scusumors",2hf -"@stdlib/blas/ext/base/ndarray/snansum",2hg -"@stdlib/blas-ext-base-ndarray-snansum",2hh -"@stdlib/blas/ext/base/ndarray/snansumkbn",2hi -"@stdlib/blas-ext-base-ndarray-snansumkbn",2hj -"@stdlib/blas/ext/base/ndarray/snansumkbn2",2hk -"@stdlib/blas-ext-base-ndarray-snansumkbn2",2hl -"@stdlib/blas/ext/base/ndarray/snansumors",2hm -"@stdlib/blas-ext-base-ndarray-snansumors",2hn -"@stdlib/blas/ext/base/ndarray/snansumpw",2ho -"@stdlib/blas-ext-base-ndarray-snansumpw",2hp -"@stdlib/blas/ext/base/ndarray/sone-to",2hq -"@stdlib/blas-ext-base-ndarray-sone-to",2hr -"@stdlib/blas/ext/base/ndarray/ssort",2hs -"@stdlib/blas-ext-base-ndarray-ssort",2ht -"@stdlib/blas/ext/base/ndarray/ssumors",2hu -"@stdlib/blas-ext-base-ndarray-ssumors",2hv -"@stdlib/blas/ext/base/ndarray/ssumpw",2hw -"@stdlib/blas-ext-base-ndarray-ssumpw",2hx -"@stdlib/blas/ext/base/ndarray/sunitspace",2hy -"@stdlib/blas-ext-base-ndarray-sunitspace",2hz -"@stdlib/blas/ext/base/ndarray/sxsa",2i0 -"@stdlib/blas-ext-base-ndarray-sxsa",2i1 -"@stdlib/blas/ext/base/ndarray/szero-to",2i2 -"@stdlib/blas-ext-base-ndarray-szero-to",2i3 -"@stdlib/blas/ext/base/ndarray/zaxpb",2i4 -"@stdlib/blas-ext-base-ndarray-zaxpb",2i5 -"@stdlib/blas/ext/base/ndarray/zindex-of",2i6 -"@stdlib/blas-ext-base-ndarray-zindex-of",2i7 -"@stdlib/blas/ext/base/ndarray/zone-to",2i8 -"@stdlib/blas-ext-base-ndarray-zone-to",2i9 -"@stdlib/blas/ext/base/ndarray/zunitspace",2iA -"@stdlib/blas-ext-base-ndarray-zunitspace",2iB -"@stdlib/blas/ext/base/ndarray/zzero-to",2iC -"@stdlib/blas-ext-base-ndarray-zzero-to",2iD -"@stdlib/blas/ext/base/saxpb",2iE -"@stdlib/blas-ext-base-saxpb",2iF -"@stdlib/blas/ext/base/scartesian-power",2iG -"@stdlib/blas-ext-base-scartesian-power",2iH -"@stdlib/blas/ext/base/scartesian-square",2iI -"@stdlib/blas-ext-base-scartesian-square",2iJ -"@stdlib/blas/ext/base/scircshift",2iK -"@stdlib/blas-ext-base-scircshift",2iL -"@stdlib/blas/ext/base/sdiff",2iM -"@stdlib/blas-ext-base-sdiff",2iN -"@stdlib/blas/ext/base/sediff",2iO -"@stdlib/blas-ext-base-sediff",2iP -"@stdlib/blas/ext/base/sindex-of-column",2iQ -"@stdlib/blas-ext-base-sindex-of-column",2iR -"@stdlib/blas/ext/base/sindex-of-row",2iS -"@stdlib/blas-ext-base-sindex-of-row",2iT -"@stdlib/blas/ext/base/slast-index-of-row",2iU -"@stdlib/blas-ext-base-slast-index-of-row",2iV -"@stdlib/blas/ext/base/snancount",2iW -"@stdlib/blas-ext-base-snancount",2iX -"@stdlib/blas/ext/base/sone-to",2iY -"@stdlib/blas-ext-base-sone-to",2iZ -"@stdlib/blas/ext/base/ssort",2ia -"@stdlib/blas-ext-base-ssort",2ib -"@stdlib/blas/ext/base/sunitspace",2ic -"@stdlib/blas-ext-base-sunitspace",2id -"@stdlib/blas/ext/base/svander",2ie -"@stdlib/blas-ext-base-svander",2if -"@stdlib/blas/ext/base/swhere",2ig -"@stdlib/blas-ext-base-swhere",2ih -"@stdlib/blas/ext/base/sxsa",2ii -"@stdlib/blas-ext-base-sxsa",2ij -"@stdlib/blas/ext/base/szero-to",2ik -"@stdlib/blas-ext-base-szero-to",2il -"@stdlib/blas/ext/base/zapx",2im -"@stdlib/blas-ext-base-zapx",2in -"@stdlib/blas/ext/base/zaxpb",2io -"@stdlib/blas-ext-base-zaxpb",2ip -"@stdlib/blas/ext/base/zdiff",2iq -"@stdlib/blas-ext-base-zdiff",2ir -"@stdlib/blas/ext/base/zindex-of-column",2is -"@stdlib/blas-ext-base-zindex-of-column",2it -"@stdlib/blas/ext/base/zindex-of-row",2iu -"@stdlib/blas-ext-base-zindex-of-row",2iv -"@stdlib/blas/ext/base/zindex-of",2iw -"@stdlib/blas-ext-base-zindex-of",2ix -"@stdlib/blas/ext/base/zlast-index-of-row",2iy -"@stdlib/blas-ext-base-zlast-index-of-row",2iz -"@stdlib/blas/ext/base/znancount",2j0 -"@stdlib/blas-ext-base-znancount",2j1 -"@stdlib/blas/ext/base/zone-to",2j2 -"@stdlib/blas-ext-base-zone-to",2j3 -"@stdlib/blas/ext/base/zunitspace",2j4 -"@stdlib/blas-ext-base-zunitspace",2j5 -"@stdlib/blas/ext/base/zwhere",2j6 -"@stdlib/blas-ext-base-zwhere",2j7 -"@stdlib/blas/ext/base/zxsa",2j8 -"@stdlib/blas-ext-base-zxsa",2j9 -"@stdlib/blas/ext/base/zzero-to",2jA -"@stdlib/blas-ext-base-zzero-to",2jB -"@stdlib/blas/ext/circshift",2jC -"@stdlib/blas-ext-circshift",2jD -"@stdlib/blas/ext/join",2jE -"@stdlib/blas-ext-join",2jF -"@stdlib/blas/ext/one-to",2jG -"@stdlib/blas-ext-one-to",2jH -"@stdlib/blas/ext/sort",2jI -"@stdlib/blas-ext-sort",2jJ -"@stdlib/blas/ext/to-sorted",2jK -"@stdlib/blas-ext-to-sorted",2jL -"@stdlib/blas/ext/unitspace",2jM -"@stdlib/blas-ext-unitspace",2jN -"@stdlib/blas/ext/zero-to",2jO -"@stdlib/blas-ext-zero-to",2jP -"@stdlib/complex/base/assert/is-almost-equal",2jQ -"@stdlib/complex-base-assert-is-almost-equal",2jR -"@stdlib/complex/base/assert/is-almost-same-value",2jS -"@stdlib/complex-base-assert-is-almost-same-value",2jT -"@stdlib/complex/float32/base/add3",2jU -"@stdlib/complex-float32-base-add3",2jV -"@stdlib/complex/float32/base/assert/is-almost-same-value",2jW -"@stdlib/complex-float32-base-assert-is-almost-same-value",2jX -"@stdlib/complex/float64/base/add3",2jY -"@stdlib/complex-float64-base-add3",2jZ -"@stdlib/complex/float64/base/assert/is-almost-same-value",2ja -"@stdlib/complex-float64-base-assert-is-almost-same-value",2jb -"@stdlib/constants/float16/abs-mask",2jc -"@stdlib/constants-float16-abs-mask",2jd -"@stdlib/constants/float16/half-ln-two",2je -"@stdlib/constants-float16-half-ln-two",2jf -"@stdlib/constants/float16/ln-half",2jg -"@stdlib/constants-float16-ln-half",2jh -"@stdlib/constants/float16/ln-pi",2ji -"@stdlib/constants-float16-ln-pi",2jj -"@stdlib/constants/float16/ln-sqrt-two-pi",2jk -"@stdlib/constants-float16-ln-sqrt-two-pi",2jl -"@stdlib/constants/float16/ln-ten",2jm -"@stdlib/constants-float16-ln-ten",2jn -"@stdlib/constants/float16/ln-two-pi",2jo -"@stdlib/constants-float16-ln-two-pi",2jp -"@stdlib/constants/float16/ln-two",2jq -"@stdlib/constants-float16-ln-two",2jr -"@stdlib/constants/float16/log10-e",2js -"@stdlib/constants-float16-log10-e",2jt -"@stdlib/constants/float16/log2-e",2ju -"@stdlib/constants-float16-log2-e",2jv -"@stdlib/constants/float16/max-base10-exponent-subnormal",2jw -"@stdlib/constants-float16-max-base10-exponent-subnormal",2jx -"@stdlib/constants/float16/max-base10-exponent",2jy -"@stdlib/constants-float16-max-base10-exponent",2jz -"@stdlib/constants/float16/max-base2-exponent-subnormal",2k0 -"@stdlib/constants-float16-max-base2-exponent-subnormal",2k1 -"@stdlib/constants/float16/min-base10-exponent-subnormal",2k2 -"@stdlib/constants-float16-min-base10-exponent-subnormal",2k3 -"@stdlib/constants/float16/min-base10-exponent",2k4 -"@stdlib/constants-float16-min-base10-exponent",2k5 -"@stdlib/constants/float16/min-base2-exponent-subnormal",2k6 -"@stdlib/constants-float16-min-base2-exponent-subnormal",2k7 -"@stdlib/constants/float16/nan",2k8 -"@stdlib/constants-float16-nan",2k9 -"@stdlib/constants/float16/sqrt-half",2kA -"@stdlib/constants-float16-sqrt-half",2kB -"@stdlib/constants/float16/sqrt-three",2kC -"@stdlib/constants-float16-sqrt-three",2kD -"@stdlib/constants/float16/sqrt-two-pi",2kE -"@stdlib/constants-float16-sqrt-two-pi",2kF -"@stdlib/constants/float32/num-exponent-bits",2kG -"@stdlib/constants-float32-num-exponent-bits",2kH -"@stdlib/fft/base/fftpack/decompose",2kI -"@stdlib/fft-base-fftpack-decompose",2kJ -"@stdlib/math/base/special/acoshf",2kK -"@stdlib/math-base-special-acoshf",2kL -"@stdlib/math/base/special/acothf",2kM -"@stdlib/math-base-special-acothf",2kN -"@stdlib/math/base/special/asinhf",2kO -"@stdlib/math-base-special-asinhf",2kP -"@stdlib/math/base/special/atanhf",2kQ -"@stdlib/math-base-special-atanhf",2kR -"@stdlib/math/base/special/coshf",2kS -"@stdlib/math-base-special-coshf",2kT -"@stdlib/math/base/special/fast/atanhf",2kU -"@stdlib/math-base-special-fast-atanhf",2kV -"@stdlib/math/base/special/floor2f",2kW -"@stdlib/math-base-special-floor2f",2kX -"@stdlib/math/base/special/floornf",2kY -"@stdlib/math-base-special-floornf",2kZ -"@stdlib/math/base/special/roundnf",2ka -"@stdlib/math-base-special-roundnf",2kb -"@stdlib/math/base/special/sincosdf",2kc -"@stdlib/math-base-special-sincosdf",2kd -"@stdlib/math/base/tools/chebyshev-series",2ke -"@stdlib/math-base-tools-chebyshev-series",2kf -"@stdlib/math/base/tools/chebyshev-seriesf",2kg -"@stdlib/math-base-tools-chebyshev-seriesf",2kh -"@stdlib/ml/base/kmeans/algorithm-enum2str",2ki -"@stdlib/ml-base-kmeans-algorithm-enum2str",2kj -"@stdlib/ml/base/kmeans/algorithm-resolve-enum",2kk -"@stdlib/ml-base-kmeans-algorithm-resolve-enum",2kl -"@stdlib/ml/base/kmeans/algorithm-resolve-str",2km -"@stdlib/ml-base-kmeans-algorithm-resolve-str",2kn -"@stdlib/ml/base/kmeans/algorithm-str2enum",2ko -"@stdlib/ml-base-kmeans-algorithm-str2enum",2kp -"@stdlib/ml/base/kmeans/algorithms",2kq -"@stdlib/ml-base-kmeans-algorithms",2kr -"@stdlib/ml/base/kmeans/metric-enum2str",2ks -"@stdlib/ml-base-kmeans-metric-enum2str",2kt -"@stdlib/ml/base/kmeans/metric-resolve-enum",2ku -"@stdlib/ml-base-kmeans-metric-resolve-enum",2kv -"@stdlib/ml/base/kmeans/metric-resolve-str",2kw -"@stdlib/ml-base-kmeans-metric-resolve-str",2kx -"@stdlib/ml/base/kmeans/metric-str2enum",2ky -"@stdlib/ml-base-kmeans-metric-str2enum",2kz -"@stdlib/ml/base/kmeans/metrics",2l0 -"@stdlib/ml-base-kmeans-metrics",2l1 -"@stdlib/napi/argv-booleanarray",2l2 -"@stdlib/napi-argv-booleanarray",2l3 -"@stdlib/napi/argv-strided-booleanarray",2l4 -"@stdlib/napi-argv-strided-booleanarray",2l5 -"@stdlib/napi/argv-strided-booleanarray2d",2l6 -"@stdlib/napi-argv-strided-booleanarray2d",2l7 -"@stdlib/napi/argv-uint64",2l8 -"@stdlib/napi-argv-uint64",2l9 -"@stdlib/napi/create-int64",2lA -"@stdlib/napi-create-int64",2lB -"@stdlib/napi/create-uint64",2lC -"@stdlib/napi-create-uint64",2lD -"@stdlib/ndarray/base/append-singleton-dimensions",2lE -"@stdlib/ndarray-base-append-singleton-dimensions",2lF -"@stdlib/ndarray/base/assign-scalar",2lG -"@stdlib/ndarray-base-assign-scalar",2lH -"@stdlib/ndarray/base/atleast1d",2lI -"@stdlib/ndarray-base-atleast1d",2lJ -"@stdlib/ndarray/base/atleast2d",2lK -"@stdlib/ndarray-base-atleast2d",2lL -"@stdlib/ndarray/base/atleast3d",2lM -"@stdlib/ndarray-base-atleast3d",2lN -"@stdlib/ndarray/base/atleastnd",2lO -"@stdlib/ndarray-base-atleastnd",2lP -"@stdlib/ndarray/base/broadcast-scalar-like",2lQ -"@stdlib/ndarray-base-broadcast-scalar-like",2lR -"@stdlib/ndarray/base/consensus-order",2lS -"@stdlib/ndarray-base-consensus-order",2lT -"@stdlib/ndarray/base/descriptor",2lU -"@stdlib/ndarray-base-descriptor",2lV -"@stdlib/ndarray/base/diagonal",2lW -"@stdlib/ndarray-base-diagonal",2lX -"@stdlib/ndarray/base/dtypes2strings",2lY -"@stdlib/ndarray-base-dtypes2strings",2lZ -"@stdlib/ndarray/base/falses-like",2la -"@stdlib/ndarray-base-falses-like",2lb -"@stdlib/ndarray/base/falses",2lc -"@stdlib/ndarray-base-falses",2ld -"@stdlib/ndarray/base/fill-diagonal",2le -"@stdlib/ndarray-base-fill-diagonal",2lf -"@stdlib/ndarray/base/full-by",2lg -"@stdlib/ndarray-base-full-by",2lh -"@stdlib/ndarray/base/full",2li -"@stdlib/ndarray-base-full",2lj -"@stdlib/ndarray/base/maybe-broadcast-array-except-dimensions",2lk -"@stdlib/ndarray-base-maybe-broadcast-array-except-dimensions",2ll -"@stdlib/ndarray/base/nans-like",2lm -"@stdlib/ndarray-base-nans-like",2ln -"@stdlib/ndarray/base/nans",2lo -"@stdlib/ndarray-base-nans",2lp -"@stdlib/ndarray/base/ndarraylike2descriptor",2lq -"@stdlib/ndarray-base-ndarraylike2descriptor",2lr -"@stdlib/ndarray/base/nulls-like",2ls -"@stdlib/ndarray-base-nulls-like",2lt -"@stdlib/ndarray/base/nulls",2lu -"@stdlib/ndarray-base-nulls",2lv -"@stdlib/ndarray/base/ones-like",2lw -"@stdlib/ndarray-base-ones-like",2lx -"@stdlib/ndarray/base/ones",2ly -"@stdlib/ndarray-base-ones",2lz -"@stdlib/ndarray/base/output-order",2m0 -"@stdlib/ndarray-base-output-order",2m1 -"@stdlib/ndarray/base/quaternary-loop-interchange-order",2m2 -"@stdlib/ndarray-base-quaternary-loop-interchange-order",2m3 -"@stdlib/ndarray/base/quaternary-tiling-block-size",2m4 -"@stdlib/ndarray-base-quaternary-tiling-block-size",2m5 -"@stdlib/ndarray/base/quinary-loop-interchange-order",2m6 -"@stdlib/ndarray-base-quinary-loop-interchange-order",2m7 -"@stdlib/ndarray/base/quinary-tiling-block-size",2m8 -"@stdlib/ndarray-base-quinary-tiling-block-size",2m9 -"@stdlib/ndarray/base/reinterpret-boolean",2mA -"@stdlib/ndarray-base-reinterpret-boolean",2mB -"@stdlib/ndarray/base/reinterpret-complex",2mC -"@stdlib/ndarray-base-reinterpret-complex",2mD -"@stdlib/ndarray/base/reinterpret-complex128",2mE -"@stdlib/ndarray-base-reinterpret-complex128",2mF -"@stdlib/ndarray/base/reinterpret-complex64",2mG -"@stdlib/ndarray-base-reinterpret-complex64",2mH -"@stdlib/ndarray/base/reverse-dimensions",2mI -"@stdlib/ndarray-base-reverse-dimensions",2mJ -"@stdlib/ndarray/base/rot180",2mK -"@stdlib/ndarray-base-rot180",2mL -"@stdlib/ndarray/base/rot90",2mM -"@stdlib/ndarray-base-rot90",2mN -"@stdlib/ndarray/base/rotl90",2mO -"@stdlib/ndarray-base-rotl90",2mP -"@stdlib/ndarray/base/rotr90",2mQ -"@stdlib/ndarray-base-rotr90",2mR -"@stdlib/ndarray/base/ternary-loop-interchange-order",2mS -"@stdlib/ndarray-base-ternary-loop-interchange-order",2mT -"@stdlib/ndarray/base/ternary-output-dtype",2mU -"@stdlib/ndarray-base-ternary-output-dtype",2mV -"@stdlib/ndarray/base/ternary-tiling-block-size",2mW -"@stdlib/ndarray-base-ternary-tiling-block-size",2mX -"@stdlib/ndarray/base/ternary",2mY -"@stdlib/ndarray-base-ternary",2mZ -"@stdlib/ndarray/base/tile",2ma -"@stdlib/ndarray-base-tile",2mb -"@stdlib/ndarray/base/tiling-block-size",2mc -"@stdlib/ndarray-base-tiling-block-size",2md -"@stdlib/ndarray/base/to-reversed-dimension",2me -"@stdlib/ndarray-base-to-reversed-dimension",2mf -"@stdlib/ndarray/base/to-reversed-dimensions",2mg -"@stdlib/ndarray-base-to-reversed-dimensions",2mh -"@stdlib/ndarray/base/to-rot180",2mi -"@stdlib/ndarray-base-to-rot180",2mj -"@stdlib/ndarray/base/to-rot90",2mk -"@stdlib/ndarray-base-to-rot90",2ml -"@stdlib/ndarray/base/to-rotl90",2mm -"@stdlib/ndarray-base-to-rotl90",2mn -"@stdlib/ndarray/base/to-rotr90",2mo -"@stdlib/ndarray-base-to-rotr90",2mp -"@stdlib/ndarray/base/to-transposed",2mq -"@stdlib/ndarray-base-to-transposed",2mr -"@stdlib/ndarray/base/to-unflattened",2ms -"@stdlib/ndarray-base-to-unflattened",2mt -"@stdlib/ndarray/base/trues-like",2mu -"@stdlib/ndarray-base-trues-like",2mv -"@stdlib/ndarray/base/trues",2mw -"@stdlib/ndarray-base-trues",2mx -"@stdlib/ndarray/base/unflatten-shape",2my -"@stdlib/ndarray-base-unflatten-shape",2mz -"@stdlib/ndarray/base/unflatten",2n0 -"@stdlib/ndarray-base-unflatten",2n1 -"@stdlib/ndarray/broadcast-scalar-like",2n2 -"@stdlib/ndarray-broadcast-scalar-like",2n3 -"@stdlib/ndarray/broadcast-scalar",2n4 -"@stdlib/ndarray-broadcast-scalar",2n5 -"@stdlib/ndarray/colcat",2n6 -"@stdlib/ndarray-colcat",2n7 -"@stdlib/ndarray/diagonal",2n8 -"@stdlib/ndarray-diagonal",2n9 -"@stdlib/ndarray/every-by",2nA -"@stdlib/ndarray-every-by",2nB -"@stdlib/ndarray/falses-like",2nC -"@stdlib/ndarray-falses-like",2nD -"@stdlib/ndarray/falses",2nE -"@stdlib/ndarray-falses",2nF -"@stdlib/ndarray/find-last",2nG -"@stdlib/ndarray-find-last",2nH -"@stdlib/ndarray/first",2nI -"@stdlib/ndarray-first",2nJ -"@stdlib/ndarray/flatten-from-by",2nK -"@stdlib/ndarray-flatten-from-by",2nL -"@stdlib/ndarray/from-scalar-like",2nM -"@stdlib/ndarray-from-scalar-like",2nN -"@stdlib/ndarray/hconcat",2nO -"@stdlib/ndarray-hconcat",2nP -"@stdlib/ndarray/last",2nQ -"@stdlib/ndarray-last",2nR -"@stdlib/ndarray/nans-like",2nS -"@stdlib/ndarray-nans-like",2nT -"@stdlib/ndarray/nans",2nU -"@stdlib/ndarray-nans",2nV -"@stdlib/ndarray/ndarraylike2scalar",2nW -"@stdlib/ndarray-ndarraylike2scalar",2nX -"@stdlib/ndarray/ones-like",2nY -"@stdlib/ndarray-ones-like",2nZ -"@stdlib/ndarray/ones",2na -"@stdlib/ndarray-ones",2nb -"@stdlib/ndarray/prepend-singleton-dimensions",2nc -"@stdlib/ndarray-prepend-singleton-dimensions",2nd -"@stdlib/ndarray/push",2ne -"@stdlib/ndarray-push",2nf -"@stdlib/ndarray/remove-singleton-dimensions",2ng -"@stdlib/ndarray-remove-singleton-dimensions",2nh -"@stdlib/ndarray/reverse-dimensions",2ni -"@stdlib/ndarray-reverse-dimensions",2nj -"@stdlib/ndarray/rot180",2nk -"@stdlib/ndarray-rot180",2nl -"@stdlib/ndarray/rot90",2nm -"@stdlib/ndarray-rot90",2nn -"@stdlib/ndarray/rotl90",2no -"@stdlib/ndarray-rotl90",2np -"@stdlib/ndarray/rotr90",2nq -"@stdlib/ndarray-rotr90",2nr -"@stdlib/ndarray/rowcat",2ns -"@stdlib/ndarray-rowcat",2nt -"@stdlib/ndarray/spread-dimensions",2nu -"@stdlib/ndarray-spread-dimensions",2nv -"@stdlib/ndarray/to-flippedlr",2nw -"@stdlib/ndarray-to-flippedlr",2nx -"@stdlib/ndarray/to-flippedud",2ny -"@stdlib/ndarray-to-flippedud",2nz -"@stdlib/ndarray/to-locale-string",2o0 -"@stdlib/ndarray-to-locale-string",2o1 -"@stdlib/ndarray/to-reversed-dimension",2o2 -"@stdlib/ndarray-to-reversed-dimension",2o3 -"@stdlib/ndarray/to-reversed-dimensions",2o4 -"@stdlib/ndarray-to-reversed-dimensions",2o5 -"@stdlib/ndarray/to-rot180",2o6 -"@stdlib/ndarray-to-rot180",2o7 -"@stdlib/ndarray/to-rot90",2o8 -"@stdlib/ndarray-to-rot90",2o9 -"@stdlib/ndarray/to-rotl90",2oA -"@stdlib/ndarray-to-rotl90",2oB -"@stdlib/ndarray/to-rotr90",2oC -"@stdlib/ndarray-to-rotr90",2oD -"@stdlib/ndarray/to-string",2oE -"@stdlib/ndarray-to-string",2oF -"@stdlib/ndarray/to-transposed",2oG -"@stdlib/ndarray-to-transposed",2oH -"@stdlib/ndarray/to-unflattened",2oI -"@stdlib/ndarray-to-unflattened",2oJ -"@stdlib/ndarray/transpose",2oK -"@stdlib/ndarray-transpose",2oL -"@stdlib/ndarray/trues-like",2oM -"@stdlib/ndarray-trues-like",2oN -"@stdlib/ndarray/trues",2oO -"@stdlib/ndarray-trues",2oP -"@stdlib/ndarray/unflatten",2oQ -"@stdlib/ndarray-unflatten",2oR -"@stdlib/ndarray/unshift",2oS -"@stdlib/ndarray-unshift",2oT -"@stdlib/ndarray/vconcat",2oU -"@stdlib/ndarray-vconcat",2oV -"@stdlib/number/float16/base/assert/is-almost-equal",2oW -"@stdlib/number-float16-base-assert-is-almost-equal",2oX -"@stdlib/number/float16/base/assert/is-nan",2oY -"@stdlib/number-float16-base-assert-is-nan",2oZ -"@stdlib/number/float16/base/assert/is-negative-zero",2oa -"@stdlib/number-float16-base-assert-is-negative-zero",2ob -"@stdlib/number/float16/base/assert/is-positive-zero",2oc -"@stdlib/number-float16-base-assert-is-positive-zero",2od -"@stdlib/number/float16/base/from-binary-string",2oe -"@stdlib/number-float16-base-from-binary-string",2of -"@stdlib/number/float16/base/mul",2og -"@stdlib/number-float16-base-mul",2oh -"@stdlib/number/float16/base/signbit",2oi -"@stdlib/number-float16-base-signbit",2oj -"@stdlib/number/float16/base/significand",2ok -"@stdlib/number-float16-base-significand",2ol -"@stdlib/number/float16/base/sub",2om -"@stdlib/number-float16-base-sub",2on -"@stdlib/number/float16/base/to-float32",2oo -"@stdlib/number-float16-base-to-float32",2op -"@stdlib/number/float16/base/to-float64",2oq -"@stdlib/number-float16-base-to-float64",2or -"@stdlib/number/float16/base/ulp-difference",2os -"@stdlib/number-float16-base-ulp-difference",2ot -"@stdlib/number/float16/ctor",2ou -"@stdlib/number-float16-ctor",2ov -"@stdlib/number/float32/base/assert/is-almost-same-value",2ow -"@stdlib/number-float32-base-assert-is-almost-same-value",2ox -"@stdlib/number/float32/base/to-float16",2oy -"@stdlib/number-float32-base-to-float16",2oz -"@stdlib/number/float64/base/assert/is-almost-same-value",2p0 -"@stdlib/number-float64-base-assert-is-almost-same-value",2p1 -"@stdlib/number/float64/base/sub3",2p2 -"@stdlib/number-float64-base-sub3",2p3 -"@stdlib/number/uint64/ctor",2p4 -"@stdlib/number-uint64-ctor",2p5 -"@stdlib/object/bifurcate-in",2p6 -"@stdlib/object-bifurcate-in",2p7 -"@stdlib/object/bifurcate-own",2p8 -"@stdlib/object-bifurcate-own",2p9 -"@stdlib/object/capitalize-keys",2pA -"@stdlib/object-capitalize-keys",2pB -"@stdlib/object/common-keys-in",2pC -"@stdlib/object-common-keys-in",2pD -"@stdlib/object/common-keys",2pE -"@stdlib/object-common-keys",2pF -"@stdlib/object/deep-get",2pG -"@stdlib/object-deep-get",2pH -"@stdlib/object/deep-set",2pI -"@stdlib/object-deep-set",2pJ -"@stdlib/object/for-in",2pK -"@stdlib/object-for-in",2pL -"@stdlib/object/for-own",2pM -"@stdlib/object-for-own",2pN -"@stdlib/object/inverse-by",2pO -"@stdlib/object-inverse-by",2pP -"@stdlib/object/inverse",2pQ -"@stdlib/object-inverse",2pR -"@stdlib/object/lowercase-keys",2pS -"@stdlib/object-lowercase-keys",2pT -"@stdlib/object/uncapitalize-keys",2pU -"@stdlib/object-uncapitalize-keys",2pV -"@stdlib/object/uppercase-keys",2pW -"@stdlib/object-uppercase-keys",2pX -"@stdlib/random/arcsine",2pY -"@stdlib/random-arcsine",2pZ -"@stdlib/random/bernoulli",2pa -"@stdlib/random-bernoulli",2pb -"@stdlib/random/beta",2pc -"@stdlib/random-beta",2pd -"@stdlib/random/betaprime",2pe -"@stdlib/random-betaprime",2pf -"@stdlib/random/binomial",2pg -"@stdlib/random-binomial",2ph -"@stdlib/random/cauchy",2pi -"@stdlib/random-cauchy",2pj -"@stdlib/random/chi",2pk -"@stdlib/random-chi",2pl -"@stdlib/random/chisquare",2pm -"@stdlib/random-chisquare",2pn -"@stdlib/random/cosine",2po -"@stdlib/random-cosine",2pp -"@stdlib/random/discrete-uniform",2pq -"@stdlib/random-discrete-uniform",2pr -"@stdlib/random/erlang",2ps -"@stdlib/random-erlang",2pt -"@stdlib/random/f",2pu -"@stdlib/random-f",2pv -"@stdlib/random/frechet",2pw -"@stdlib/random-frechet",2px -"@stdlib/random/gamma",2py -"@stdlib/random-gamma",2pz -"@stdlib/random/geometric",2q0 -"@stdlib/random-geometric",2q1 -"@stdlib/random/gumbel",2q2 -"@stdlib/random-gumbel",2q3 -"@stdlib/random/hypergeometric",2q4 -"@stdlib/random-hypergeometric",2q5 -"@stdlib/random/invgamma",2q6 -"@stdlib/random-invgamma",2q7 -"@stdlib/random/kumaraswamy",2q8 -"@stdlib/random-kumaraswamy",2q9 -"@stdlib/random/laplace",2qA -"@stdlib/random-laplace",2qB -"@stdlib/random/levy",2qC -"@stdlib/random-levy",2qD -"@stdlib/random/logistic",2qE -"@stdlib/random-logistic",2qF -"@stdlib/random/lognormal",2qG -"@stdlib/random-lognormal",2qH -"@stdlib/random/negative-binomial",2qI -"@stdlib/random-negative-binomial",2qJ -"@stdlib/random/normal",2qK -"@stdlib/random-normal",2qL -"@stdlib/random/pareto-type1",2qM -"@stdlib/random-pareto-type1",2qN -"@stdlib/random/poisson",2qO -"@stdlib/random-poisson",2qP -"@stdlib/random/rayleigh",2qQ -"@stdlib/random-rayleigh",2qR -"@stdlib/random/t",2qS -"@stdlib/random-t",2qT -"@stdlib/random/tools/ternary-factory",2qU -"@stdlib/random-tools-ternary-factory",2qV -"@stdlib/random/tools/ternary",2qW -"@stdlib/random-tools-ternary",2qX -"@stdlib/random/triangular",2qY -"@stdlib/random-triangular",2qZ -"@stdlib/random/weibull",2qa -"@stdlib/random-weibull",2qb -"@stdlib/stats/array/midrange-by",2qc -"@stdlib/stats-array-midrange-by",2qd -"@stdlib/stats/array/midrange",2qe -"@stdlib/stats-array-midrange",2qf -"@stdlib/stats/array/mskmaxabs",2qg -"@stdlib/stats-array-mskmaxabs",2qh -"@stdlib/stats/array/mskmidrange",2qi -"@stdlib/stats-array-mskmidrange",2qj -"@stdlib/stats/array/mskminabs",2qk -"@stdlib/stats-array-mskminabs",2ql -"@stdlib/stats/array/nanmidrange-by",2qm -"@stdlib/stats-array-nanmidrange-by",2qn -"@stdlib/stats/array/nanmidrange",2qo -"@stdlib/stats-array-nanmidrange",2qp -"@stdlib/stats/array/nanmskmidrange",2qq -"@stdlib/stats-array-nanmskmidrange",2qr -"@stdlib/stats/array/rangeabs",2qs -"@stdlib/stats-array-rangeabs",2qt -"@stdlib/stats/base/dists/halfnormal/entropy",2qu -"@stdlib/stats-base-dists-halfnormal-entropy",2qv -"@stdlib/stats/base/dists/halfnormal/kurtosis",2qw -"@stdlib/stats-base-dists-halfnormal-kurtosis",2qx -"@stdlib/stats/base/dists/halfnormal/logpdf",2qy -"@stdlib/stats-base-dists-halfnormal-logpdf",2qz -"@stdlib/stats/base/dists/halfnormal/mean",2r0 -"@stdlib/stats-base-dists-halfnormal-mean",2r1 -"@stdlib/stats/base/dists/halfnormal/mode",2r2 -"@stdlib/stats-base-dists-halfnormal-mode",2r3 -"@stdlib/stats/base/dists/halfnormal/stdev",2r4 -"@stdlib/stats-base-dists-halfnormal-stdev",2r5 -"@stdlib/stats/base/dists/wald/kurtosis",2r6 -"@stdlib/stats-base-dists-wald-kurtosis",2r7 -"@stdlib/stats/base/dists/wald/mean",2r8 -"@stdlib/stats-base-dists-wald-mean",2r9 -"@stdlib/stats/base/dists/wald/mode",2rA -"@stdlib/stats-base-dists-wald-mode",2rB -"@stdlib/stats/base/dists/wald/pdf",2rC -"@stdlib/stats-base-dists-wald-pdf",2rD -"@stdlib/stats/base/dists/wald/skewness",2rE -"@stdlib/stats-base-dists-wald-skewness",2rF -"@stdlib/stats/base/dists/wald/variance",2rG -"@stdlib/stats-base-dists-wald-variance",2rH -"@stdlib/stats/base/ndarray/dmeanstdev",2rI -"@stdlib/stats-base-ndarray-dmeanstdev",2rJ -"@stdlib/stats/base/ndarray/dmskmaxabs",2rK -"@stdlib/stats-base-ndarray-dmskmaxabs",2rL -"@stdlib/stats/base/ndarray/dnanmidrange",2rM -"@stdlib/stats-base-ndarray-dnanmidrange",2rN -"@stdlib/stats/base/ndarray/dnanmskmaxabs",2rO -"@stdlib/stats-base-ndarray-dnanmskmaxabs",2rP -"@stdlib/stats/base/ndarray/dnanmskminabs",2rQ -"@stdlib/stats-base-ndarray-dnanmskminabs",2rR -"@stdlib/stats/base/ndarray/dnanrange",2rS -"@stdlib/stats-base-ndarray-dnanrange",2rT -"@stdlib/stats/base/ndarray/dnanrangeabs",2rU -"@stdlib/stats-base-ndarray-dnanrangeabs",2rV -"@stdlib/stats/base/ndarray/dnanstdev",2rW -"@stdlib/stats-base-ndarray-dnanstdev",2rX -"@stdlib/stats/base/ndarray/dnanstdevch",2rY -"@stdlib/stats-base-ndarray-dnanstdevch",2rZ -"@stdlib/stats/base/ndarray/dnanstdevpn",2ra -"@stdlib/stats-base-ndarray-dnanstdevpn",2rb -"@stdlib/stats/base/ndarray/drangeabs",2rc -"@stdlib/stats-base-ndarray-drangeabs",2rd -"@stdlib/stats/base/ndarray/dstdev",2re -"@stdlib/stats-base-ndarray-dstdev",2rf -"@stdlib/stats/base/ndarray/dstdevch",2rg -"@stdlib/stats-base-ndarray-dstdevch",2rh -"@stdlib/stats/base/ndarray/dstdevpn",2ri -"@stdlib/stats-base-ndarray-dstdevpn",2rj -"@stdlib/stats/base/ndarray/dstdevtk",2rk -"@stdlib/stats-base-ndarray-dstdevtk",2rl -"@stdlib/stats/base/ndarray/dstdevwd",2rm -"@stdlib/stats-base-ndarray-dstdevwd",2rn -"@stdlib/stats/base/ndarray/dstdevyc",2ro -"@stdlib/stats-base-ndarray-dstdevyc",2rp -"@stdlib/stats/base/ndarray/dvariance",2rq -"@stdlib/stats-base-ndarray-dvariance",2rr -"@stdlib/stats/base/ndarray/midrange-by",2rs -"@stdlib/stats-base-ndarray-midrange-by",2rt -"@stdlib/stats/base/ndarray/midrange",2ru -"@stdlib/stats-base-ndarray-midrange",2rv -"@stdlib/stats/base/ndarray/midrangeabs",2rw -"@stdlib/stats-base-ndarray-midrangeabs",2rx -"@stdlib/stats/base/ndarray/mskmaxabs",2ry -"@stdlib/stats-base-ndarray-mskmaxabs",2rz -"@stdlib/stats/base/ndarray/mskmidrange",2s0 -"@stdlib/stats-base-ndarray-mskmidrange",2s1 -"@stdlib/stats/base/ndarray/nanmidrange-by",2s2 -"@stdlib/stats-base-ndarray-nanmidrange-by",2s3 -"@stdlib/stats/base/ndarray/nanmidrange",2s4 -"@stdlib/stats-base-ndarray-nanmidrange",2s5 -"@stdlib/stats/base/ndarray/nanmskmidrange",2s6 -"@stdlib/stats-base-ndarray-nanmskmidrange",2s7 -"@stdlib/stats/base/ndarray/rangeabs",2s8 -"@stdlib/stats-base-ndarray-rangeabs",2s9 -"@stdlib/stats/base/ndarray/smskmaxabs",2sA -"@stdlib/stats-base-ndarray-smskmaxabs",2sB -"@stdlib/stats/base/ndarray/smskmidrange",2sC -"@stdlib/stats-base-ndarray-smskmidrange",2sD -"@stdlib/stats/base/ndarray/snanmidrange",2sE -"@stdlib/stats-base-ndarray-snanmidrange",2sF -"@stdlib/stats/base/ndarray/snanmskmaxabs",2sG -"@stdlib/stats-base-ndarray-snanmskmaxabs",2sH -"@stdlib/stats/base/ndarray/snanmskmidrange",2sI -"@stdlib/stats-base-ndarray-snanmskmidrange",2sJ -"@stdlib/stats/base/ndarray/snanmskminabs",2sK -"@stdlib/stats-base-ndarray-snanmskminabs",2sL -"@stdlib/stats/base/ndarray/snanrange",2sM -"@stdlib/stats-base-ndarray-snanrange",2sN -"@stdlib/stats/base/ndarray/srangeabs",2sO -"@stdlib/stats-base-ndarray-srangeabs",2sP -"@stdlib/stats/base/ndarray/sstdev",2sQ -"@stdlib/stats-base-ndarray-sstdev",2sR -"@stdlib/stats/base/ndarray/sstdevch",2sS -"@stdlib/stats-base-ndarray-sstdevch",2sT -"@stdlib/stats/base/ndarray/sstdevpn",2sU -"@stdlib/stats-base-ndarray-sstdevpn",2sV -"@stdlib/stats/base/ndarray/sstdevtk",2sW -"@stdlib/stats-base-ndarray-sstdevtk",2sX -"@stdlib/stats/base/ndarray/sstdevwd",2sY -"@stdlib/stats-base-ndarray-sstdevwd",2sZ -"@stdlib/stats/base/ndarray/sstdevyc",2sa -"@stdlib/stats-base-ndarray-sstdevyc",2sb -"@stdlib/stats/base/ndarray/stdev",2sc -"@stdlib/stats-base-ndarray-stdev",2sd -"@stdlib/stats/base/ndarray/stdevch",2se -"@stdlib/stats-base-ndarray-stdevch",2sf -"@stdlib/stats/base/ndarray/stdevpn",2sg -"@stdlib/stats-base-ndarray-stdevpn",2sh -"@stdlib/stats/base/ndarray/stdevtk",2si -"@stdlib/stats-base-ndarray-stdevtk",2sj -"@stdlib/stats/base/ndarray/stdevwd",2sk -"@stdlib/stats-base-ndarray-stdevwd",2sl -"@stdlib/stats/base/ndarray/stdevyc",2sm -"@stdlib/stats-base-ndarray-stdevyc",2sn -"@stdlib/stats/base/ndarray/svariance",2so -"@stdlib/stats-base-ndarray-svariance",2sp -"@stdlib/stats/base/ndarray/svariancech",2sq -"@stdlib/stats-base-ndarray-svariancech",2sr -"@stdlib/stats/base/ndarray/svariancepn",2ss -"@stdlib/stats-base-ndarray-svariancepn",2st -"@stdlib/stats/base/ndarray/svariancetk",2su -"@stdlib/stats-base-ndarray-svariancetk",2sv -"@stdlib/stats/base/ndarray/svariancewd",2sw -"@stdlib/stats-base-ndarray-svariancewd",2sx -"@stdlib/stats/base/ndarray/svarianceyc",2sy -"@stdlib/stats-base-ndarray-svarianceyc",2sz -"@stdlib/stats/base/ndarray/variance",2t0 -"@stdlib/stats-base-ndarray-variance",2t1 -"@stdlib/stats/base/ndarray/variancech",2t2 -"@stdlib/stats-base-ndarray-variancech",2t3 -"@stdlib/stats/base/ndarray/variancepn",2t4 -"@stdlib/stats-base-ndarray-variancepn",2t5 -"@stdlib/stats/base/ndarray/variancetk",2t6 -"@stdlib/stats-base-ndarray-variancetk",2t7 -"@stdlib/stats/base/ndarray/variancewd",2t8 -"@stdlib/stats-base-ndarray-variancewd",2t9 -"@stdlib/stats/base/ndarray/varianceyc",2tA -"@stdlib/stats-base-ndarray-varianceyc",2tB -"@stdlib/stats/incr/nanmmape",2tC -"@stdlib/stats-incr-nanmmape",2tD -"@stdlib/stats/incr/nanmmse",2tE -"@stdlib/stats-incr-nanmmse",2tF -"@stdlib/stats/incr/nanvariance",2tG -"@stdlib/stats-incr-nanvariance",2tH -"@stdlib/stats/midrange-by",2tI -"@stdlib/stats-midrange-by",2tJ -"@stdlib/stats/midrange",2tK -"@stdlib/stats-midrange",2tL -"@stdlib/stats/nanmidrange-by",2tM -"@stdlib/stats-nanmidrange-by",2tN -"@stdlib/stats/nanmidrange",2tO -"@stdlib/stats-nanmidrange",2tP -"@stdlib/stats/nanrange-by",2tQ -"@stdlib/stats-nanrange-by",2tR -"@stdlib/stats/nanrange",2tS -"@stdlib/stats-nanrange",2tT -"@stdlib/stats/rangeabs",2tU -"@stdlib/stats-rangeabs",2tV -"@stdlib/stats/strided/distances/dchebyshev",2tW -"@stdlib/stats-strided-distances-dchebyshev",2tX -"@stdlib/stats/strided/distances/dcityblock",2tY -"@stdlib/stats-strided-distances-dcityblock",2tZ -"@stdlib/stats/strided/distances/dcorrelation",2ta -"@stdlib/stats-strided-distances-dcorrelation",2tb -"@stdlib/stats/strided/distances/dcosine-distance",2tc -"@stdlib/stats-strided-distances-dcosine-distance",2td -"@stdlib/stats/strided/distances/dcosine-similarity",2te -"@stdlib/stats-strided-distances-dcosine-similarity",2tf -"@stdlib/stats/strided/distances/deuclidean",2tg -"@stdlib/stats-strided-distances-deuclidean",2th -"@stdlib/stats/strided/distances/dminkowski",2ti -"@stdlib/stats-strided-distances-dminkowski",2tj -"@stdlib/stats/strided/distances/dsquared-euclidean",2tk -"@stdlib/stats-strided-distances-dsquared-euclidean",2tl -"@stdlib/stats/strided/distances",2tm -"@stdlib/stats-strided-distances",2tn -"@stdlib/stats/strided/dmidrangeabs",2to -"@stdlib/stats-strided-dmidrangeabs",2tp -"@stdlib/stats/strided/dmskmaxabs",2tq -"@stdlib/stats-strided-dmskmaxabs",2tr -"@stdlib/stats/strided/dmskmidrange",2ts -"@stdlib/stats-strided-dmskmidrange",2tt -"@stdlib/stats/strided/dnanmidrange",2tu -"@stdlib/stats-strided-dnanmidrange",2tv -"@stdlib/stats/strided/dnanmskmaxabs",2tw -"@stdlib/stats-strided-dnanmskmaxabs",2tx -"@stdlib/stats/strided/dnanmskmidrange",2ty -"@stdlib/stats-strided-dnanmskmidrange",2tz -"@stdlib/stats/strided/dnanmskminabs",2u0 -"@stdlib/stats-strided-dnanmskminabs",2u1 -"@stdlib/stats/strided/dnanrangeabs",2u2 -"@stdlib/stats-strided-dnanrangeabs",2u3 -"@stdlib/stats/strided/dpcorr",2u4 -"@stdlib/stats-strided-dpcorr",2u5 -"@stdlib/stats/strided/dpcorrwd",2u6 -"@stdlib/stats-strided-dpcorrwd",2u7 -"@stdlib/stats/strided/drangeabs",2u8 -"@stdlib/stats-strided-drangeabs",2u9 -"@stdlib/stats/strided/midrange-by",2uA -"@stdlib/stats-strided-midrange-by",2uB -"@stdlib/stats/strided/midrange",2uC -"@stdlib/stats-strided-midrange",2uD -"@stdlib/stats/strided/midrangeabs",2uE -"@stdlib/stats-strided-midrangeabs",2uF -"@stdlib/stats/strided/mskmaxabs",2uG -"@stdlib/stats-strided-mskmaxabs",2uH -"@stdlib/stats/strided/mskmidrange",2uI -"@stdlib/stats-strided-mskmidrange",2uJ -"@stdlib/stats/strided/mskminabs",2uK -"@stdlib/stats-strided-mskminabs",2uL -"@stdlib/stats/strided/nanmidrange-by",2uM -"@stdlib/stats-strided-nanmidrange-by",2uN -"@stdlib/stats/strided/nanmidrange",2uO -"@stdlib/stats-strided-nanmidrange",2uP -"@stdlib/stats/strided/nanmskmidrange",2uQ -"@stdlib/stats-strided-nanmskmidrange",2uR -"@stdlib/stats/strided/nanrangeabs",2uS -"@stdlib/stats-strided-nanrangeabs",2uT -"@stdlib/stats/strided/rangeabs",2uU -"@stdlib/stats-strided-rangeabs",2uV -"@stdlib/stats/strided/smskmaxabs",2uW -"@stdlib/stats-strided-smskmaxabs",2uX -"@stdlib/stats/strided/smskmidrange",2uY -"@stdlib/stats-strided-smskmidrange",2uZ -"@stdlib/stats/strided/snanmidrange",2ua -"@stdlib/stats-strided-snanmidrange",2ub -"@stdlib/stats/strided/snanmskmaxabs",2uc -"@stdlib/stats-strided-snanmskmaxabs",2ud -"@stdlib/stats/strided/snanmskmidrange",2ue -"@stdlib/stats-strided-snanmskmidrange",2uf -"@stdlib/stats/strided/snanmskminabs",2ug -"@stdlib/stats-strided-snanmskminabs",2uh -"@stdlib/stats/strided/srangeabs",2ui -"@stdlib/stats-strided-srangeabs",2uj -"@stdlib/strided/base/reinterpret-float16",2uk -"@stdlib/strided-base-reinterpret-float16",2ul diff --git a/tools/pkg2id/data/data.json b/tools/pkg2id/data/data.json deleted file mode 100644 index 6727c47..0000000 --- a/tools/pkg2id/data/data.json +++ /dev/null @@ -1 +0,0 @@ -{"@stdlib/array/base/arraylike2object":"000","@stdlib/array-base-arraylike2object":"001","@stdlib/array/base/copy":"002","@stdlib/array-base-copy":"003","@stdlib/array/base/filled-by":"004","@stdlib/array-base-filled-by":"005","@stdlib/array/base/filled":"006","@stdlib/array-base-filled":"007","@stdlib/array/base/incrspace":"008","@stdlib/array-base-incrspace":"009","@stdlib/array/base/linspace":"00A","@stdlib/array-base-linspace":"00B","@stdlib/array/base/logspace":"00C","@stdlib/array-base-logspace":"00D","@stdlib/array/base/ones":"00E","@stdlib/array-base-ones":"00F","@stdlib/array/base":"00G","@stdlib/array-base":"00H","@stdlib/array/base/unitspace":"00I","@stdlib/array-base-unitspace":"00J","@stdlib/array/base/zeros":"00K","@stdlib/array-base-zeros":"00L","@stdlib/array/buffer":"00M","@stdlib/array-buffer":"00N","@stdlib/array/complex128":"00O","@stdlib/array-complex128":"00P","@stdlib/array/complex64":"00Q","@stdlib/array-complex64":"00R","@stdlib/array/convert-same":"00S","@stdlib/array-convert-same":"00T","@stdlib/array/convert":"00U","@stdlib/array-convert":"00V","@stdlib/array/ctors":"00W","@stdlib/array-ctors":"00X","@stdlib/array/dataview":"00Y","@stdlib/array-dataview":"00Z","@stdlib/array/datespace":"00a","@stdlib/array-datespace":"00b","@stdlib/array/dtype":"00c","@stdlib/array-dtype":"00d","@stdlib/array/dtypes":"00e","@stdlib/array-dtypes":"00f","@stdlib/array/filled-by":"00g","@stdlib/array-filled-by":"00h","@stdlib/array/filled":"00i","@stdlib/array-filled":"00j","@stdlib/array/float32":"00k","@stdlib/array-float32":"00l","@stdlib/array/float64":"00m","@stdlib/array-float64":"00n","@stdlib/array/from-iterator":"00o","@stdlib/array-from-iterator":"00p","@stdlib/array/full-like":"00q","@stdlib/array-full-like":"00r","@stdlib/array/full":"00s","@stdlib/array-full":"00t","@stdlib/array/incrspace":"00u","@stdlib/array-incrspace":"00v","@stdlib/array/int16":"00w","@stdlib/array-int16":"00x","@stdlib/array/int32":"00y","@stdlib/array-int32":"00z","@stdlib/array/int8":"010","@stdlib/array-int8":"011","@stdlib/array/linspace":"012","@stdlib/array-linspace":"013","@stdlib/array/logspace":"014","@stdlib/array-logspace":"015","@stdlib/array/min-dtype":"016","@stdlib/array-min-dtype":"017","@stdlib/array/next-dtype":"018","@stdlib/array-next-dtype":"019","@stdlib/array/ones-like":"01A","@stdlib/array-ones-like":"01B","@stdlib/array/ones":"01C","@stdlib/array-ones":"01D","@stdlib/array":"01F","@stdlib/array/pool":"01G","@stdlib/array-pool":"01H","@stdlib/array/promotion-rules":"01I","@stdlib/array-promotion-rules":"01J","@stdlib/array/reviver":"01K","@stdlib/array-reviver":"01L","@stdlib/array/safe-casts":"01M","@stdlib/array-safe-casts":"01N","@stdlib/array/same-kind-casts":"01O","@stdlib/array-same-kind-casts":"01P","@stdlib/array/shape":"01Q","@stdlib/array-shape":"01R","@stdlib/array/shared-buffer":"01S","@stdlib/array-shared-buffer":"01T","@stdlib/array/to-circular-iterator":"01U","@stdlib/array-to-circular-iterator":"01V","@stdlib/array/to-iterator-right":"01W","@stdlib/array-to-iterator-right":"01X","@stdlib/array/to-iterator":"01Y","@stdlib/array-to-iterator":"01Z","@stdlib/array/to-json":"01a","@stdlib/array-to-json":"01b","@stdlib/array/to-sparse-iterator-right":"01c","@stdlib/array-to-sparse-iterator-right":"01d","@stdlib/array/to-sparse-iterator":"01e","@stdlib/array-to-sparse-iterator":"01f","@stdlib/array/to-strided-iterator":"01g","@stdlib/array-to-strided-iterator":"01h","@stdlib/array/to-view-iterator-right":"01i","@stdlib/array-to-view-iterator-right":"01j","@stdlib/array/to-view-iterator":"01k","@stdlib/array-to-view-iterator":"01l","@stdlib/array/typed-complex-ctors":"01m","@stdlib/array-typed-complex-ctors":"01n","@stdlib/array/typed-complex-dtypes":"01o","@stdlib/array-typed-complex-dtypes":"01p","@stdlib/array/typed-complex":"01q","@stdlib/array-typed-complex":"01r","@stdlib/array/typed-ctors":"01s","@stdlib/array-typed-ctors":"01t","@stdlib/array/typed-dtypes":"01u","@stdlib/array-typed-dtypes":"01v","@stdlib/array/typed-float-ctors":"01w","@stdlib/array-typed-float-ctors":"01x","@stdlib/array/typed-float-dtypes":"01y","@stdlib/array-typed-float-dtypes":"01z","@stdlib/array/typed-integer-ctors":"020","@stdlib/array-typed-integer-ctors":"021","@stdlib/array/typed-integer-dtypes":"022","@stdlib/array-typed-integer-dtypes":"023","@stdlib/array/typed-real-ctors":"024","@stdlib/array-typed-real-ctors":"025","@stdlib/array/typed-real-dtypes":"026","@stdlib/array-typed-real-dtypes":"027","@stdlib/array/typed-real-float-ctors":"028","@stdlib/array-typed-real-float-ctors":"029","@stdlib/array/typed-real-float-dtypes":"02A","@stdlib/array-typed-real-float-dtypes":"02B","@stdlib/array/typed-real":"02C","@stdlib/array-typed-real":"02D","@stdlib/array/typed-signed-integer-ctors":"02E","@stdlib/array-typed-signed-integer-ctors":"02F","@stdlib/array/typed-signed-integer-dtypes":"02G","@stdlib/array-typed-signed-integer-dtypes":"02H","@stdlib/array/typed-unsigned-integer-ctors":"02I","@stdlib/array-typed-unsigned-integer-ctors":"02J","@stdlib/array/typed-unsigned-integer-dtypes":"02K","@stdlib/array-typed-unsigned-integer-dtypes":"02L","@stdlib/array/typed":"02M","@stdlib/array-typed":"02N","@stdlib/array/uint16":"02O","@stdlib/array-uint16":"02P","@stdlib/array/uint32":"02Q","@stdlib/array-uint32":"02R","@stdlib/array/uint8":"02S","@stdlib/array-uint8":"02T","@stdlib/array/uint8c":"02U","@stdlib/array-uint8c":"02V","@stdlib/array/zeros-like":"02W","@stdlib/array-zeros-like":"02X","@stdlib/array/zeros":"02Y","@stdlib/array-zeros":"02Z","@stdlib/assert/contains":"02a","@stdlib/assert-contains":"02b","@stdlib/assert/deep-equal":"02c","@stdlib/assert-deep-equal":"02d","@stdlib/assert/deep-has-own-property":"02e","@stdlib/assert-deep-has-own-property":"02f","@stdlib/assert/deep-has-property":"02g","@stdlib/assert-deep-has-property":"02h","@stdlib/assert/has-arraybuffer-support":"02i","@stdlib/assert-has-arraybuffer-support":"02j","@stdlib/assert/has-arrow-function-support":"02k","@stdlib/assert-has-arrow-function-support":"02l","@stdlib/assert/has-async-await-support":"02m","@stdlib/assert-has-async-await-support":"02n","@stdlib/assert/has-async-iterator-symbol-support":"02o","@stdlib/assert-has-async-iterator-symbol-support":"02p","@stdlib/assert/has-bigint-support":"02q","@stdlib/assert-has-bigint-support":"02r","@stdlib/assert/has-bigint64array-support":"02s","@stdlib/assert-has-bigint64array-support":"02t","@stdlib/assert/has-biguint64array-support":"02u","@stdlib/assert-has-biguint64array-support":"02v","@stdlib/assert/has-class-support":"02w","@stdlib/assert-has-class-support":"02x","@stdlib/assert/has-dataview-support":"02y","@stdlib/assert-has-dataview-support":"02z","@stdlib/assert/has-define-properties-support":"030","@stdlib/assert-has-define-properties-support":"031","@stdlib/assert/has-define-property-support":"032","@stdlib/assert-has-define-property-support":"033","@stdlib/assert/has-float32array-support":"034","@stdlib/assert-has-float32array-support":"035","@stdlib/assert/has-float64array-support":"036","@stdlib/assert-has-float64array-support":"037","@stdlib/assert/has-function-name-support":"038","@stdlib/assert-has-function-name-support":"039","@stdlib/assert/has-generator-support":"03A","@stdlib/assert-has-generator-support":"03B","@stdlib/assert/has-globalthis-support":"03C","@stdlib/assert-has-globalthis-support":"03D","@stdlib/assert/has-int16array-support":"03E","@stdlib/assert-has-int16array-support":"03F","@stdlib/assert/has-int32array-support":"03G","@stdlib/assert-has-int32array-support":"03H","@stdlib/assert/has-int8array-support":"03I","@stdlib/assert-has-int8array-support":"03J","@stdlib/assert/has-iterator-symbol-support":"03K","@stdlib/assert-has-iterator-symbol-support":"03L","@stdlib/assert/has-map-support":"03M","@stdlib/assert-has-map-support":"03N","@stdlib/assert/has-node-buffer-support":"03O","@stdlib/assert-has-node-buffer-support":"03P","@stdlib/assert/has-own-property":"03Q","@stdlib/assert-has-own-property":"03R","@stdlib/assert/has-property":"03S","@stdlib/assert-has-property":"03T","@stdlib/assert/has-proxy-support":"03U","@stdlib/assert-has-proxy-support":"03V","@stdlib/assert/has-set-support":"03W","@stdlib/assert-has-set-support":"03X","@stdlib/assert/has-sharedarraybuffer-support":"03Y","@stdlib/assert-has-sharedarraybuffer-support":"03Z","@stdlib/assert/has-symbol-support":"03a","@stdlib/assert-has-symbol-support":"03b","@stdlib/assert/has-tostringtag-support":"03c","@stdlib/assert-has-tostringtag-support":"03d","@stdlib/assert/has-uint16array-support":"03e","@stdlib/assert-has-uint16array-support":"03f","@stdlib/assert/has-uint32array-support":"03g","@stdlib/assert-has-uint32array-support":"03h","@stdlib/assert/has-uint8array-support":"03i","@stdlib/assert-has-uint8array-support":"03j","@stdlib/assert/has-uint8clampedarray-support":"03k","@stdlib/assert-has-uint8clampedarray-support":"03l","@stdlib/assert/has-utf16-surrogate-pair-at":"03m","@stdlib/assert-has-utf16-surrogate-pair-at":"03n","@stdlib/assert/has-wasm-support":"03o","@stdlib/assert-has-wasm-support":"03p","@stdlib/assert/has-weakmap-support":"03q","@stdlib/assert-has-weakmap-support":"03r","@stdlib/assert/has-weakset-support":"03s","@stdlib/assert-has-weakset-support":"03t","@stdlib/assert/instance-of":"03u","@stdlib/assert-instance-of":"03v","@stdlib/assert/is-absolute-http-uri":"03w","@stdlib/assert-is-absolute-http-uri":"03x","@stdlib/assert/is-absolute-path":"03y","@stdlib/assert-is-absolute-path":"03z","@stdlib/assert/is-absolute-uri":"040","@stdlib/assert-is-absolute-uri":"041","@stdlib/assert/is-accessor-property-in":"042","@stdlib/assert-is-accessor-property-in":"043","@stdlib/assert/is-accessor-property":"044","@stdlib/assert-is-accessor-property":"045","@stdlib/assert/is-alphagram":"046","@stdlib/assert-is-alphagram":"047","@stdlib/assert/is-alphanumeric":"048","@stdlib/assert-is-alphanumeric":"049","@stdlib/assert/is-anagram":"04A","@stdlib/assert-is-anagram":"04B","@stdlib/assert/is-arguments":"04C","@stdlib/assert-is-arguments":"04D","@stdlib/assert/is-array-array":"04E","@stdlib/assert-is-array-array":"04F","@stdlib/assert/is-array-length":"04G","@stdlib/assert-is-array-length":"04H","@stdlib/assert/is-array-like-object":"04I","@stdlib/assert-is-array-like-object":"04J","@stdlib/assert/is-array-like":"04K","@stdlib/assert-is-array-like":"04L","@stdlib/assert/is-array":"04M","@stdlib/assert-is-array":"04N","@stdlib/assert/is-arraybuffer-view":"04O","@stdlib/assert-is-arraybuffer-view":"04P","@stdlib/assert/is-arraybuffer":"04Q","@stdlib/assert-is-arraybuffer":"04R","@stdlib/assert/is-arrow-function":"04S","@stdlib/assert-is-arrow-function":"04T","@stdlib/assert/is-ascii":"04U","@stdlib/assert-is-ascii":"04V","@stdlib/assert/is-between-array":"04W","@stdlib/assert-is-between-array":"04X","@stdlib/assert/is-between":"04Y","@stdlib/assert-is-between":"04Z","@stdlib/assert/is-big-endian":"04a","@stdlib/assert-is-big-endian":"04b","@stdlib/assert/is-bigint":"04c","@stdlib/assert-is-bigint":"04d","@stdlib/assert/is-bigint64array":"04e","@stdlib/assert-is-bigint64array":"04f","@stdlib/assert/is-biguint64array":"04g","@stdlib/assert-is-biguint64array":"04h","@stdlib/assert/is-binary-string":"04i","@stdlib/assert-is-binary-string":"04j","@stdlib/assert/is-blank-string":"04k","@stdlib/assert-is-blank-string":"04l","@stdlib/assert/is-boolean-array":"04m","@stdlib/assert-is-boolean-array":"04n","@stdlib/assert/is-boolean":"04o","@stdlib/assert-is-boolean":"04p","@stdlib/assert/is-boxed-primitive":"04q","@stdlib/assert-is-boxed-primitive":"04r","@stdlib/assert/is-browser":"04s","@stdlib/assert-is-browser":"04t","@stdlib/assert/is-buffer":"04u","@stdlib/assert-is-buffer":"04v","@stdlib/assert/is-capitalized":"04w","@stdlib/assert-is-capitalized":"04x","@stdlib/assert/is-centrosymmetric-matrix":"04y","@stdlib/assert-is-centrosymmetric-matrix":"04z","@stdlib/assert/is-circular-array":"050","@stdlib/assert-is-circular-array":"051","@stdlib/assert/is-circular-plain-object":"052","@stdlib/assert-is-circular-plain-object":"053","@stdlib/assert/is-circular":"054","@stdlib/assert-is-circular":"055","@stdlib/assert/is-class":"056","@stdlib/assert-is-class":"057","@stdlib/assert/is-collection":"058","@stdlib/assert-is-collection":"059","@stdlib/assert/is-complex-like":"05A","@stdlib/assert-is-complex-like":"05B","@stdlib/assert/is-complex-typed-array-like":"05C","@stdlib/assert-is-complex-typed-array-like":"05D","@stdlib/assert/is-complex-typed-array":"05E","@stdlib/assert-is-complex-typed-array":"05F","@stdlib/assert/is-complex":"05G","@stdlib/assert-is-complex":"05H","@stdlib/assert/is-complex128":"05I","@stdlib/assert-is-complex128":"05J","@stdlib/assert/is-complex128array":"05K","@stdlib/assert-is-complex128array":"05L","@stdlib/assert/is-complex64":"05M","@stdlib/assert-is-complex64":"05N","@stdlib/assert/is-complex64array":"05O","@stdlib/assert-is-complex64array":"05P","@stdlib/assert/is-composite":"05Q","@stdlib/assert-is-composite":"05R","@stdlib/assert/is-configurable-property-in":"05S","@stdlib/assert-is-configurable-property-in":"05T","@stdlib/assert/is-configurable-property":"05U","@stdlib/assert-is-configurable-property":"05V","@stdlib/assert/is-cube-number":"05W","@stdlib/assert-is-cube-number":"05X","@stdlib/assert/is-darwin":"05Y","@stdlib/assert-is-darwin":"05Z","@stdlib/assert/is-data-property-in":"05a","@stdlib/assert-is-data-property-in":"05b","@stdlib/assert/is-data-property":"05c","@stdlib/assert-is-data-property":"05d","@stdlib/assert/is-dataview":"05e","@stdlib/assert-is-dataview":"05f","@stdlib/assert/is-date-object-array":"05g","@stdlib/assert-is-date-object-array":"05h","@stdlib/assert/is-date-object":"05i","@stdlib/assert-is-date-object":"05j","@stdlib/assert/is-digit-string":"05k","@stdlib/assert-is-digit-string":"05l","@stdlib/assert/is-docker":"05m","@stdlib/assert-is-docker":"05n","@stdlib/assert/is-electron-main":"05o","@stdlib/assert-is-electron-main":"05p","@stdlib/assert/is-electron-renderer":"05q","@stdlib/assert-is-electron-renderer":"05r","@stdlib/assert/is-electron":"05s","@stdlib/assert-is-electron":"05t","@stdlib/assert/is-email-address":"05u","@stdlib/assert-is-email-address":"05v","@stdlib/assert/is-empty-array-like-object":"05w","@stdlib/assert-is-empty-array-like-object":"05x","@stdlib/assert/is-empty-array":"05y","@stdlib/assert-is-empty-array":"05z","@stdlib/assert/is-empty-collection":"060","@stdlib/assert-is-empty-collection":"061","@stdlib/assert/is-empty-object":"062","@stdlib/assert-is-empty-object":"063","@stdlib/assert/is-empty-string":"064","@stdlib/assert-is-empty-string":"065","@stdlib/assert/is-enumerable-property-in":"066","@stdlib/assert-is-enumerable-property-in":"067","@stdlib/assert/is-enumerable-property":"068","@stdlib/assert-is-enumerable-property":"069","@stdlib/assert/is-error":"06A","@stdlib/assert-is-error":"06B","@stdlib/assert/is-eval-error":"06C","@stdlib/assert-is-eval-error":"06D","@stdlib/assert/is-even":"06E","@stdlib/assert-is-even":"06F","@stdlib/assert/is-falsy-array":"06G","@stdlib/assert-is-falsy-array":"06H","@stdlib/assert/is-falsy":"06I","@stdlib/assert-is-falsy":"06J","@stdlib/assert/is-finite-array":"06K","@stdlib/assert-is-finite-array":"06L","@stdlib/assert/is-finite":"06M","@stdlib/assert-is-finite":"06N","@stdlib/assert/is-float32array":"06O","@stdlib/assert-is-float32array":"06P","@stdlib/assert/is-float32matrix-like":"06Q","@stdlib/assert-is-float32matrix-like":"06R","@stdlib/assert/is-float32ndarray-like":"06S","@stdlib/assert-is-float32ndarray-like":"06T","@stdlib/assert/is-float32vector-like":"06U","@stdlib/assert-is-float32vector-like":"06V","@stdlib/assert/is-float64array":"06W","@stdlib/assert-is-float64array":"06X","@stdlib/assert/is-float64matrix-like":"06Y","@stdlib/assert-is-float64matrix-like":"06Z","@stdlib/assert/is-float64ndarray-like":"06a","@stdlib/assert-is-float64ndarray-like":"06b","@stdlib/assert/is-float64vector-like":"06c","@stdlib/assert-is-float64vector-like":"06d","@stdlib/assert/is-function-array":"06e","@stdlib/assert-is-function-array":"06f","@stdlib/assert/is-function":"06g","@stdlib/assert-is-function":"06h","@stdlib/assert/is-generator-object-like":"06i","@stdlib/assert-is-generator-object-like":"06j","@stdlib/assert/is-generator-object":"06k","@stdlib/assert-is-generator-object":"06l","@stdlib/assert/is-gzip-buffer":"06m","@stdlib/assert-is-gzip-buffer":"06n","@stdlib/assert/is-hex-string":"06o","@stdlib/assert-is-hex-string":"06p","@stdlib/assert/is-infinite":"06q","@stdlib/assert-is-infinite":"06r","@stdlib/assert/is-inherited-property":"06s","@stdlib/assert-is-inherited-property":"06t","@stdlib/assert/is-int16array":"06u","@stdlib/assert-is-int16array":"06v","@stdlib/assert/is-int32array":"06w","@stdlib/assert-is-int32array":"06x","@stdlib/assert/is-int8array":"06y","@stdlib/assert-is-int8array":"06z","@stdlib/assert/is-integer-array":"070","@stdlib/assert-is-integer-array":"071","@stdlib/assert/is-integer":"072","@stdlib/assert-is-integer":"073","@stdlib/assert/is-iterable-like":"074","@stdlib/assert-is-iterable-like":"075","@stdlib/assert/is-iterator-like":"076","@stdlib/assert-is-iterator-like":"077","@stdlib/assert/is-json":"078","@stdlib/assert-is-json":"079","@stdlib/assert/is-leap-year":"07A","@stdlib/assert-is-leap-year":"07B","@stdlib/assert/is-little-endian":"07C","@stdlib/assert-is-little-endian":"07D","@stdlib/assert/is-localhost":"07E","@stdlib/assert-is-localhost":"07F","@stdlib/assert/is-lowercase":"07G","@stdlib/assert-is-lowercase":"07H","@stdlib/assert/is-matrix-like":"07I","@stdlib/assert-is-matrix-like":"07J","@stdlib/assert/is-method-in":"07K","@stdlib/assert-is-method-in":"07L","@stdlib/assert/is-method":"07M","@stdlib/assert-is-method":"07N","@stdlib/assert/is-mobile":"07O","@stdlib/assert-is-mobile":"07P","@stdlib/assert/is-named-typed-tuple-like":"07Q","@stdlib/assert-is-named-typed-tuple-like":"07R","@stdlib/assert/is-nan-array":"07S","@stdlib/assert-is-nan-array":"07T","@stdlib/assert/is-nan":"07U","@stdlib/assert-is-nan":"07V","@stdlib/assert/is-native-function":"07W","@stdlib/assert-is-native-function":"07X","@stdlib/assert/is-ndarray-like":"07Y","@stdlib/assert-is-ndarray-like":"07Z","@stdlib/assert/is-negative-integer-array":"07a","@stdlib/assert-is-negative-integer-array":"07b","@stdlib/assert/is-negative-integer":"07c","@stdlib/assert-is-negative-integer":"07d","@stdlib/assert/is-negative-number-array":"07e","@stdlib/assert-is-negative-number-array":"07f","@stdlib/assert/is-negative-number":"07g","@stdlib/assert-is-negative-number":"07h","@stdlib/assert/is-negative-zero":"07i","@stdlib/assert-is-negative-zero":"07j","@stdlib/assert/is-node-builtin":"07k","@stdlib/assert-is-node-builtin":"07l","@stdlib/assert/is-node-duplex-stream-like":"07m","@stdlib/assert-is-node-duplex-stream-like":"07n","@stdlib/assert/is-node-readable-stream-like":"07o","@stdlib/assert-is-node-readable-stream-like":"07p","@stdlib/assert/is-node-repl":"07q","@stdlib/assert-is-node-repl":"07r","@stdlib/assert/is-node-stream-like":"07s","@stdlib/assert-is-node-stream-like":"07t","@stdlib/assert/is-node-transform-stream-like":"07u","@stdlib/assert-is-node-transform-stream-like":"07v","@stdlib/assert/is-node-writable-stream-like":"07w","@stdlib/assert-is-node-writable-stream-like":"07x","@stdlib/assert/is-node":"07y","@stdlib/assert-is-node":"07z","@stdlib/assert/is-nonconfigurable-property-in":"080","@stdlib/assert-is-nonconfigurable-property-in":"081","@stdlib/assert/is-nonconfigurable-property":"082","@stdlib/assert-is-nonconfigurable-property":"083","@stdlib/assert/is-nonenumerable-property-in":"084","@stdlib/assert-is-nonenumerable-property-in":"085","@stdlib/assert/is-nonenumerable-property":"086","@stdlib/assert-is-nonenumerable-property":"087","@stdlib/assert/is-nonnegative-integer-array":"088","@stdlib/assert-is-nonnegative-integer-array":"089","@stdlib/assert/is-nonnegative-integer":"08A","@stdlib/assert-is-nonnegative-integer":"08B","@stdlib/assert/is-nonnegative-number-array":"08C","@stdlib/assert-is-nonnegative-number-array":"08D","@stdlib/assert/is-nonnegative-number":"08E","@stdlib/assert-is-nonnegative-number":"08F","@stdlib/assert/is-nonpositive-integer-array":"08G","@stdlib/assert-is-nonpositive-integer-array":"08H","@stdlib/assert/is-nonpositive-integer":"08I","@stdlib/assert-is-nonpositive-integer":"08J","@stdlib/assert/is-nonpositive-number-array":"08K","@stdlib/assert-is-nonpositive-number-array":"08L","@stdlib/assert/is-nonpositive-number":"08M","@stdlib/assert-is-nonpositive-number":"08N","@stdlib/assert/is-nonsymmetric-matrix":"08O","@stdlib/assert-is-nonsymmetric-matrix":"08P","@stdlib/assert/is-null-array":"08Q","@stdlib/assert-is-null-array":"08R","@stdlib/assert/is-null":"08S","@stdlib/assert-is-null":"08T","@stdlib/assert/is-number-array":"08U","@stdlib/assert-is-number-array":"08V","@stdlib/assert/is-number":"08W","@stdlib/assert-is-number":"08X","@stdlib/assert/is-numeric-array":"08Y","@stdlib/assert-is-numeric-array":"08Z","@stdlib/assert/is-object-array":"08a","@stdlib/assert-is-object-array":"08b","@stdlib/assert/is-object-like":"08c","@stdlib/assert-is-object-like":"08d","@stdlib/assert/is-object":"08e","@stdlib/assert-is-object":"08f","@stdlib/assert/is-odd":"08g","@stdlib/assert-is-odd":"08h","@stdlib/assert/is-persymmetric-matrix":"08i","@stdlib/assert-is-persymmetric-matrix":"08j","@stdlib/assert/is-plain-object-array":"08k","@stdlib/assert-is-plain-object-array":"08l","@stdlib/assert/is-plain-object":"08m","@stdlib/assert-is-plain-object":"08n","@stdlib/assert/is-positive-integer-array":"08o","@stdlib/assert-is-positive-integer-array":"08p","@stdlib/assert/is-positive-integer":"08q","@stdlib/assert-is-positive-integer":"08r","@stdlib/assert/is-positive-number-array":"08s","@stdlib/assert-is-positive-number-array":"08t","@stdlib/assert/is-positive-number":"08u","@stdlib/assert-is-positive-number":"08v","@stdlib/assert/is-positive-zero":"08w","@stdlib/assert-is-positive-zero":"08x","@stdlib/assert/is-prime":"08y","@stdlib/assert-is-prime":"08z","@stdlib/assert/is-primitive-array":"090","@stdlib/assert-is-primitive-array":"091","@stdlib/assert/is-primitive":"092","@stdlib/assert-is-primitive":"093","@stdlib/assert/is-prng-like":"094","@stdlib/assert-is-prng-like":"095","@stdlib/assert/is-probability-array":"096","@stdlib/assert-is-probability-array":"097","@stdlib/assert/is-probability":"098","@stdlib/assert-is-probability":"099","@stdlib/assert/is-property-key":"09A","@stdlib/assert-is-property-key":"09B","@stdlib/assert/is-prototype-of":"09C","@stdlib/assert-is-prototype-of":"09D","@stdlib/assert/is-range-error":"09E","@stdlib/assert-is-range-error":"09F","@stdlib/assert/is-read-only-property-in":"09G","@stdlib/assert-is-read-only-property-in":"09H","@stdlib/assert/is-read-only-property":"09I","@stdlib/assert-is-read-only-property":"09J","@stdlib/assert/is-read-write-property-in":"09K","@stdlib/assert-is-read-write-property-in":"09L","@stdlib/assert/is-read-write-property":"09M","@stdlib/assert-is-read-write-property":"09N","@stdlib/assert/is-readable-property-in":"09O","@stdlib/assert-is-readable-property-in":"09P","@stdlib/assert/is-readable-property":"09Q","@stdlib/assert-is-readable-property":"09R","@stdlib/assert/is-reference-error":"09S","@stdlib/assert-is-reference-error":"09T","@stdlib/assert/is-regexp-string":"09U","@stdlib/assert-is-regexp-string":"09V","@stdlib/assert/is-regexp":"09W","@stdlib/assert-is-regexp":"09X","@stdlib/assert/is-relative-path":"09Y","@stdlib/assert-is-relative-path":"09Z","@stdlib/assert/is-relative-uri":"09a","@stdlib/assert-is-relative-uri":"09b","@stdlib/assert/is-safe-integer-array":"09c","@stdlib/assert-is-safe-integer-array":"09d","@stdlib/assert/is-safe-integer":"09e","@stdlib/assert-is-safe-integer":"09f","@stdlib/assert/is-same-native-class":"09g","@stdlib/assert-is-same-native-class":"09h","@stdlib/assert/is-same-type":"09i","@stdlib/assert-is-same-type":"09j","@stdlib/assert/is-same-value-zero":"09k","@stdlib/assert-is-same-value-zero":"09l","@stdlib/assert/is-same-value":"09m","@stdlib/assert-is-same-value":"09n","@stdlib/assert/is-sharedarraybuffer":"09o","@stdlib/assert-is-sharedarraybuffer":"09p","@stdlib/assert/is-skew-centrosymmetric-matrix":"09q","@stdlib/assert-is-skew-centrosymmetric-matrix":"09r","@stdlib/assert/is-skew-persymmetric-matrix":"09s","@stdlib/assert-is-skew-persymmetric-matrix":"09t","@stdlib/assert/is-skew-symmetric-matrix":"09u","@stdlib/assert-is-skew-symmetric-matrix":"09v","@stdlib/assert/is-square-matrix":"09w","@stdlib/assert-is-square-matrix":"09x","@stdlib/assert/is-square-number":"09y","@stdlib/assert-is-square-number":"09z","@stdlib/assert/is-square-triangular-number":"0A0","@stdlib/assert-is-square-triangular-number":"0A1","@stdlib/assert/is-strict-equal":"0A2","@stdlib/assert-is-strict-equal":"0A3","@stdlib/assert/is-string-array":"0A4","@stdlib/assert-is-string-array":"0A5","@stdlib/assert/is-string":"0A6","@stdlib/assert-is-string":"0A7","@stdlib/assert/is-symbol-array":"0A8","@stdlib/assert-is-symbol-array":"0A9","@stdlib/assert/is-symbol":"0AA","@stdlib/assert-is-symbol":"0AB","@stdlib/assert/is-symmetric-matrix":"0AC","@stdlib/assert-is-symmetric-matrix":"0AD","@stdlib/assert/is-syntax-error":"0AE","@stdlib/assert-is-syntax-error":"0AF","@stdlib/assert/is-touch-device":"0AG","@stdlib/assert-is-touch-device":"0AH","@stdlib/assert/is-triangular-number":"0AI","@stdlib/assert-is-triangular-number":"0AJ","@stdlib/assert/is-truthy-array":"0AK","@stdlib/assert-is-truthy-array":"0AL","@stdlib/assert/is-truthy":"0AM","@stdlib/assert-is-truthy":"0AN","@stdlib/assert/is-type-error":"0AO","@stdlib/assert-is-type-error":"0AP","@stdlib/assert/is-typed-array-length":"0AQ","@stdlib/assert-is-typed-array-length":"0AR","@stdlib/assert/is-typed-array-like":"0AS","@stdlib/assert-is-typed-array-like":"0AT","@stdlib/assert/is-typed-array":"0AU","@stdlib/assert-is-typed-array":"0AV","@stdlib/assert/is-uint16array":"0AW","@stdlib/assert-is-uint16array":"0AX","@stdlib/assert/is-uint32array":"0AY","@stdlib/assert-is-uint32array":"0AZ","@stdlib/assert/is-uint8array":"0Aa","@stdlib/assert-is-uint8array":"0Ab","@stdlib/assert/is-uint8clampedarray":"0Ac","@stdlib/assert-is-uint8clampedarray":"0Ad","@stdlib/assert/is-unc-path":"0Ae","@stdlib/assert-is-unc-path":"0Af","@stdlib/assert/is-undefined-or-null":"0Ag","@stdlib/assert-is-undefined-or-null":"0Ah","@stdlib/assert/is-undefined":"0Ai","@stdlib/assert-is-undefined":"0Aj","@stdlib/assert/is-unity-probability-array":"0Ak","@stdlib/assert-is-unity-probability-array":"0Al","@stdlib/assert/is-uppercase":"0Am","@stdlib/assert-is-uppercase":"0An","@stdlib/assert/is-uri-error":"0Ao","@stdlib/assert-is-uri-error":"0Ap","@stdlib/assert/is-uri":"0Aq","@stdlib/assert-is-uri":"0Ar","@stdlib/assert/is-vector-like":"0As","@stdlib/assert-is-vector-like":"0At","@stdlib/assert/is-web-worker":"0Au","@stdlib/assert-is-web-worker":"0Av","@stdlib/assert/is-whitespace":"0Aw","@stdlib/assert-is-whitespace":"0Ax","@stdlib/assert/is-windows":"0Ay","@stdlib/assert-is-windows":"0Az","@stdlib/assert/is-writable-property-in":"0B0","@stdlib/assert-is-writable-property-in":"0B1","@stdlib/assert/is-writable-property":"0B2","@stdlib/assert-is-writable-property":"0B3","@stdlib/assert/is-write-only-property-in":"0B4","@stdlib/assert-is-write-only-property-in":"0B5","@stdlib/assert/is-write-only-property":"0B6","@stdlib/assert-is-write-only-property":"0B7","@stdlib/assert":"0B9","@stdlib/assert/tools/array-function":"0BA","@stdlib/assert-tools-array-function":"0BB","@stdlib/assert/tools/array-like-function":"0BC","@stdlib/assert-tools-array-like-function":"0BD","@stdlib/assert/tools":"0BE","@stdlib/assert-tools":"0BF","@stdlib/assert/tools/typed-array-function":"0BG","@stdlib/assert-tools-typed-array-function":"0BH","@stdlib/bench/harness":"0BI","@stdlib/bench-harness":"0BJ","@stdlib/bench":"0BL","@stdlib/bigint/ctor":"0BM","@stdlib/bigint-ctor":"0BN","@stdlib/bigint":"0BP","@stdlib/blas/base/ccopy":"0BQ","@stdlib/blas-base-ccopy":"0BR","@stdlib/blas/base/cswap":"0BS","@stdlib/blas-base-cswap":"0BT","@stdlib/blas/base/dasum":"0BU","@stdlib/blas-base-dasum":"0BV","@stdlib/blas/base/daxpy":"0BW","@stdlib/blas-base-daxpy":"0BX","@stdlib/blas/base/dcopy":"0BY","@stdlib/blas-base-dcopy":"0BZ","@stdlib/blas/base/ddot":"0Ba","@stdlib/blas-base-ddot":"0Bb","@stdlib/blas/base/dnrm2":"0Bc","@stdlib/blas-base-dnrm2":"0Bd","@stdlib/blas/base/dscal":"0Be","@stdlib/blas-base-dscal":"0Bf","@stdlib/blas/base/dsdot":"0Bg","@stdlib/blas-base-dsdot":"0Bh","@stdlib/blas/base/dswap":"0Bi","@stdlib/blas-base-dswap":"0Bj","@stdlib/blas/base/gasum":"0Bk","@stdlib/blas-base-gasum":"0Bl","@stdlib/blas/base/gaxpy":"0Bm","@stdlib/blas-base-gaxpy":"0Bn","@stdlib/blas/base/gcopy":"0Bo","@stdlib/blas-base-gcopy":"0Bp","@stdlib/blas/base/gdot":"0Bq","@stdlib/blas-base-gdot":"0Br","@stdlib/blas/base/gnrm2":"0Bs","@stdlib/blas-base-gnrm2":"0Bt","@stdlib/blas/base/gscal":"0Bu","@stdlib/blas-base-gscal":"0Bv","@stdlib/blas/base/gswap":"0Bw","@stdlib/blas-base-gswap":"0Bx","@stdlib/blas/base":"0By","@stdlib/blas-base":"0Bz","@stdlib/blas/base/sasum":"0C0","@stdlib/blas-base-sasum":"0C1","@stdlib/blas/base/saxpy":"0C2","@stdlib/blas-base-saxpy":"0C3","@stdlib/blas/base/scopy":"0C4","@stdlib/blas-base-scopy":"0C5","@stdlib/blas/base/sdot":"0C6","@stdlib/blas-base-sdot":"0C7","@stdlib/blas/base/sdsdot":"0C8","@stdlib/blas-base-sdsdot":"0C9","@stdlib/blas/base/snrm2":"0CA","@stdlib/blas-base-snrm2":"0CB","@stdlib/blas/base/sscal":"0CC","@stdlib/blas-base-sscal":"0CD","@stdlib/blas/base/sswap":"0CE","@stdlib/blas-base-sswap":"0CF","@stdlib/blas/ddot":"0CG","@stdlib/blas-ddot":"0CH","@stdlib/blas/dswap":"0CI","@stdlib/blas-dswap":"0CJ","@stdlib/blas/ext/base/dapx":"0CK","@stdlib/blas-ext-base-dapx":"0CL","@stdlib/blas/ext/base/dapxsum":"0CM","@stdlib/blas-ext-base-dapxsum":"0CN","@stdlib/blas/ext/base/dapxsumkbn":"0CO","@stdlib/blas-ext-base-dapxsumkbn":"0CP","@stdlib/blas/ext/base/dapxsumkbn2":"0CQ","@stdlib/blas-ext-base-dapxsumkbn2":"0CR","@stdlib/blas/ext/base/dapxsumors":"0CS","@stdlib/blas-ext-base-dapxsumors":"0CT","@stdlib/blas/ext/base/dapxsumpw":"0CU","@stdlib/blas-ext-base-dapxsumpw":"0CV","@stdlib/blas/ext/base/dasumpw":"0CW","@stdlib/blas-ext-base-dasumpw":"0CX","@stdlib/blas/ext/base/dcusum":"0CY","@stdlib/blas-ext-base-dcusum":"0CZ","@stdlib/blas/ext/base/dcusumkbn":"0Ca","@stdlib/blas-ext-base-dcusumkbn":"0Cb","@stdlib/blas/ext/base/dcusumkbn2":"0Cc","@stdlib/blas-ext-base-dcusumkbn2":"0Cd","@stdlib/blas/ext/base/dcusumors":"0Ce","@stdlib/blas-ext-base-dcusumors":"0Cf","@stdlib/blas/ext/base/dcusumpw":"0Cg","@stdlib/blas-ext-base-dcusumpw":"0Ch","@stdlib/blas/ext/base/dfill":"0Ci","@stdlib/blas-ext-base-dfill":"0Cj","@stdlib/blas/ext/base/dnanasum":"0Ck","@stdlib/blas-ext-base-dnanasum":"0Cl","@stdlib/blas/ext/base/dnanasumors":"0Cm","@stdlib/blas-ext-base-dnanasumors":"0Cn","@stdlib/blas/ext/base/dnannsum":"0Co","@stdlib/blas-ext-base-dnannsum":"0Cp","@stdlib/blas/ext/base/dnannsumkbn":"0Cq","@stdlib/blas-ext-base-dnannsumkbn":"0Cr","@stdlib/blas/ext/base/dnannsumkbn2":"0Cs","@stdlib/blas-ext-base-dnannsumkbn2":"0Ct","@stdlib/blas/ext/base/dnannsumors":"0Cu","@stdlib/blas-ext-base-dnannsumors":"0Cv","@stdlib/blas/ext/base/dnannsumpw":"0Cw","@stdlib/blas-ext-base-dnannsumpw":"0Cx","@stdlib/blas/ext/base/dnansum":"0Cy","@stdlib/blas-ext-base-dnansum":"0Cz","@stdlib/blas/ext/base/dnansumkbn":"0D0","@stdlib/blas-ext-base-dnansumkbn":"0D1","@stdlib/blas/ext/base/dnansumkbn2":"0D2","@stdlib/blas-ext-base-dnansumkbn2":"0D3","@stdlib/blas/ext/base/dnansumors":"0D4","@stdlib/blas-ext-base-dnansumors":"0D5","@stdlib/blas/ext/base/dnansumpw":"0D6","@stdlib/blas-ext-base-dnansumpw":"0D7","@stdlib/blas/ext/base/drev":"0D8","@stdlib/blas-ext-base-drev":"0D9","@stdlib/blas/ext/base/dsapxsum":"0DA","@stdlib/blas-ext-base-dsapxsum":"0DB","@stdlib/blas/ext/base/dsapxsumpw":"0DC","@stdlib/blas-ext-base-dsapxsumpw":"0DD","@stdlib/blas/ext/base/dsnannsumors":"0DE","@stdlib/blas-ext-base-dsnannsumors":"0DF","@stdlib/blas/ext/base/dsnansum":"0DG","@stdlib/blas-ext-base-dsnansum":"0DH","@stdlib/blas/ext/base/dsnansumors":"0DI","@stdlib/blas-ext-base-dsnansumors":"0DJ","@stdlib/blas/ext/base/dsnansumpw":"0DK","@stdlib/blas-ext-base-dsnansumpw":"0DL","@stdlib/blas/ext/base/dsort2hp":"0DM","@stdlib/blas-ext-base-dsort2hp":"0DN","@stdlib/blas/ext/base/dsort2ins":"0DO","@stdlib/blas-ext-base-dsort2ins":"0DP","@stdlib/blas/ext/base/dsort2sh":"0DQ","@stdlib/blas-ext-base-dsort2sh":"0DR","@stdlib/blas/ext/base/dsorthp":"0DS","@stdlib/blas-ext-base-dsorthp":"0DT","@stdlib/blas/ext/base/dsortins":"0DU","@stdlib/blas-ext-base-dsortins":"0DV","@stdlib/blas/ext/base/dsortsh":"0DW","@stdlib/blas-ext-base-dsortsh":"0DX","@stdlib/blas/ext/base/dssum":"0DY","@stdlib/blas-ext-base-dssum":"0DZ","@stdlib/blas/ext/base/dssumors":"0Da","@stdlib/blas-ext-base-dssumors":"0Db","@stdlib/blas/ext/base/dssumpw":"0Dc","@stdlib/blas-ext-base-dssumpw":"0Dd","@stdlib/blas/ext/base/dsum":"0De","@stdlib/blas-ext-base-dsum":"0Df","@stdlib/blas/ext/base/dsumkbn":"0Dg","@stdlib/blas-ext-base-dsumkbn":"0Dh","@stdlib/blas/ext/base/dsumkbn2":"0Di","@stdlib/blas-ext-base-dsumkbn2":"0Dj","@stdlib/blas/ext/base/dsumors":"0Dk","@stdlib/blas-ext-base-dsumors":"0Dl","@stdlib/blas/ext/base/dsumpw":"0Dm","@stdlib/blas-ext-base-dsumpw":"0Dn","@stdlib/blas/ext/base/gapx":"0Do","@stdlib/blas-ext-base-gapx":"0Dp","@stdlib/blas/ext/base/gapxsum":"0Dq","@stdlib/blas-ext-base-gapxsum":"0Dr","@stdlib/blas/ext/base/gapxsumkbn":"0Ds","@stdlib/blas-ext-base-gapxsumkbn":"0Dt","@stdlib/blas/ext/base/gapxsumkbn2":"0Du","@stdlib/blas-ext-base-gapxsumkbn2":"0Dv","@stdlib/blas/ext/base/gapxsumors":"0Dw","@stdlib/blas-ext-base-gapxsumors":"0Dx","@stdlib/blas/ext/base/gapxsumpw":"0Dy","@stdlib/blas-ext-base-gapxsumpw":"0Dz","@stdlib/blas/ext/base/gasumpw":"0E0","@stdlib/blas-ext-base-gasumpw":"0E1","@stdlib/blas/ext/base/gcusum":"0E2","@stdlib/blas-ext-base-gcusum":"0E3","@stdlib/blas/ext/base/gcusumkbn":"0E4","@stdlib/blas-ext-base-gcusumkbn":"0E5","@stdlib/blas/ext/base/gcusumkbn2":"0E6","@stdlib/blas-ext-base-gcusumkbn2":"0E7","@stdlib/blas/ext/base/gcusumors":"0E8","@stdlib/blas-ext-base-gcusumors":"0E9","@stdlib/blas/ext/base/gcusumpw":"0EA","@stdlib/blas-ext-base-gcusumpw":"0EB","@stdlib/blas/ext/base/gfill-by":"0EC","@stdlib/blas-ext-base-gfill-by":"0ED","@stdlib/blas/ext/base/gfill":"0EE","@stdlib/blas-ext-base-gfill":"0EF","@stdlib/blas/ext/base/gnannsumkbn":"0EG","@stdlib/blas-ext-base-gnannsumkbn":"0EH","@stdlib/blas/ext/base/gnansum":"0EI","@stdlib/blas-ext-base-gnansum":"0EJ","@stdlib/blas/ext/base/gnansumkbn":"0EK","@stdlib/blas-ext-base-gnansumkbn":"0EL","@stdlib/blas/ext/base/gnansumkbn2":"0EM","@stdlib/blas-ext-base-gnansumkbn2":"0EN","@stdlib/blas/ext/base/gnansumors":"0EO","@stdlib/blas-ext-base-gnansumors":"0EP","@stdlib/blas/ext/base/gnansumpw":"0EQ","@stdlib/blas-ext-base-gnansumpw":"0ER","@stdlib/blas/ext/base/grev":"0ES","@stdlib/blas-ext-base-grev":"0ET","@stdlib/blas/ext/base/gsort2hp":"0EU","@stdlib/blas-ext-base-gsort2hp":"0EV","@stdlib/blas/ext/base/gsort2ins":"0EW","@stdlib/blas-ext-base-gsort2ins":"0EX","@stdlib/blas/ext/base/gsort2sh":"0EY","@stdlib/blas-ext-base-gsort2sh":"0EZ","@stdlib/blas/ext/base/gsorthp":"0Ea","@stdlib/blas-ext-base-gsorthp":"0Eb","@stdlib/blas/ext/base/gsortins":"0Ec","@stdlib/blas-ext-base-gsortins":"0Ed","@stdlib/blas/ext/base/gsortsh":"0Ee","@stdlib/blas-ext-base-gsortsh":"0Ef","@stdlib/blas/ext/base/gsum":"0Eg","@stdlib/blas-ext-base-gsum":"0Eh","@stdlib/blas/ext/base/gsumkbn":"0Ei","@stdlib/blas-ext-base-gsumkbn":"0Ej","@stdlib/blas/ext/base/gsumkbn2":"0Ek","@stdlib/blas-ext-base-gsumkbn2":"0El","@stdlib/blas/ext/base/gsumors":"0Em","@stdlib/blas-ext-base-gsumors":"0En","@stdlib/blas/ext/base/gsumpw":"0Eo","@stdlib/blas-ext-base-gsumpw":"0Ep","@stdlib/blas/ext/base":"0Eq","@stdlib/blas-ext-base":"0Er","@stdlib/blas/ext/base/sapx":"0Es","@stdlib/blas-ext-base-sapx":"0Et","@stdlib/blas/ext/base/sapxsum":"0Eu","@stdlib/blas-ext-base-sapxsum":"0Ev","@stdlib/blas/ext/base/sapxsumkbn":"0Ew","@stdlib/blas-ext-base-sapxsumkbn":"0Ex","@stdlib/blas/ext/base/sapxsumkbn2":"0Ey","@stdlib/blas-ext-base-sapxsumkbn2":"0Ez","@stdlib/blas/ext/base/sapxsumors":"0F0","@stdlib/blas-ext-base-sapxsumors":"0F1","@stdlib/blas/ext/base/sapxsumpw":"0F2","@stdlib/blas-ext-base-sapxsumpw":"0F3","@stdlib/blas/ext/base/sasumpw":"0F4","@stdlib/blas-ext-base-sasumpw":"0F5","@stdlib/blas/ext/base/scusum":"0F6","@stdlib/blas-ext-base-scusum":"0F7","@stdlib/blas/ext/base/scusumkbn":"0F8","@stdlib/blas-ext-base-scusumkbn":"0F9","@stdlib/blas/ext/base/scusumkbn2":"0FA","@stdlib/blas-ext-base-scusumkbn2":"0FB","@stdlib/blas/ext/base/scusumors":"0FC","@stdlib/blas-ext-base-scusumors":"0FD","@stdlib/blas/ext/base/scusumpw":"0FE","@stdlib/blas-ext-base-scusumpw":"0FF","@stdlib/blas/ext/base/sdsapxsum":"0FG","@stdlib/blas-ext-base-sdsapxsum":"0FH","@stdlib/blas/ext/base/sdsapxsumpw":"0FI","@stdlib/blas-ext-base-sdsapxsumpw":"0FJ","@stdlib/blas/ext/base/sdsnansum":"0FK","@stdlib/blas-ext-base-sdsnansum":"0FL","@stdlib/blas/ext/base/sdsnansumpw":"0FM","@stdlib/blas-ext-base-sdsnansumpw":"0FN","@stdlib/blas/ext/base/sdssum":"0FO","@stdlib/blas-ext-base-sdssum":"0FP","@stdlib/blas/ext/base/sdssumpw":"0FQ","@stdlib/blas-ext-base-sdssumpw":"0FR","@stdlib/blas/ext/base/sfill":"0FS","@stdlib/blas-ext-base-sfill":"0FT","@stdlib/blas/ext/base/snansum":"0FU","@stdlib/blas-ext-base-snansum":"0FV","@stdlib/blas/ext/base/snansumkbn":"0FW","@stdlib/blas-ext-base-snansumkbn":"0FX","@stdlib/blas/ext/base/snansumkbn2":"0FY","@stdlib/blas-ext-base-snansumkbn2":"0FZ","@stdlib/blas/ext/base/snansumors":"0Fa","@stdlib/blas-ext-base-snansumors":"0Fb","@stdlib/blas/ext/base/snansumpw":"0Fc","@stdlib/blas-ext-base-snansumpw":"0Fd","@stdlib/blas/ext/base/srev":"0Fe","@stdlib/blas-ext-base-srev":"0Ff","@stdlib/blas/ext/base/ssort2hp":"0Fg","@stdlib/blas-ext-base-ssort2hp":"0Fh","@stdlib/blas/ext/base/ssort2ins":"0Fi","@stdlib/blas-ext-base-ssort2ins":"0Fj","@stdlib/blas/ext/base/ssort2sh":"0Fk","@stdlib/blas-ext-base-ssort2sh":"0Fl","@stdlib/blas/ext/base/ssorthp":"0Fm","@stdlib/blas-ext-base-ssorthp":"0Fn","@stdlib/blas/ext/base/ssortins":"0Fo","@stdlib/blas-ext-base-ssortins":"0Fp","@stdlib/blas/ext/base/ssortsh":"0Fq","@stdlib/blas-ext-base-ssortsh":"0Fr","@stdlib/blas/ext/base/ssum":"0Fs","@stdlib/blas-ext-base-ssum":"0Ft","@stdlib/blas/ext/base/ssumkbn":"0Fu","@stdlib/blas-ext-base-ssumkbn":"0Fv","@stdlib/blas/ext/base/ssumkbn2":"0Fw","@stdlib/blas-ext-base-ssumkbn2":"0Fx","@stdlib/blas/ext/base/ssumors":"0Fy","@stdlib/blas-ext-base-ssumors":"0Fz","@stdlib/blas/ext/base/ssumpw":"0G0","@stdlib/blas-ext-base-ssumpw":"0G1","@stdlib/blas/ext":"0G2","@stdlib/blas-ext":"0G3","@stdlib/blas/gdot":"0G4","@stdlib/blas-gdot":"0G5","@stdlib/blas/gswap":"0G6","@stdlib/blas-gswap":"0G7","@stdlib/blas":"0G9","@stdlib/blas/sdot":"0GA","@stdlib/blas-sdot":"0GB","@stdlib/blas/sswap":"0GC","@stdlib/blas-sswap":"0GD","@stdlib/buffer/alloc-unsafe":"0GE","@stdlib/buffer-alloc-unsafe":"0GF","@stdlib/buffer/ctor":"0GG","@stdlib/buffer-ctor":"0GH","@stdlib/buffer/from-array":"0GI","@stdlib/buffer-from-array":"0GJ","@stdlib/buffer/from-arraybuffer":"0GK","@stdlib/buffer-from-arraybuffer":"0GL","@stdlib/buffer/from-buffer":"0GM","@stdlib/buffer-from-buffer":"0GN","@stdlib/buffer/from-string":"0GO","@stdlib/buffer-from-string":"0GP","@stdlib/buffer":"0GR","@stdlib/buffer/reviver":"0GS","@stdlib/buffer-reviver":"0GT","@stdlib/buffer/to-json":"0GU","@stdlib/buffer-to-json":"0GV","@stdlib/cli/ctor":"0GW","@stdlib/cli-ctor":"0GX","@stdlib/cli":"0GZ","@stdlib/complex/base/wrap-function":"0Ga","@stdlib/complex-base-wrap-function":"0Gb","@stdlib/complex/cmplx":"0Gc","@stdlib/complex-cmplx":"0Gd","@stdlib/complex/conj":"0Ge","@stdlib/complex-conj":"0Gf","@stdlib/complex/conjf":"0Gg","@stdlib/complex-conjf":"0Gh","@stdlib/complex/ctors":"0Gi","@stdlib/complex-ctors":"0Gj","@stdlib/complex/dtype":"0Gk","@stdlib/complex-dtype":"0Gl","@stdlib/complex/dtypes":"0Gm","@stdlib/complex-dtypes":"0Gn","@stdlib/complex/float32/ctor":"0Go","@stdlib/complex-float32":"1ur","@stdlib/complex/float64/ctor":"0Gq","@stdlib/complex-float64":"1uz","@stdlib/complex/imag":"0Gs","@stdlib/complex-imag":"0Gt","@stdlib/complex/imagf":"0Gu","@stdlib/complex-imagf":"0Gv","@stdlib/complex":"0Gx","@stdlib/complex/promotion-rules":"0Gy","@stdlib/complex-promotion-rules":"0Gz","@stdlib/complex/real":"0H0","@stdlib/complex-real":"0H1","@stdlib/complex/realf":"0H2","@stdlib/complex-realf":"0H3","@stdlib/complex/reim":"0H4","@stdlib/complex-reim":"0H5","@stdlib/complex/reimf":"0H6","@stdlib/complex-reimf":"0H7","@stdlib/complex/float32/reviver":"0H8","@stdlib/complex-reviver-float32":"0H9","@stdlib/complex/float64/reviver":"0HA","@stdlib/complex-reviver-float64":"0HB","@stdlib/complex/reviver":"0HC","@stdlib/complex-reviver":"0HD","@stdlib/constants/array/max-array-length":"0HE","@stdlib/constants-array-max-array-length":"0HF","@stdlib/constants/array/max-typed-array-length":"0HG","@stdlib/constants-array-max-typed-array-length":"0HH","@stdlib/constants/array":"0HI","@stdlib/constants-array":"0HJ","@stdlib/constants/complex128/num-bytes":"0HK","@stdlib/constants-complex128-num-bytes":"0HL","@stdlib/constants/complex128":"0HM","@stdlib/constants-complex128":"0HN","@stdlib/constants/complex64/num-bytes":"0HO","@stdlib/constants-complex64-num-bytes":"0HP","@stdlib/constants/complex64":"0HQ","@stdlib/constants-complex64":"0HR","@stdlib/constants/float16/cbrt-eps":"0HS","@stdlib/constants-float16-cbrt-eps":"0HT","@stdlib/constants/float16/eps":"0HU","@stdlib/constants-float16-eps":"0HV","@stdlib/constants/float16/exponent-bias":"0HW","@stdlib/constants-float16-exponent-bias":"0HX","@stdlib/constants/float16/max-safe-integer":"0HY","@stdlib/constants-float16-max-safe-integer":"0HZ","@stdlib/constants/float16/max":"0Ha","@stdlib/constants-float16-max":"0Hb","@stdlib/constants/float16/min-safe-integer":"0Hc","@stdlib/constants-float16-min-safe-integer":"0Hd","@stdlib/constants/float16/ninf":"0He","@stdlib/constants-float16-ninf":"0Hf","@stdlib/constants/float16/num-bytes":"0Hg","@stdlib/constants-float16-num-bytes":"0Hh","@stdlib/constants/float16":"0Hi","@stdlib/constants-float16":"0Hj","@stdlib/constants/float16/pinf":"0Hk","@stdlib/constants-float16-pinf":"0Hl","@stdlib/constants/float16/precision":"0Hm","@stdlib/constants-float16-precision":"0Hn","@stdlib/constants/float16/smallest-normal":"0Ho","@stdlib/constants-float16-smallest-normal":"0Hp","@stdlib/constants/float16/smallest-subnormal":"0Hq","@stdlib/constants-float16-smallest-subnormal":"0Hr","@stdlib/constants/float16/sqrt-eps":"0Hs","@stdlib/constants-float16-sqrt-eps":"0Ht","@stdlib/constants/float32/cbrt-eps":"0Hu","@stdlib/constants-float32-cbrt-eps":"0Hv","@stdlib/constants/float32/eps":"0Hw","@stdlib/constants-float32-eps":"0Hx","@stdlib/constants/float32/exponent-bias":"0Hy","@stdlib/constants-float32-exponent-bias":"0Hz","@stdlib/constants/float32/max-safe-integer":"0I0","@stdlib/constants-float32-max-safe-integer":"0I1","@stdlib/constants/float32/max":"0I2","@stdlib/constants-float32-max":"0I3","@stdlib/constants/float32/min-safe-integer":"0I4","@stdlib/constants-float32-min-safe-integer":"0I5","@stdlib/constants/float32/ninf":"0I6","@stdlib/constants-float32-ninf":"0I7","@stdlib/constants/float32/num-bytes":"0I8","@stdlib/constants-float32-num-bytes":"0I9","@stdlib/constants/float32":"0IA","@stdlib/constants-float32":"0IB","@stdlib/constants/float32/pinf":"0IC","@stdlib/constants-float32-pinf":"0ID","@stdlib/constants/float32/precision":"0IE","@stdlib/constants-float32-precision":"0IF","@stdlib/constants/float32/smallest-normal":"0IG","@stdlib/constants-float32-smallest-normal":"0IH","@stdlib/constants/float32/smallest-subnormal":"0II","@stdlib/constants-float32-smallest-subnormal":"0IJ","@stdlib/constants/float32/sqrt-eps":"0IK","@stdlib/constants-float32-sqrt-eps":"0IL","@stdlib/constants/float64/apery":"0IM","@stdlib/constants-float64-apery":"0IN","@stdlib/constants/float64/catalan":"0IO","@stdlib/constants-float64-catalan":"0IP","@stdlib/constants/float64/cbrt-eps":"0IQ","@stdlib/constants-float64-cbrt-eps":"0IR","@stdlib/constants/float64/e":"0IS","@stdlib/constants-float64-e":"0IT","@stdlib/constants/float64/eps":"0IU","@stdlib/constants-float64-eps":"0IV","@stdlib/constants/float64/eulergamma":"0IW","@stdlib/constants-float64-eulergamma":"0IX","@stdlib/constants/float64/exponent-bias":"0IY","@stdlib/constants-float64-exponent-bias":"0IZ","@stdlib/constants/float64/fourth-pi":"0Ia","@stdlib/constants-float64-fourth-pi":"0Ib","@stdlib/constants/float64/fourth-root-eps":"0Ic","@stdlib/constants-float64-fourth-root-eps":"0Id","@stdlib/constants/float64/gamma-lanczos-g":"0Ie","@stdlib/constants-float64-gamma-lanczos-g":"0If","@stdlib/constants/float64/glaisher-kinkelin":"0Ig","@stdlib/constants-float64-glaisher-kinkelin":"0Ih","@stdlib/constants/float64/half-ln-two":"0Ii","@stdlib/constants-float64-half-ln-two":"0Ij","@stdlib/constants/float64/half-pi":"0Ik","@stdlib/constants-float64-half-pi":"0Il","@stdlib/constants/float64/high-word-exponent-mask":"0Im","@stdlib/constants-float64-high-word-exponent-mask":"0In","@stdlib/constants/float64/high-word-significand-mask":"0Io","@stdlib/constants-float64-high-word-significand-mask":"0Ip","@stdlib/constants/float64/ln-half":"0Iq","@stdlib/constants-float64-ln-half":"0Ir","@stdlib/constants/float64/ln-pi":"0Is","@stdlib/constants-float64-ln-pi":"0It","@stdlib/constants/float64/ln-sqrt-two-pi":"0Iu","@stdlib/constants-float64-ln-sqrt-two-pi":"0Iv","@stdlib/constants/float64/ln-ten":"0Iw","@stdlib/constants-float64-ln-ten":"0Ix","@stdlib/constants/float64/ln-two-pi":"0Iy","@stdlib/constants-float64-ln-two-pi":"0Iz","@stdlib/constants/float64/ln-two":"0J0","@stdlib/constants-float64-ln-two":"0J1","@stdlib/constants/float64/log10-e":"0J2","@stdlib/constants-float64-log10-e":"0J3","@stdlib/constants/float64/log2-e":"0J4","@stdlib/constants-float64-log2-e":"0J5","@stdlib/constants/float64/max-base10-exponent-subnormal":"0J6","@stdlib/constants-float64-max-base10-exponent-subnormal":"0J7","@stdlib/constants/float64/max-base10-exponent":"0J8","@stdlib/constants-float64-max-base10-exponent":"0J9","@stdlib/constants/float64/max-base2-exponent-subnormal":"0JA","@stdlib/constants-float64-max-base2-exponent-subnormal":"0JB","@stdlib/constants/float64/max-base2-exponent":"0JC","@stdlib/constants-float64-max-base2-exponent":"0JD","@stdlib/constants/float64/max-ln":"0JE","@stdlib/constants-float64-max-ln":"0JF","@stdlib/constants/float64/max-safe-fibonacci":"0JG","@stdlib/constants-float64-max-safe-fibonacci":"0JH","@stdlib/constants/float64/max-safe-integer":"0JI","@stdlib/constants-float64-max-safe-integer":"0JJ","@stdlib/constants/float64/max-safe-lucas":"0JK","@stdlib/constants-float64-max-safe-lucas":"0JL","@stdlib/constants/float64/max-safe-nth-fibonacci":"0JM","@stdlib/constants-float64-max-safe-nth-fibonacci":"0JN","@stdlib/constants/float64/max-safe-nth-lucas":"0JO","@stdlib/constants-float64-max-safe-nth-lucas":"0JP","@stdlib/constants/float64/max":"0JQ","@stdlib/constants-float64-max":"0JR","@stdlib/constants/float64/min-base10-exponent-subnormal":"0JS","@stdlib/constants-float64-min-base10-exponent-subnormal":"0JT","@stdlib/constants/float64/min-base10-exponent":"0JU","@stdlib/constants-float64-min-base10-exponent":"0JV","@stdlib/constants/float64/min-base2-exponent-subnormal":"0JW","@stdlib/constants-float64-min-base2-exponent-subnormal":"0JX","@stdlib/constants/float64/min-base2-exponent":"0JY","@stdlib/constants-float64-min-base2-exponent":"0JZ","@stdlib/constants/float64/min-ln":"0Ja","@stdlib/constants-float64-min-ln":"0Jb","@stdlib/constants/float64/min-safe-integer":"0Jc","@stdlib/constants-float64-min-safe-integer":"0Jd","@stdlib/constants/float64/ninf":"0Je","@stdlib/constants-float64-ninf":"0Jf","@stdlib/constants/float64/num-bytes":"0Jg","@stdlib/constants-float64-num-bytes":"0Jh","@stdlib/constants/float64":"0Ji","@stdlib/constants-float64":"0Jj","@stdlib/constants/float64/phi":"0Jk","@stdlib/constants-float64-phi":"0Jl","@stdlib/constants/float64/pi-squared":"0Jm","@stdlib/constants-float64-pi-squared":"0Jn","@stdlib/constants/float64/pi":"0Jo","@stdlib/constants-float64-pi":"0Jp","@stdlib/constants/float64/pinf":"0Jq","@stdlib/constants-float64-pinf":"0Jr","@stdlib/constants/float64/precision":"0Js","@stdlib/constants-float64-precision":"0Jt","@stdlib/constants/float64/smallest-normal":"0Ju","@stdlib/constants-float64-smallest-normal":"0Jv","@stdlib/constants/float64/smallest-subnormal":"0Jw","@stdlib/constants-float64-smallest-subnormal":"0Jx","@stdlib/constants/float64/sqrt-eps":"0Jy","@stdlib/constants-float64-sqrt-eps":"0Jz","@stdlib/constants/float64/sqrt-half-pi":"0K0","@stdlib/constants-float64-sqrt-half-pi":"0K1","@stdlib/constants/float64/sqrt-half":"0K2","@stdlib/constants-float64-sqrt-half":"0K3","@stdlib/constants/float64/sqrt-phi":"0K4","@stdlib/constants-float64-sqrt-phi":"0K5","@stdlib/constants/float64/sqrt-pi":"0K6","@stdlib/constants-float64-sqrt-pi":"0K7","@stdlib/constants/float64/sqrt-three":"0K8","@stdlib/constants-float64-sqrt-three":"0K9","@stdlib/constants/float64/sqrt-two-pi":"0KA","@stdlib/constants-float64-sqrt-two-pi":"0KB","@stdlib/constants/float64/sqrt-two":"0KC","@stdlib/constants-float64-sqrt-two":"0KD","@stdlib/constants/float64/two-pi":"0KE","@stdlib/constants-float64-two-pi":"0KF","@stdlib/constants/int16/max":"0KG","@stdlib/constants-int16-max":"0KH","@stdlib/constants/int16/min":"0KI","@stdlib/constants-int16-min":"0KJ","@stdlib/constants/int16/num-bytes":"0KK","@stdlib/constants-int16-num-bytes":"0KL","@stdlib/constants/int16":"0KM","@stdlib/constants-int16":"0KN","@stdlib/constants/int32/max":"0KO","@stdlib/constants-int32-max":"0KP","@stdlib/constants/int32/min":"0KQ","@stdlib/constants-int32-min":"0KR","@stdlib/constants/int32/num-bytes":"0KS","@stdlib/constants-int32-num-bytes":"0KT","@stdlib/constants/int32":"0KU","@stdlib/constants-int32":"0KV","@stdlib/constants/int8/max":"0KW","@stdlib/constants-int8-max":"0KX","@stdlib/constants/int8/min":"0KY","@stdlib/constants-int8-min":"0KZ","@stdlib/constants/int8/num-bytes":"0Ka","@stdlib/constants-int8-num-bytes":"0Kb","@stdlib/constants/int8":"0Kc","@stdlib/constants-int8":"0Kd","@stdlib/constants":"0Kf","@stdlib/constants/path/delimiter-posix":"0Kg","@stdlib/constants-path-delimiter-posix":"0Kh","@stdlib/constants/path/delimiter-win32":"0Ki","@stdlib/constants-path-delimiter-win32":"0Kj","@stdlib/constants/path/delimiter":"0Kk","@stdlib/constants-path-delimiter":"0Kl","@stdlib/constants/path":"0Km","@stdlib/constants-path":"0Kn","@stdlib/constants/path/sep-posix":"0Ko","@stdlib/constants-path-sep-posix":"0Kp","@stdlib/constants/path/sep-win32":"0Kq","@stdlib/constants-path-sep-win32":"0Kr","@stdlib/constants/path/sep":"0Ks","@stdlib/constants-path-sep":"0Kt","@stdlib/constants/time/hours-in-day":"0Ku","@stdlib/constants-time-hours-in-day":"0Kv","@stdlib/constants/time/hours-in-week":"0Kw","@stdlib/constants-time-hours-in-week":"0Kx","@stdlib/constants/time/milliseconds-in-day":"0Ky","@stdlib/constants-time-milliseconds-in-day":"0Kz","@stdlib/constants/time/milliseconds-in-hour":"0L0","@stdlib/constants-time-milliseconds-in-hour":"0L1","@stdlib/constants/time/milliseconds-in-minute":"0L2","@stdlib/constants-time-milliseconds-in-minute":"0L3","@stdlib/constants/time/milliseconds-in-second":"0L4","@stdlib/constants-time-milliseconds-in-second":"0L5","@stdlib/constants/time/milliseconds-in-week":"0L6","@stdlib/constants-time-milliseconds-in-week":"0L7","@stdlib/constants/time/minutes-in-day":"0L8","@stdlib/constants-time-minutes-in-day":"0L9","@stdlib/constants/time/minutes-in-hour":"0LA","@stdlib/constants-time-minutes-in-hour":"0LB","@stdlib/constants/time/minutes-in-week":"0LC","@stdlib/constants-time-minutes-in-week":"0LD","@stdlib/constants/time/months-in-year":"0LE","@stdlib/constants-time-months-in-year":"0LF","@stdlib/constants/time":"0LG","@stdlib/constants-time":"0LH","@stdlib/constants/time/seconds-in-day":"0LI","@stdlib/constants-time-seconds-in-day":"0LJ","@stdlib/constants/time/seconds-in-hour":"0LK","@stdlib/constants-time-seconds-in-hour":"0LL","@stdlib/constants/time/seconds-in-minute":"0LM","@stdlib/constants-time-seconds-in-minute":"0LN","@stdlib/constants/time/seconds-in-week":"0LO","@stdlib/constants-time-seconds-in-week":"0LP","@stdlib/constants/uint16/max":"0LQ","@stdlib/constants-uint16-max":"0LR","@stdlib/constants/uint16/num-bytes":"0LS","@stdlib/constants-uint16-num-bytes":"0LT","@stdlib/constants/uint16":"0LU","@stdlib/constants-uint16":"0LV","@stdlib/constants/uint32/max":"0LW","@stdlib/constants-uint32-max":"0LX","@stdlib/constants/uint32/num-bytes":"0LY","@stdlib/constants-uint32-num-bytes":"0LZ","@stdlib/constants/uint32":"0La","@stdlib/constants-uint32":"0Lb","@stdlib/constants/uint8/max":"0Lc","@stdlib/constants-uint8-max":"0Ld","@stdlib/constants/uint8/num-bytes":"0Le","@stdlib/constants-uint8-num-bytes":"0Lf","@stdlib/constants/uint8":"0Lg","@stdlib/constants-uint8":"0Lh","@stdlib/constants/unicode/max-bmp":"0Li","@stdlib/constants-unicode-max-bmp":"0Lj","@stdlib/constants/unicode/max":"0Lk","@stdlib/constants-unicode-max":"0Ll","@stdlib/constants/unicode":"0Lm","@stdlib/constants-unicode":"0Ln","@stdlib/datasets/afinn-111":"0Lo","@stdlib/datasets-afinn-111":"0Lp","@stdlib/datasets/afinn-96":"0Lq","@stdlib/datasets-afinn-96":"0Lr","@stdlib/datasets/anscombes-quartet":"0Ls","@stdlib/datasets-anscombes-quartet":"0Lt","@stdlib/datasets/berndt-cps-wages-1985":"0Lu","@stdlib/datasets-berndt-cps-wages-1985":"0Lv","@stdlib/datasets/cdc-nchs-us-births-1969-1988":"0Lw","@stdlib/datasets-cdc-nchs-us-births-1969-1988":"0Lx","@stdlib/datasets/cdc-nchs-us-births-1994-2003":"0Ly","@stdlib/datasets-cdc-nchs-us-births-1994-2003":"0Lz","@stdlib/datasets/cdc-nchs-us-infant-mortality-bw-1915-2013":"0M0","@stdlib/datasets-cdc-nchs-us-infant-mortality-bw-1915-2013":"0M1","@stdlib/datasets/cmudict":"0M2","@stdlib/datasets-cmudict":"0M3","@stdlib/datasets/dale-chall-new":"0M4","@stdlib/datasets-dale-chall-new":"0M5","@stdlib/datasets/emoji-code-picto":"0M6","@stdlib/datasets-emoji-code-picto":"0M7","@stdlib/datasets/emoji-picto-code":"0M8","@stdlib/datasets-emoji-picto-code":"0M9","@stdlib/datasets/emoji":"0MA","@stdlib/datasets-emoji":"0MB","@stdlib/datasets/female-first-names-en":"0MC","@stdlib/datasets-female-first-names-en":"0MD","@stdlib/datasets/fivethirtyeight-ffq":"0ME","@stdlib/datasets-fivethirtyeight-ffq":"0MF","@stdlib/datasets/frb-sf-wage-rigidity":"0MG","@stdlib/datasets-frb-sf-wage-rigidity":"0MH","@stdlib/datasets/harrison-boston-house-prices-corrected":"0MI","@stdlib/datasets-harrison-boston-house-prices-corrected":"0MJ","@stdlib/datasets/harrison-boston-house-prices":"0MK","@stdlib/datasets-harrison-boston-house-prices":"0ML","@stdlib/datasets/herndon-venus-semidiameters":"0MM","@stdlib/datasets-herndon-venus-semidiameters":"0MN","@stdlib/datasets/img-acanthus-mollis":"0MO","@stdlib/datasets-img-acanthus-mollis":"0MP","@stdlib/datasets/img-airplane-from-above":"0MQ","@stdlib/datasets-img-airplane-from-above":"0MR","@stdlib/datasets/img-allium-oreophilum":"0MS","@stdlib/datasets-img-allium-oreophilum":"0MT","@stdlib/datasets/img-black-canyon":"0MU","@stdlib/datasets-img-black-canyon":"0MV","@stdlib/datasets/img-dust-bowl-home":"0MW","@stdlib/datasets-img-dust-bowl-home":"0MX","@stdlib/datasets/img-french-alpine-landscape":"0MY","@stdlib/datasets-img-french-alpine-landscape":"0MZ","@stdlib/datasets/img-locomotion-house-cat":"0Ma","@stdlib/datasets-img-locomotion-house-cat":"0Mb","@stdlib/datasets/img-locomotion-nude-male":"0Mc","@stdlib/datasets-img-locomotion-nude-male":"0Md","@stdlib/datasets/img-march-pastoral":"0Me","@stdlib/datasets-img-march-pastoral":"0Mf","@stdlib/datasets/img-nagasaki-boats":"0Mg","@stdlib/datasets-img-nagasaki-boats":"0Mh","@stdlib/datasets/liu-negative-opinion-words-en":"0Mi","@stdlib/datasets-liu-negative-opinion-words-en":"0Mj","@stdlib/datasets/liu-positive-opinion-words-en":"0Mk","@stdlib/datasets-liu-positive-opinion-words-en":"0Ml","@stdlib/datasets/male-first-names-en":"0Mm","@stdlib/datasets-male-first-names-en":"0Mn","@stdlib/datasets/minard-napoleons-march":"0Mo","@stdlib/datasets-minard-napoleons-march":"0Mp","@stdlib/datasets/moby-dick":"0Mq","@stdlib/datasets-moby-dick":"0Mr","@stdlib/datasets/month-names-en":"0Ms","@stdlib/datasets-month-names-en":"0Mt","@stdlib/datasets/nightingales-rose":"0Mu","@stdlib/datasets-nightingales-rose":"0Mv","@stdlib/datasets/pace-boston-house-prices":"0Mw","@stdlib/datasets-pace-boston-house-prices":"0Mx","@stdlib/datasets":"0Mz","@stdlib/datasets/primes-100k":"0N0","@stdlib/datasets-primes-100k":"0N1","@stdlib/datasets/savoy-stopwords-fin":"0N2","@stdlib/datasets-savoy-stopwords-fin":"0N3","@stdlib/datasets/savoy-stopwords-fr":"0N4","@stdlib/datasets-savoy-stopwords-fr":"0N5","@stdlib/datasets/savoy-stopwords-ger":"0N6","@stdlib/datasets-savoy-stopwords-ger":"0N7","@stdlib/datasets/savoy-stopwords-it":"0N8","@stdlib/datasets-savoy-stopwords-it":"0N9","@stdlib/datasets/savoy-stopwords-por":"0NA","@stdlib/datasets-savoy-stopwords-por":"0NB","@stdlib/datasets/savoy-stopwords-sp":"0NC","@stdlib/datasets-savoy-stopwords-sp":"0ND","@stdlib/datasets/savoy-stopwords-swe":"0NE","@stdlib/datasets-savoy-stopwords-swe":"0NF","@stdlib/datasets/sotu":"0NG","@stdlib/datasets-sotu":"0NH","@stdlib/datasets/spache-revised":"0NI","@stdlib/datasets-spache-revised":"0NJ","@stdlib/datasets/spam-assassin":"0NK","@stdlib/datasets-spam-assassin":"0NL","@stdlib/datasets/ssa-us-births-2000-2014":"0NM","@stdlib/datasets-ssa-us-births-2000-2014":"0NN","@stdlib/datasets/standard-card-deck":"0NO","@stdlib/datasets-standard-card-deck":"0NP","@stdlib/datasets/stopwords-en":"0NQ","@stdlib/datasets-stopwords-en":"0NR","@stdlib/datasets/suthaharan-multi-hop-sensor-network":"0NS","@stdlib/datasets-suthaharan-multi-hop-sensor-network":"0NT","@stdlib/datasets/suthaharan-single-hop-sensor-network":"0NU","@stdlib/datasets-suthaharan-single-hop-sensor-network":"0NV","@stdlib/datasets/us-states-abbr":"0NW","@stdlib/datasets-us-states-abbr":"0NX","@stdlib/datasets/us-states-capitals-names":"0NY","@stdlib/datasets-us-states-capitals-names":"0NZ","@stdlib/datasets/us-states-capitals":"0Na","@stdlib/datasets-us-states-capitals":"0Nb","@stdlib/datasets/us-states-names-capitals":"0Nc","@stdlib/datasets-us-states-names-capitals":"0Nd","@stdlib/datasets/us-states-names":"0Ne","@stdlib/datasets-us-states-names":"0Nf","@stdlib/error":"0Nh","@stdlib/error/reviver":"0Ni","@stdlib/error-reviver":"0Nj","@stdlib/error/to-json":"0Nk","@stdlib/error-to-json":"0Nl","@stdlib/error/tools/database":"0Nm","@stdlib/error-tools-database":"0Nn","@stdlib/error/tools/fmtprodmsg-factory":"0No","@stdlib/error-tools-fmtprodmsg-factory":"0Np","@stdlib/error/tools/fmtprodmsg":"0Nq","@stdlib/error-tools-fmtprodmsg":"0Nr","@stdlib/error/tools/id2msg":"0Ns","@stdlib/error-tools-id2msg":"0Nt","@stdlib/error/tools/id2pkg":"0Nu","@stdlib/error-tools-id2pkg":"0Nv","@stdlib/error/tools/msg2id":"0Nw","@stdlib/error-tools-msg2id":"0Nx","@stdlib/error/tools":"0Ny","@stdlib/error-tools":"0Nz","@stdlib/error/tools/pkg2id":"0O0","@stdlib/error-tools-pkg2id":"0O1","@stdlib/fs/close":"0O2","@stdlib/fs-close":"0O3","@stdlib/fs/exists":"0O4","@stdlib/fs-exists":"0O5","@stdlib/fs/open":"0O6","@stdlib/fs-open":"0O7","@stdlib/fs":"0O9","@stdlib/fs/read-dir":"0OA","@stdlib/fs-read-dir":"0OB","@stdlib/fs/read-file-list":"0OC","@stdlib/fs-read-file-list":"0OD","@stdlib/fs/read-file":"0OE","@stdlib/fs-read-file":"0OF","@stdlib/fs/read-json":"0OG","@stdlib/fs-read-json":"0OH","@stdlib/fs/read-wasm":"0OI","@stdlib/fs-read-wasm":"0OJ","@stdlib/fs/rename":"0OK","@stdlib/fs-rename":"0OL","@stdlib/fs/resolve-parent-path-by":"0OM","@stdlib/fs-resolve-parent-path-by":"0ON","@stdlib/fs/resolve-parent-path":"0OO","@stdlib/fs-resolve-parent-path":"0OP","@stdlib/fs/unlink":"0OQ","@stdlib/fs-unlink":"0OR","@stdlib/fs/write-file":"0OS","@stdlib/fs-write-file":"0OT","@stdlib/iter/advance":"0OU","@stdlib/iter-advance":"0OV","@stdlib/iter/any-by":"0OW","@stdlib/iter-any-by":"0OX","@stdlib/iter/any":"0OY","@stdlib/iter-any":"0OZ","@stdlib/iter/concat":"0Oa","@stdlib/iter-concat":"0Ob","@stdlib/iter/constant":"0Oc","@stdlib/iter-constant":"0Od","@stdlib/iter/counter":"0Oe","@stdlib/iter-counter":"0Of","@stdlib/iter/datespace":"0Og","@stdlib/iter-datespace":"0Oh","@stdlib/iter/dedupe-by":"0Oi","@stdlib/iter-dedupe-by":"0Oj","@stdlib/iter/dedupe":"0Ok","@stdlib/iter-dedupe":"0Ol","@stdlib/iter/empty":"0Om","@stdlib/iter-empty":"0On","@stdlib/iter/every-by":"0Oo","@stdlib/iter-every-by":"0Op","@stdlib/iter/every":"0Oq","@stdlib/iter-every":"0Or","@stdlib/iter/fill":"0Os","@stdlib/iter-fill":"0Ot","@stdlib/iter/filter-map":"0Ou","@stdlib/iter-filter-map":"0Ov","@stdlib/iter/filter":"0Ow","@stdlib/iter-filter":"0Ox","@stdlib/iter/first":"0Oy","@stdlib/iter-first":"0Oz","@stdlib/iter/flow":"0P0","@stdlib/iter-flow":"0P1","@stdlib/iter/for-each":"0P2","@stdlib/iter-for-each":"0P3","@stdlib/iter/head":"0P4","@stdlib/iter-head":"0P5","@stdlib/iter/incrspace":"0P6","@stdlib/iter-incrspace":"0P7","@stdlib/iter/intersection-by-hash":"0P8","@stdlib/iter-intersection-by-hash":"0P9","@stdlib/iter/intersection":"0PA","@stdlib/iter-intersection":"0PB","@stdlib/iter/last":"0PC","@stdlib/iter-last":"0PD","@stdlib/iter/length":"0PE","@stdlib/iter-length":"0PF","@stdlib/iter/linspace":"0PG","@stdlib/iter-linspace":"0PH","@stdlib/iter/logspace":"0PI","@stdlib/iter-logspace":"0PJ","@stdlib/iter/map":"0PK","@stdlib/iter-map":"0PL","@stdlib/iter/mapn":"0PM","@stdlib/iter-mapn":"0PN","@stdlib/iter/none-by":"0PO","@stdlib/iter-none-by":"0PP","@stdlib/iter/none":"0PQ","@stdlib/iter-none":"0PR","@stdlib/iter/nth":"0PS","@stdlib/iter-nth":"0PT","@stdlib/iter":"0PV","@stdlib/iter/pipeline-thunk":"0PW","@stdlib/iter-pipeline-thunk":"0PX","@stdlib/iter/pipeline":"0PY","@stdlib/iter-pipeline":"0PZ","@stdlib/iter/pop":"0Pa","@stdlib/iter-pop":"0Pb","@stdlib/iter/push":"0Pc","@stdlib/iter-push":"0Pd","@stdlib/iter/reject":"0Pe","@stdlib/iter-reject":"0Pf","@stdlib/iter/replicate-by":"0Pg","@stdlib/iter-replicate-by":"0Ph","@stdlib/iter/replicate":"0Pi","@stdlib/iter-replicate":"0Pj","@stdlib/iter/shift":"0Pk","@stdlib/iter-shift":"0Pl","@stdlib/iter/slice":"0Pm","@stdlib/iter-slice":"0Pn","@stdlib/iter/some-by":"0Po","@stdlib/iter-some-by":"0Pp","@stdlib/iter/some":"0Pq","@stdlib/iter-some":"0Pr","@stdlib/iter/step":"0Ps","@stdlib/iter-step":"0Pt","@stdlib/iter/strided-by":"0Pu","@stdlib/iter-strided-by":"0Pv","@stdlib/iter/strided":"0Pw","@stdlib/iter-strided":"0Px","@stdlib/iter/to-array-view-right":"0Py","@stdlib/iter-to-array-view-right":"0Pz","@stdlib/iter/to-array-view":"0Q0","@stdlib/iter-to-array-view":"0Q1","@stdlib/iter/union":"0Q2","@stdlib/iter-union":"0Q3","@stdlib/iter/unique-by-hash":"0Q4","@stdlib/iter-unique-by-hash":"0Q5","@stdlib/iter/unique-by":"0Q6","@stdlib/iter-unique-by":"0Q7","@stdlib/iter/unique":"0Q8","@stdlib/iter-unique":"0Q9","@stdlib/iter/unitspace":"0QA","@stdlib/iter-unitspace":"0QB","@stdlib/iter/unshift":"0QC","@stdlib/iter-unshift":"0QD","@stdlib/math/base/assert/int32-is-even":"0QE","@stdlib/math-base-assert-int32-is-even":"0QF","@stdlib/math/base/assert/int32-is-odd":"0QG","@stdlib/math-base-assert-int32-is-odd":"0QH","@stdlib/math/base/assert/is-composite":"0QI","@stdlib/math-base-assert-is-composite":"0QJ","@stdlib/math/base/assert/is-coprime":"0QK","@stdlib/math-base-assert-is-coprime":"0QL","@stdlib/math/base/assert/is-even":"0QM","@stdlib/math-base-assert-is-even":"0QN","@stdlib/math/base/assert/is-finite":"0QO","@stdlib/math-base-assert-is-finite":"0QP","@stdlib/math/base/assert/is-finitef":"0QQ","@stdlib/math-base-assert-is-finitef":"0QR","@stdlib/math/base/assert/is-infinite":"0QS","@stdlib/math-base-assert-is-infinite":"0QT","@stdlib/math/base/assert/is-infinitef":"0QU","@stdlib/math-base-assert-is-infinitef":"0QV","@stdlib/math/base/assert/is-integer":"0QW","@stdlib/math-base-assert-is-integer":"0QX","@stdlib/math/base/assert/is-nan":"0QY","@stdlib/math-base-assert-is-nan":"0QZ","@stdlib/math/base/assert/is-nanf":"0Qa","@stdlib/math-base-assert-is-nanf":"0Qb","@stdlib/math/base/assert/is-negative-integer":"0Qc","@stdlib/math-base-assert-is-negative-integer":"0Qd","@stdlib/math/base/assert/is-negative-zero":"0Qe","@stdlib/math-base-assert-is-negative-zero":"0Qf","@stdlib/math/base/assert/is-negative-zerof":"0Qg","@stdlib/math-base-assert-is-negative-zerof":"0Qh","@stdlib/math/base/assert/is-nonnegative-integer":"0Qi","@stdlib/math-base-assert-is-nonnegative-integer":"0Qj","@stdlib/math/base/assert/is-nonpositive-integer":"0Qk","@stdlib/math-base-assert-is-nonpositive-integer":"0Ql","@stdlib/math/base/assert/is-odd":"0Qm","@stdlib/math-base-assert-is-odd":"0Qn","@stdlib/math/base/assert/is-positive-integer":"0Qo","@stdlib/math-base-assert-is-positive-integer":"0Qp","@stdlib/math/base/assert/is-positive-zero":"0Qq","@stdlib/math-base-assert-is-positive-zero":"0Qr","@stdlib/math/base/assert/is-positive-zerof":"0Qs","@stdlib/math-base-assert-is-positive-zerof":"0Qt","@stdlib/math/base/assert/is-prime":"0Qu","@stdlib/math-base-assert-is-prime":"0Qv","@stdlib/math/base/assert/is-probability":"0Qw","@stdlib/math-base-assert-is-probability":"0Qx","@stdlib/math/base/assert/is-safe-integer":"0Qy","@stdlib/math-base-assert-is-safe-integer":"0Qz","@stdlib/math/base/assert":"0R0","@stdlib/math-base-assert":"0R1","@stdlib/math/base/assert/uint32-is-pow2":"0R2","@stdlib/math-base-assert-uint32-is-pow2":"0R3","@stdlib/math/base/napi/binary":"0R4","@stdlib/math-base-napi-binary":"0R5","@stdlib/math/base/napi":"0R6","@stdlib/math-base-napi":"0R7","@stdlib/math/base/napi/ternary":"0R8","@stdlib/math-base-napi-ternary":"0R9","@stdlib/math/base/napi/unary":"0RA","@stdlib/math-base-napi-unary":"0RB","@stdlib/math/base/ops/add":"0RC","@stdlib/math-base-ops-add":"0RD","@stdlib/math/base/ops/addf":"0RE","@stdlib/math-base-ops-addf":"0RF","@stdlib/math/base/ops/cadd":"0RG","@stdlib/math-base-ops-cadd":"0RH","@stdlib/math/base/ops/caddf":"0RI","@stdlib/math-base-ops-caddf":"0RJ","@stdlib/math/base/ops/cdiv":"0RK","@stdlib/math-base-ops-cdiv":"0RL","@stdlib/math/base/ops/cmul":"0RM","@stdlib/math-base-ops-cmul":"0RN","@stdlib/math/base/ops/cmulf":"0RO","@stdlib/math-base-ops-cmulf":"0RP","@stdlib/math/base/ops/cneg":"0RQ","@stdlib/math-base-ops-cneg":"0RR","@stdlib/math/base/ops/csub":"0RS","@stdlib/math-base-ops-csub":"0RT","@stdlib/math/base/ops/csubf":"0RU","@stdlib/math-base-ops-csubf":"0RV","@stdlib/math/base/ops/imul":"0RW","@stdlib/math-base-ops-imul":"0RX","@stdlib/math/base/ops/imuldw":"0RY","@stdlib/math-base-ops-imuldw":"0RZ","@stdlib/math/base/ops/mul":"0Ra","@stdlib/math-base-ops-mul":"0Rb","@stdlib/math/base/ops/mulf":"0Rc","@stdlib/math-base-ops-mulf":"0Rd","@stdlib/math/base/ops":"0Re","@stdlib/math-base-ops":"0Rf","@stdlib/math/base/ops/sub":"0Rg","@stdlib/math-base-ops-sub":"0Rh","@stdlib/math/base/ops/subf":"0Ri","@stdlib/math-base-ops-subf":"0Rj","@stdlib/math/base/ops/umul":"0Rk","@stdlib/math-base-ops-umul":"0Rl","@stdlib/math/base/ops/umuldw":"0Rm","@stdlib/math-base-ops-umuldw":"0Rn","@stdlib/math/base":"0Ro","@stdlib/math-base":"0Rp","@stdlib/math/base/special/abs":"0Rq","@stdlib/math-base-special-abs":"0Rr","@stdlib/math/base/special/abs2":"0Rs","@stdlib/math-base-special-abs2":"0Rt","@stdlib/math/base/special/abs2f":"0Ru","@stdlib/math-base-special-abs2f":"0Rv","@stdlib/math/base/special/absf":"0Rw","@stdlib/math-base-special-absf":"0Rx","@stdlib/math/base/special/acos":"0Ry","@stdlib/math-base-special-acos":"0Rz","@stdlib/math/base/special/acosh":"0S0","@stdlib/math-base-special-acosh":"0S1","@stdlib/math/base/special/acot":"0S2","@stdlib/math-base-special-acot":"0S3","@stdlib/math/base/special/acoth":"0S4","@stdlib/math-base-special-acoth":"0S5","@stdlib/math/base/special/acovercos":"0S6","@stdlib/math-base-special-acovercos":"0S7","@stdlib/math/base/special/acoversin":"0S8","@stdlib/math-base-special-acoversin":"0S9","@stdlib/math/base/special/acsc":"0SA","@stdlib/math-base-special-acsc":"0SB","@stdlib/math/base/special/acsch":"0SC","@stdlib/math-base-special-acsch":"0SD","@stdlib/math/base/special/ahavercos":"0SE","@stdlib/math-base-special-ahavercos":"0SF","@stdlib/math/base/special/ahaversin":"0SG","@stdlib/math-base-special-ahaversin":"0SH","@stdlib/math/base/special/asech":"0SI","@stdlib/math-base-special-asech":"0SJ","@stdlib/math/base/special/asin":"0SK","@stdlib/math-base-special-asin":"0SL","@stdlib/math/base/special/asinh":"0SM","@stdlib/math-base-special-asinh":"0SN","@stdlib/math/base/special/atan":"0SO","@stdlib/math-base-special-atan":"0SP","@stdlib/math/base/special/atan2":"0SQ","@stdlib/math-base-special-atan2":"0SR","@stdlib/math/base/special/atanh":"0SS","@stdlib/math-base-special-atanh":"0ST","@stdlib/math/base/special/avercos":"0SU","@stdlib/math-base-special-avercos":"0SV","@stdlib/math/base/special/aversin":"0SW","@stdlib/math-base-special-aversin":"0SX","@stdlib/math/base/special/bernoulli":"0SY","@stdlib/math-base-special-bernoulli":"0SZ","@stdlib/math/base/special/besselj0":"0Sa","@stdlib/math-base-special-besselj0":"0Sb","@stdlib/math/base/special/besselj1":"0Sc","@stdlib/math-base-special-besselj1":"0Sd","@stdlib/math/base/special/bessely0":"0Se","@stdlib/math-base-special-bessely0":"0Sf","@stdlib/math/base/special/bessely1":"0Sg","@stdlib/math-base-special-bessely1":"0Sh","@stdlib/math/base/special/beta":"0Si","@stdlib/math-base-special-beta":"0Sj","@stdlib/math/base/special/betainc":"0Sk","@stdlib/math-base-special-betainc":"0Sl","@stdlib/math/base/special/betaincinv":"0Sm","@stdlib/math-base-special-betaincinv":"0Sn","@stdlib/math/base/special/betaln":"0So","@stdlib/math-base-special-betaln":"0Sp","@stdlib/math/base/special/binet":"0Sq","@stdlib/math-base-special-binet":"0Sr","@stdlib/math/base/special/binomcoef":"0Ss","@stdlib/math-base-special-binomcoef":"0St","@stdlib/math/base/special/binomcoefln":"0Su","@stdlib/math-base-special-binomcoefln":"0Sv","@stdlib/math/base/special/boxcox":"0Sw","@stdlib/math-base-special-boxcox":"0Sx","@stdlib/math/base/special/boxcox1p":"0Sy","@stdlib/math-base-special-boxcox1p":"0Sz","@stdlib/math/base/special/boxcox1pinv":"0T0","@stdlib/math-base-special-boxcox1pinv":"0T1","@stdlib/math/base/special/boxcoxinv":"0T2","@stdlib/math-base-special-boxcoxinv":"0T3","@stdlib/math/base/special/cabs":"0T4","@stdlib/math-base-special-cabs":"0T5","@stdlib/math/base/special/cabs2":"0T6","@stdlib/math-base-special-cabs2":"0T7","@stdlib/math/base/special/cabs2f":"0T8","@stdlib/math-base-special-cabs2f":"0T9","@stdlib/math/base/special/cabsf":"0TA","@stdlib/math-base-special-cabsf":"0TB","@stdlib/math/base/special/cbrt":"0TC","@stdlib/math-base-special-cbrt":"0TD","@stdlib/math/base/special/cbrtf":"0TE","@stdlib/math-base-special-cbrtf":"0TF","@stdlib/math/base/special/cceil":"0TG","@stdlib/math-base-special-cceil":"0TH","@stdlib/math/base/special/cceilf":"0TI","@stdlib/math-base-special-cceilf":"0TJ","@stdlib/math/base/special/cceiln":"0TK","@stdlib/math-base-special-cceiln":"0TL","@stdlib/math/base/special/ccis":"0TM","@stdlib/math-base-special-ccis":"0TN","@stdlib/math/base/special/ceil":"0TO","@stdlib/math-base-special-ceil":"0TP","@stdlib/math/base/special/ceil10":"0TQ","@stdlib/math-base-special-ceil10":"0TR","@stdlib/math/base/special/ceil2":"0TS","@stdlib/math-base-special-ceil2":"0TT","@stdlib/math/base/special/ceilb":"0TU","@stdlib/math-base-special-ceilb":"0TV","@stdlib/math/base/special/ceilf":"0TW","@stdlib/math-base-special-ceilf":"0TX","@stdlib/math/base/special/ceiln":"0TY","@stdlib/math-base-special-ceiln":"0TZ","@stdlib/math/base/special/ceilsd":"0Ta","@stdlib/math-base-special-ceilsd":"0Tb","@stdlib/math/base/special/cexp":"0Tc","@stdlib/math-base-special-cexp":"0Td","@stdlib/math/base/special/cflipsign":"0Te","@stdlib/math-base-special-cflipsign":"0Tf","@stdlib/math/base/special/cflipsignf":"0Tg","@stdlib/math-base-special-cflipsignf":"0Th","@stdlib/math/base/special/cfloor":"0Ti","@stdlib/math-base-special-cfloor":"0Tj","@stdlib/math/base/special/cfloorn":"0Tk","@stdlib/math-base-special-cfloorn":"0Tl","@stdlib/math/base/special/cidentity":"0Tm","@stdlib/math-base-special-cidentity":"0Tn","@stdlib/math/base/special/cidentityf":"0To","@stdlib/math-base-special-cidentityf":"0Tp","@stdlib/math/base/special/cinv":"0Tq","@stdlib/math-base-special-cinv":"0Tr","@stdlib/math/base/special/clamp":"0Ts","@stdlib/math-base-special-clamp":"0Tt","@stdlib/math/base/special/clampf":"0Tu","@stdlib/math-base-special-clampf":"0Tv","@stdlib/math/base/special/copysign":"0Tw","@stdlib/math-base-special-copysign":"0Tx","@stdlib/math/base/special/copysignf":"0Ty","@stdlib/math-base-special-copysignf":"0Tz","@stdlib/math/base/special/cos":"0U0","@stdlib/math-base-special-cos":"0U1","@stdlib/math/base/special/cosh":"0U2","@stdlib/math-base-special-cosh":"0U3","@stdlib/math/base/special/cosm1":"0U4","@stdlib/math-base-special-cosm1":"0U5","@stdlib/math/base/special/cospi":"0U6","@stdlib/math-base-special-cospi":"0U7","@stdlib/math/base/special/cot":"0U8","@stdlib/math-base-special-cot":"0U9","@stdlib/math/base/special/coth":"0UA","@stdlib/math-base-special-coth":"0UB","@stdlib/math/base/special/covercos":"0UC","@stdlib/math-base-special-covercos":"0UD","@stdlib/math/base/special/coversin":"0UE","@stdlib/math-base-special-coversin":"0UF","@stdlib/math/base/special/cphase":"0UG","@stdlib/math-base-special-cphase":"0UH","@stdlib/math/base/special/cpolar":"0UI","@stdlib/math-base-special-cpolar":"0UJ","@stdlib/math/base/special/cround":"0UK","@stdlib/math-base-special-cround":"0UL","@stdlib/math/base/special/croundn":"0UM","@stdlib/math-base-special-croundn":"0UN","@stdlib/math/base/special/csch":"0UO","@stdlib/math-base-special-csch":"0UP","@stdlib/math/base/special/csignum":"0UQ","@stdlib/math-base-special-csignum":"0UR","@stdlib/math/base/special/deg2rad":"0US","@stdlib/math-base-special-deg2rad":"0UT","@stdlib/math/base/special/deg2radf":"0UU","@stdlib/math-base-special-deg2radf":"0UV","@stdlib/math/base/special/digamma":"0UW","@stdlib/math-base-special-digamma":"0UX","@stdlib/math/base/special/dirac-delta":"0UY","@stdlib/math-base-special-dirac-delta":"0UZ","@stdlib/math/base/special/dirichlet-eta":"0Ua","@stdlib/math-base-special-dirichlet-eta":"0Ub","@stdlib/math/base/special/ellipe":"0Uc","@stdlib/math-base-special-ellipe":"0Ud","@stdlib/math/base/special/ellipk":"0Ue","@stdlib/math-base-special-ellipk":"0Uf","@stdlib/math/base/special/erf":"0Ug","@stdlib/math-base-special-erf":"0Uh","@stdlib/math/base/special/erfc":"0Ui","@stdlib/math-base-special-erfc":"0Uj","@stdlib/math/base/special/erfcinv":"0Uk","@stdlib/math-base-special-erfcinv":"0Ul","@stdlib/math/base/special/erfinv":"0Um","@stdlib/math-base-special-erfinv":"0Un","@stdlib/math/base/special/exp":"0Uo","@stdlib/math-base-special-exp":"0Up","@stdlib/math/base/special/exp10":"0Uq","@stdlib/math-base-special-exp10":"0Ur","@stdlib/math/base/special/exp2":"0Us","@stdlib/math-base-special-exp2":"0Ut","@stdlib/math/base/special/expit":"0Uu","@stdlib/math-base-special-expit":"0Uv","@stdlib/math/base/special/expm1":"0Uw","@stdlib/math-base-special-expm1":"0Ux","@stdlib/math/base/special/expm1rel":"0Uy","@stdlib/math-base-special-expm1rel":"0Uz","@stdlib/math/base/special/factorial":"0V0","@stdlib/math-base-special-factorial":"0V1","@stdlib/math/base/special/factorialln":"0V2","@stdlib/math-base-special-factorialln":"0V3","@stdlib/math/base/special/falling-factorial":"0V4","@stdlib/math-base-special-falling-factorial":"0V5","@stdlib/math/base/special/fast/abs":"0V6","@stdlib/math-base-special-fast-abs":"0V7","@stdlib/math/base/special/fast/acosh":"0V8","@stdlib/math-base-special-fast-acosh":"0V9","@stdlib/math/base/special/fast/alpha-max-plus-beta-min":"0VA","@stdlib/math-base-special-fast-alpha-max-plus-beta-min":"0VB","@stdlib/math/base/special/fast/asinh":"0VC","@stdlib/math-base-special-fast-asinh":"0VD","@stdlib/math/base/special/fast/atanh":"0VE","@stdlib/math-base-special-fast-atanh":"0VF","@stdlib/math/base/special/fast/hypot":"0VG","@stdlib/math-base-special-fast-hypot":"0VH","@stdlib/math/base/special/fast/max":"0VI","@stdlib/math-base-special-fast-max":"0VJ","@stdlib/math/base/special/fast/min":"0VK","@stdlib/math-base-special-fast-min":"0VL","@stdlib/math/base/special/fast":"0VM","@stdlib/math-base-special-fast":"0VN","@stdlib/math/base/special/fast/pow-int":"0VO","@stdlib/math-base-special-fast-pow-int":"0VP","@stdlib/math/base/special/fast/uint32-log2":"0VQ","@stdlib/math-base-special-fast-uint32-log2":"0VR","@stdlib/math/base/special/fast/uint32-sqrt":"0VS","@stdlib/math-base-special-fast-uint32-sqrt":"0VT","@stdlib/math/base/special/fibonacci-index":"0VU","@stdlib/math-base-special-fibonacci-index":"0VV","@stdlib/math/base/special/fibonacci":"0VW","@stdlib/math-base-special-fibonacci":"0VX","@stdlib/math/base/special/flipsign":"0VY","@stdlib/math-base-special-flipsign":"0VZ","@stdlib/math/base/special/flipsignf":"0Va","@stdlib/math-base-special-flipsignf":"0Vb","@stdlib/math/base/special/floor":"0Vc","@stdlib/math-base-special-floor":"0Vd","@stdlib/math/base/special/floor10":"0Ve","@stdlib/math-base-special-floor10":"0Vf","@stdlib/math/base/special/floor2":"0Vg","@stdlib/math-base-special-floor2":"0Vh","@stdlib/math/base/special/floorb":"0Vi","@stdlib/math-base-special-floorb":"0Vj","@stdlib/math/base/special/floorf":"0Vk","@stdlib/math-base-special-floorf":"0Vl","@stdlib/math/base/special/floorn":"0Vm","@stdlib/math-base-special-floorn":"0Vn","@stdlib/math/base/special/floorsd":"0Vo","@stdlib/math-base-special-floorsd":"0Vp","@stdlib/math/base/special/fresnel":"0Vq","@stdlib/math-base-special-fresnel":"0Vr","@stdlib/math/base/special/fresnelc":"0Vs","@stdlib/math-base-special-fresnelc":"0Vt","@stdlib/math/base/special/fresnels":"0Vu","@stdlib/math-base-special-fresnels":"0Vv","@stdlib/math/base/special/frexp":"0Vw","@stdlib/math-base-special-frexp":"0Vx","@stdlib/math/base/special/gamma-delta-ratio":"0Vy","@stdlib/math-base-special-gamma-delta-ratio":"0Vz","@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled":"0W0","@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled":"0W1","@stdlib/math/base/special/gamma-lanczos-sum":"0W2","@stdlib/math-base-special-gamma-lanczos-sum":"0W3","@stdlib/math/base/special/gamma":"0W4","@stdlib/math-base-special-gamma":"0W5","@stdlib/math/base/special/gamma1pm1":"0W6","@stdlib/math-base-special-gamma1pm1":"0W7","@stdlib/math/base/special/gammainc":"0W8","@stdlib/math-base-special-gammainc":"0W9","@stdlib/math/base/special/gammaincinv":"0WA","@stdlib/math-base-special-gammaincinv":"0WB","@stdlib/math/base/special/gammaln":"0WC","@stdlib/math-base-special-gammaln":"0WD","@stdlib/math/base/special/gcd":"0WE","@stdlib/math-base-special-gcd":"0WF","@stdlib/math/base/special/hacovercos":"0WG","@stdlib/math-base-special-hacovercos":"0WH","@stdlib/math/base/special/hacoversin":"0WI","@stdlib/math-base-special-hacoversin":"0WJ","@stdlib/math/base/special/havercos":"0WK","@stdlib/math-base-special-havercos":"0WL","@stdlib/math/base/special/haversin":"0WM","@stdlib/math-base-special-haversin":"0WN","@stdlib/math/base/special/heaviside":"0WO","@stdlib/math-base-special-heaviside":"0WP","@stdlib/math/base/special/hypot":"0WQ","@stdlib/math-base-special-hypot":"0WR","@stdlib/math/base/special/hypotf":"0WS","@stdlib/math-base-special-hypotf":"0WT","@stdlib/math/base/special/identity":"0WU","@stdlib/math-base-special-identity":"0WV","@stdlib/math/base/special/identityf":"0WW","@stdlib/math-base-special-identityf":"0WX","@stdlib/math/base/special/inv":"0WY","@stdlib/math-base-special-inv":"0WZ","@stdlib/math/base/special/invf":"0Wa","@stdlib/math-base-special-invf":"0Wb","@stdlib/math/base/special/kernel-betainc":"0Wc","@stdlib/math-base-special-kernel-betainc":"0Wd","@stdlib/math/base/special/kernel-betaincinv":"0We","@stdlib/math-base-special-kernel-betaincinv":"0Wf","@stdlib/math/base/special/kernel-cos":"0Wg","@stdlib/math-base-special-kernel-cos":"0Wh","@stdlib/math/base/special/kernel-sin":"0Wi","@stdlib/math-base-special-kernel-sin":"0Wj","@stdlib/math/base/special/kernel-tan":"0Wk","@stdlib/math-base-special-kernel-tan":"0Wl","@stdlib/math/base/special/kronecker-delta":"0Wm","@stdlib/math-base-special-kronecker-delta":"0Wn","@stdlib/math/base/special/kronecker-deltaf":"0Wo","@stdlib/math-base-special-kronecker-deltaf":"0Wp","@stdlib/math/base/special/labs":"0Wq","@stdlib/math-base-special-labs":"0Wr","@stdlib/math/base/special/lcm":"0Ws","@stdlib/math-base-special-lcm":"0Wt","@stdlib/math/base/special/ldexp":"0Wu","@stdlib/math-base-special-ldexp":"0Wv","@stdlib/math/base/special/ln":"0Ww","@stdlib/math-base-special-ln":"0Wx","@stdlib/math/base/special/log":"0Wy","@stdlib/math-base-special-log":"0Wz","@stdlib/math/base/special/log10":"0X0","@stdlib/math-base-special-log10":"0X1","@stdlib/math/base/special/log1mexp":"0X2","@stdlib/math-base-special-log1mexp":"0X3","@stdlib/math/base/special/log1p":"0X4","@stdlib/math-base-special-log1p":"0X5","@stdlib/math/base/special/log1pexp":"0X6","@stdlib/math-base-special-log1pexp":"0X7","@stdlib/math/base/special/log2":"0X8","@stdlib/math-base-special-log2":"0X9","@stdlib/math/base/special/logaddexp":"0XA","@stdlib/math-base-special-logaddexp":"0XB","@stdlib/math/base/special/logit":"0XC","@stdlib/math-base-special-logit":"0XD","@stdlib/math/base/special/lucas":"0XE","@stdlib/math-base-special-lucas":"0XF","@stdlib/math/base/special/max":"0XG","@stdlib/math-base-special-max":"0XH","@stdlib/math/base/special/maxabs":"0XI","@stdlib/math-base-special-maxabs":"0XJ","@stdlib/math/base/special/min":"0XK","@stdlib/math-base-special-min":"0XL","@stdlib/math/base/special/minabs":"0XM","@stdlib/math-base-special-minabs":"0XN","@stdlib/math/base/special/minmax":"0XO","@stdlib/math-base-special-minmax":"0XP","@stdlib/math/base/special/minmaxabs":"0XQ","@stdlib/math-base-special-minmaxabs":"0XR","@stdlib/math/base/special/modf":"0XS","@stdlib/math-base-special-modf":"0XT","@stdlib/math/base/special/negafibonacci":"0XU","@stdlib/math-base-special-negafibonacci":"0XV","@stdlib/math/base/special/negalucas":"0XW","@stdlib/math-base-special-negalucas":"0XX","@stdlib/math/base/special/nonfibonacci":"0XY","@stdlib/math-base-special-nonfibonacci":"0XZ","@stdlib/math/base/special":"0Xa","@stdlib/math-base-special":"0Xb","@stdlib/math/base/special/pdiff":"0Xc","@stdlib/math-base-special-pdiff":"0Xd","@stdlib/math/base/special/pdifff":"0Xe","@stdlib/math-base-special-pdifff":"0Xf","@stdlib/math/base/special/polygamma":"0Xg","@stdlib/math-base-special-polygamma":"0Xh","@stdlib/math/base/special/pow":"0Xi","@stdlib/math-base-special-pow":"0Xj","@stdlib/math/base/special/powm1":"0Xk","@stdlib/math-base-special-powm1":"0Xl","@stdlib/math/base/special/rad2deg":"0Xm","@stdlib/math-base-special-rad2deg":"0Xn","@stdlib/math/base/special/ramp":"0Xo","@stdlib/math-base-special-ramp":"0Xp","@stdlib/math/base/special/rampf":"0Xq","@stdlib/math-base-special-rampf":"0Xr","@stdlib/math/base/special/rempio2":"0Xs","@stdlib/math-base-special-rempio2":"0Xt","@stdlib/math/base/special/riemann-zeta":"0Xu","@stdlib/math-base-special-riemann-zeta":"0Xv","@stdlib/math/base/special/rising-factorial":"0Xw","@stdlib/math-base-special-rising-factorial":"0Xx","@stdlib/math/base/special/round":"0Xy","@stdlib/math-base-special-round":"0Xz","@stdlib/math/base/special/round10":"0Y0","@stdlib/math-base-special-round10":"0Y1","@stdlib/math/base/special/round2":"0Y2","@stdlib/math-base-special-round2":"0Y3","@stdlib/math/base/special/roundb":"0Y4","@stdlib/math-base-special-roundb":"0Y5","@stdlib/math/base/special/roundn":"0Y6","@stdlib/math-base-special-roundn":"0Y7","@stdlib/math/base/special/roundsd":"0Y8","@stdlib/math-base-special-roundsd":"0Y9","@stdlib/math/base/special/rsqrt":"0YA","@stdlib/math-base-special-rsqrt":"0YB","@stdlib/math/base/special/rsqrtf":"0YC","@stdlib/math-base-special-rsqrtf":"0YD","@stdlib/math/base/special/sici":"0YE","@stdlib/math-base-special-sici":"0YF","@stdlib/math/base/special/signum":"0YG","@stdlib/math-base-special-signum":"0YH","@stdlib/math/base/special/signumf":"0YI","@stdlib/math-base-special-signumf":"0YJ","@stdlib/math/base/special/sin":"0YK","@stdlib/math-base-special-sin":"0YL","@stdlib/math/base/special/sinc":"0YM","@stdlib/math-base-special-sinc":"0YN","@stdlib/math/base/special/sincos":"0YO","@stdlib/math-base-special-sincos":"0YP","@stdlib/math/base/special/sincospi":"0YQ","@stdlib/math-base-special-sincospi":"0YR","@stdlib/math/base/special/sinh":"0YS","@stdlib/math-base-special-sinh":"0YT","@stdlib/math/base/special/sinpi":"0YU","@stdlib/math-base-special-sinpi":"0YV","@stdlib/math/base/special/spence":"0YW","@stdlib/math-base-special-spence":"0YX","@stdlib/math/base/special/sqrt":"0YY","@stdlib/math-base-special-sqrt":"0YZ","@stdlib/math/base/special/sqrt1pm1":"0Ya","@stdlib/math-base-special-sqrt1pm1":"0Yb","@stdlib/math/base/special/sqrtf":"0Yc","@stdlib/math-base-special-sqrtf":"0Yd","@stdlib/math/base/special/tan":"0Ye","@stdlib/math-base-special-tan":"0Yf","@stdlib/math/base/special/tanh":"0Yg","@stdlib/math-base-special-tanh":"0Yh","@stdlib/math/base/special/tribonacci":"0Yi","@stdlib/math-base-special-tribonacci":"0Yj","@stdlib/math/base/special/trigamma":"0Yk","@stdlib/math-base-special-trigamma":"0Yl","@stdlib/math/base/special/trunc":"0Ym","@stdlib/math-base-special-trunc":"0Yn","@stdlib/math/base/special/trunc10":"0Yo","@stdlib/math-base-special-trunc10":"0Yp","@stdlib/math/base/special/trunc2":"0Yq","@stdlib/math-base-special-trunc2":"0Yr","@stdlib/math/base/special/truncb":"0Ys","@stdlib/math-base-special-truncb":"0Yt","@stdlib/math/base/special/truncf":"0Yu","@stdlib/math-base-special-truncf":"0Yv","@stdlib/math/base/special/truncn":"0Yw","@stdlib/math-base-special-truncn":"0Yx","@stdlib/math/base/special/truncsd":"0Yy","@stdlib/math-base-special-truncsd":"0Yz","@stdlib/math/base/special/vercos":"0Z0","@stdlib/math-base-special-vercos":"0Z1","@stdlib/math/base/special/versin":"0Z2","@stdlib/math-base-special-versin":"0Z3","@stdlib/math/base/special/wrap":"0Z4","@stdlib/math-base-special-wrap":"0Z5","@stdlib/math/base/special/xlog1py":"0Z6","@stdlib/math-base-special-xlog1py":"0Z7","@stdlib/math/base/special/xlogy":"0Z8","@stdlib/math-base-special-xlogy":"0Z9","@stdlib/math/base/tools/continued-fraction":"0ZA","@stdlib/math-base-tools-continued-fraction":"0ZB","@stdlib/math/base/tools/evalpoly-compile":"0ZC","@stdlib/math-base-tools-evalpoly-compile":"0ZD","@stdlib/math/base/tools/evalpoly":"0ZE","@stdlib/math-base-tools-evalpoly":"0ZF","@stdlib/math/base/tools/evalrational-compile":"0ZG","@stdlib/math-base-tools-evalrational-compile":"0ZH","@stdlib/math/base/tools/evalrational":"0ZI","@stdlib/math-base-tools-evalrational":"0ZJ","@stdlib/math/base/tools/fibpoly":"0ZK","@stdlib/math-base-tools-fibpoly":"0ZL","@stdlib/math/base/tools/hermitepoly":"0ZM","@stdlib/math-base-tools-hermitepoly":"0ZN","@stdlib/math/base/tools/lucaspoly":"0ZO","@stdlib/math-base-tools-lucaspoly":"0ZP","@stdlib/math/base/tools/normhermitepoly":"0ZQ","@stdlib/math-base-tools-normhermitepoly":"0ZR","@stdlib/math/base/tools":"0ZS","@stdlib/math-base-tools":"0ZT","@stdlib/math/base/tools/sum-series":"0ZU","@stdlib/math-base-tools-sum-series":"0ZV","@stdlib/math/base/utils/absolute-difference":"0ZW","@stdlib/math-base-utils-absolute-difference":"0ZX","@stdlib/math/base/utils/float64-epsilon-difference":"0ZY","@stdlib/math-base-utils-float64-epsilon-difference":"0ZZ","@stdlib/math/base/utils":"0Za","@stdlib/math-base-utils":"0Zb","@stdlib/math/base/utils/relative-difference":"0Zc","@stdlib/math-base-utils-relative-difference":"0Zd","@stdlib/math/iter/ops/add":"0Ze","@stdlib/math-iter-ops-add":"0Zf","@stdlib/math/iter/ops/divide":"0Zg","@stdlib/math-iter-ops-divide":"0Zh","@stdlib/math/iter/ops/mod":"0Zi","@stdlib/math-iter-ops-mod":"0Zj","@stdlib/math/iter/ops/multiply":"0Zk","@stdlib/math-iter-ops-multiply":"0Zl","@stdlib/math/iter/ops":"0Zm","@stdlib/math-iter-ops":"0Zn","@stdlib/math/iter/ops/subtract":"0Zo","@stdlib/math-iter-ops-subtract":"0Zp","@stdlib/math/iter":"0Zq","@stdlib/math-iter":"0Zr","@stdlib/math/iter/sequences/composites":"0Zs","@stdlib/math-iter-sequences-composites":"0Zt","@stdlib/math/iter/sequences/continued-fraction":"0Zu","@stdlib/math-iter-sequences-continued-fraction":"0Zv","@stdlib/math/iter/sequences/cubes":"0Zw","@stdlib/math-iter-sequences-cubes":"0Zx","@stdlib/math/iter/sequences/even-integers":"0Zy","@stdlib/math-iter-sequences-even-integers":"0Zz","@stdlib/math/iter/sequences/factorials":"0a0","@stdlib/math-iter-sequences-factorials":"0a1","@stdlib/math/iter/sequences/fibonacci":"0a2","@stdlib/math-iter-sequences-fibonacci":"0a3","@stdlib/math/iter/sequences/fifth-powers":"0a4","@stdlib/math-iter-sequences-fifth-powers":"0a5","@stdlib/math/iter/sequences/fourth-powers":"0a6","@stdlib/math-iter-sequences-fourth-powers":"0a7","@stdlib/math/iter/sequences/integers":"0a8","@stdlib/math-iter-sequences-integers":"0a9","@stdlib/math/iter/sequences/lucas":"0aA","@stdlib/math-iter-sequences-lucas":"0aB","@stdlib/math/iter/sequences/negafibonacci":"0aC","@stdlib/math-iter-sequences-negafibonacci":"0aD","@stdlib/math/iter/sequences/negalucas":"0aE","@stdlib/math-iter-sequences-negalucas":"0aF","@stdlib/math/iter/sequences/negative-even-integers":"0aG","@stdlib/math-iter-sequences-negative-even-integers":"0aH","@stdlib/math/iter/sequences/negative-integers":"0aI","@stdlib/math-iter-sequences-negative-integers":"0aJ","@stdlib/math/iter/sequences/negative-odd-integers":"0aK","@stdlib/math-iter-sequences-negative-odd-integers":"0aL","@stdlib/math/iter/sequences/nonfibonacci":"0aM","@stdlib/math-iter-sequences-nonfibonacci":"0aN","@stdlib/math/iter/sequences/nonnegative-even-integers":"0aO","@stdlib/math-iter-sequences-nonnegative-even-integers":"0aP","@stdlib/math/iter/sequences/nonnegative-integers":"0aQ","@stdlib/math-iter-sequences-nonnegative-integers":"0aR","@stdlib/math/iter/sequences/nonpositive-even-integers":"0aS","@stdlib/math-iter-sequences-nonpositive-even-integers":"0aT","@stdlib/math/iter/sequences/nonpositive-integers":"0aU","@stdlib/math-iter-sequences-nonpositive-integers":"0aV","@stdlib/math/iter/sequences/nonsquares":"0aW","@stdlib/math-iter-sequences-nonsquares":"0aX","@stdlib/math/iter/sequences/odd-integers":"0aY","@stdlib/math-iter-sequences-odd-integers":"0aZ","@stdlib/math/iter/sequences":"0aa","@stdlib/math-iter-sequences":"0ab","@stdlib/math/iter/sequences/positive-even-integers":"0ac","@stdlib/math-iter-sequences-positive-even-integers":"0ad","@stdlib/math/iter/sequences/positive-integers":"0ae","@stdlib/math-iter-sequences-positive-integers":"0af","@stdlib/math/iter/sequences/positive-odd-integers":"0ag","@stdlib/math-iter-sequences-positive-odd-integers":"0ah","@stdlib/math/iter/sequences/primes":"0ai","@stdlib/math-iter-sequences-primes":"0aj","@stdlib/math/iter/sequences/squared-triangular":"0ak","@stdlib/math-iter-sequences-squared-triangular":"0al","@stdlib/math/iter/sequences/squares":"0am","@stdlib/math-iter-sequences-squares":"0an","@stdlib/math/iter/sequences/triangular":"0ao","@stdlib/math-iter-sequences-triangular":"0ap","@stdlib/math/iter/special/abs":"0aq","@stdlib/math-iter-special-abs":"0ar","@stdlib/math/iter/special/abs2":"0as","@stdlib/math-iter-special-abs2":"0at","@stdlib/math/iter/special/acos":"0au","@stdlib/math-iter-special-acos":"0av","@stdlib/math/iter/special/acosh":"0aw","@stdlib/math-iter-special-acosh":"0ax","@stdlib/math/iter/special/acot":"0ay","@stdlib/math-iter-special-acot":"0az","@stdlib/math/iter/special/acoth":"0b0","@stdlib/math-iter-special-acoth":"0b1","@stdlib/math/iter/special/acovercos":"0b2","@stdlib/math-iter-special-acovercos":"0b3","@stdlib/math/iter/special/acoversin":"0b4","@stdlib/math-iter-special-acoversin":"0b5","@stdlib/math/iter/special/ahavercos":"0b6","@stdlib/math-iter-special-ahavercos":"0b7","@stdlib/math/iter/special/ahaversin":"0b8","@stdlib/math-iter-special-ahaversin":"0b9","@stdlib/math/iter/special/asin":"0bA","@stdlib/math-iter-special-asin":"0bB","@stdlib/math/iter/special/asinh":"0bC","@stdlib/math-iter-special-asinh":"0bD","@stdlib/math/iter/special/atan":"0bE","@stdlib/math-iter-special-atan":"0bF","@stdlib/math/iter/special/atan2":"0bG","@stdlib/math-iter-special-atan2":"0bH","@stdlib/math/iter/special/atanh":"0bI","@stdlib/math-iter-special-atanh":"0bJ","@stdlib/math/iter/special/avercos":"0bK","@stdlib/math-iter-special-avercos":"0bL","@stdlib/math/iter/special/aversin":"0bM","@stdlib/math-iter-special-aversin":"0bN","@stdlib/math/iter/special/besselj0":"0bO","@stdlib/math-iter-special-besselj0":"0bP","@stdlib/math/iter/special/besselj1":"0bQ","@stdlib/math-iter-special-besselj1":"0bR","@stdlib/math/iter/special/bessely0":"0bS","@stdlib/math-iter-special-bessely0":"0bT","@stdlib/math/iter/special/bessely1":"0bU","@stdlib/math-iter-special-bessely1":"0bV","@stdlib/math/iter/special/beta":"0bW","@stdlib/math-iter-special-beta":"0bX","@stdlib/math/iter/special/betaln":"0bY","@stdlib/math-iter-special-betaln":"0bZ","@stdlib/math/iter/special/binet":"0ba","@stdlib/math-iter-special-binet":"0bb","@stdlib/math/iter/special/cbrt":"0bc","@stdlib/math-iter-special-cbrt":"0bd","@stdlib/math/iter/special/ceil":"0be","@stdlib/math-iter-special-ceil":"0bf","@stdlib/math/iter/special/ceil10":"0bg","@stdlib/math-iter-special-ceil10":"0bh","@stdlib/math/iter/special/ceil2":"0bi","@stdlib/math-iter-special-ceil2":"0bj","@stdlib/math/iter/special/cos":"0bk","@stdlib/math-iter-special-cos":"0bl","@stdlib/math/iter/special/cosh":"0bm","@stdlib/math-iter-special-cosh":"0bn","@stdlib/math/iter/special/cosm1":"0bo","@stdlib/math-iter-special-cosm1":"0bp","@stdlib/math/iter/special/cospi":"0bq","@stdlib/math-iter-special-cospi":"0br","@stdlib/math/iter/special/covercos":"0bs","@stdlib/math-iter-special-covercos":"0bt","@stdlib/math/iter/special/coversin":"0bu","@stdlib/math-iter-special-coversin":"0bv","@stdlib/math/iter/special/deg2rad":"0bw","@stdlib/math-iter-special-deg2rad":"0bx","@stdlib/math/iter/special/digamma":"0by","@stdlib/math-iter-special-digamma":"0bz","@stdlib/math/iter/special/dirac-delta":"0c0","@stdlib/math-iter-special-dirac-delta":"0c1","@stdlib/math/iter/special/dirichlet-eta":"0c2","@stdlib/math-iter-special-dirichlet-eta":"0c3","@stdlib/math/iter/special/ellipe":"0c4","@stdlib/math-iter-special-ellipe":"0c5","@stdlib/math/iter/special/ellipk":"0c6","@stdlib/math-iter-special-ellipk":"0c7","@stdlib/math/iter/special/erf":"0c8","@stdlib/math-iter-special-erf":"0c9","@stdlib/math/iter/special/erfc":"0cA","@stdlib/math-iter-special-erfc":"0cB","@stdlib/math/iter/special/erfcinv":"0cC","@stdlib/math-iter-special-erfcinv":"0cD","@stdlib/math/iter/special/erfinv":"0cE","@stdlib/math-iter-special-erfinv":"0cF","@stdlib/math/iter/special/exp":"0cG","@stdlib/math-iter-special-exp":"0cH","@stdlib/math/iter/special/exp10":"0cI","@stdlib/math-iter-special-exp10":"0cJ","@stdlib/math/iter/special/exp2":"0cK","@stdlib/math-iter-special-exp2":"0cL","@stdlib/math/iter/special/expit":"0cM","@stdlib/math-iter-special-expit":"0cN","@stdlib/math/iter/special/expm1":"0cO","@stdlib/math-iter-special-expm1":"0cP","@stdlib/math/iter/special/expm1rel":"0cQ","@stdlib/math-iter-special-expm1rel":"0cR","@stdlib/math/iter/special/factorial":"0cS","@stdlib/math-iter-special-factorial":"0cT","@stdlib/math/iter/special/factorialln":"0cU","@stdlib/math-iter-special-factorialln":"0cV","@stdlib/math/iter/special/floor":"0cW","@stdlib/math-iter-special-floor":"0cX","@stdlib/math/iter/special/floor10":"0cY","@stdlib/math-iter-special-floor10":"0cZ","@stdlib/math/iter/special/floor2":"0ca","@stdlib/math-iter-special-floor2":"0cb","@stdlib/math/iter/special/fresnelc":"0cc","@stdlib/math-iter-special-fresnelc":"0cd","@stdlib/math/iter/special/fresnels":"0ce","@stdlib/math-iter-special-fresnels":"0cf","@stdlib/math/iter/special/gamma":"0cg","@stdlib/math-iter-special-gamma":"0ch","@stdlib/math/iter/special/gamma1pm1":"0ci","@stdlib/math-iter-special-gamma1pm1":"0cj","@stdlib/math/iter/special/gammaln":"0ck","@stdlib/math-iter-special-gammaln":"0cl","@stdlib/math/iter/special/hacovercos":"0cm","@stdlib/math-iter-special-hacovercos":"0cn","@stdlib/math/iter/special/hacoversin":"0co","@stdlib/math-iter-special-hacoversin":"0cp","@stdlib/math/iter/special/havercos":"0cq","@stdlib/math-iter-special-havercos":"0cr","@stdlib/math/iter/special/haversin":"0cs","@stdlib/math-iter-special-haversin":"0ct","@stdlib/math/iter/special/inv":"0cu","@stdlib/math-iter-special-inv":"0cv","@stdlib/math/iter/special/ln":"0cw","@stdlib/math-iter-special-ln":"0cx","@stdlib/math/iter/special/log":"0cy","@stdlib/math-iter-special-log":"0cz","@stdlib/math/iter/special/log10":"0d0","@stdlib/math-iter-special-log10":"0d1","@stdlib/math/iter/special/log1mexp":"0d2","@stdlib/math-iter-special-log1mexp":"0d3","@stdlib/math/iter/special/log1p":"0d4","@stdlib/math-iter-special-log1p":"0d5","@stdlib/math/iter/special/log1pexp":"0d6","@stdlib/math-iter-special-log1pexp":"0d7","@stdlib/math/iter/special/log2":"0d8","@stdlib/math-iter-special-log2":"0d9","@stdlib/math/iter/special/logit":"0dA","@stdlib/math-iter-special-logit":"0dB","@stdlib/math/iter/special":"0dC","@stdlib/math-iter-special":"0dD","@stdlib/math/iter/special/pow":"0dE","@stdlib/math-iter-special-pow":"0dF","@stdlib/math/iter/special/rad2deg":"0dG","@stdlib/math-iter-special-rad2deg":"0dH","@stdlib/math/iter/special/ramp":"0dI","@stdlib/math-iter-special-ramp":"0dJ","@stdlib/math/iter/special/riemann-zeta":"0dK","@stdlib/math-iter-special-riemann-zeta":"0dL","@stdlib/math/iter/special/round":"0dM","@stdlib/math-iter-special-round":"0dN","@stdlib/math/iter/special/round10":"0dO","@stdlib/math-iter-special-round10":"0dP","@stdlib/math/iter/special/round2":"0dQ","@stdlib/math-iter-special-round2":"0dR","@stdlib/math/iter/special/rsqrt":"0dS","@stdlib/math-iter-special-rsqrt":"0dT","@stdlib/math/iter/special/signum":"0dU","@stdlib/math-iter-special-signum":"0dV","@stdlib/math/iter/special/sin":"0dW","@stdlib/math-iter-special-sin":"0dX","@stdlib/math/iter/special/sinc":"0dY","@stdlib/math-iter-special-sinc":"0dZ","@stdlib/math/iter/special/sinh":"0da","@stdlib/math-iter-special-sinh":"0db","@stdlib/math/iter/special/sinpi":"0dc","@stdlib/math-iter-special-sinpi":"0dd","@stdlib/math/iter/special/spence":"0de","@stdlib/math-iter-special-spence":"0df","@stdlib/math/iter/special/sqrt":"0dg","@stdlib/math-iter-special-sqrt":"0dh","@stdlib/math/iter/special/sqrt1pm1":"0di","@stdlib/math-iter-special-sqrt1pm1":"0dj","@stdlib/math/iter/special/tan":"0dk","@stdlib/math-iter-special-tan":"0dl","@stdlib/math/iter/special/tanh":"0dm","@stdlib/math-iter-special-tanh":"0dn","@stdlib/math/iter/special/trigamma":"0do","@stdlib/math-iter-special-trigamma":"0dp","@stdlib/math/iter/special/trunc":"0dq","@stdlib/math-iter-special-trunc":"0dr","@stdlib/math/iter/special/trunc10":"0ds","@stdlib/math-iter-special-trunc10":"0dt","@stdlib/math/iter/special/trunc2":"0du","@stdlib/math-iter-special-trunc2":"0dv","@stdlib/math/iter/special/vercos":"0dw","@stdlib/math-iter-special-vercos":"0dx","@stdlib/math/iter/special/versin":"0dy","@stdlib/math-iter-special-versin":"0dz","@stdlib/math/iter/tools/map":"0e0","@stdlib/math-iter-tools-map":"0e1","@stdlib/math/iter/tools/map2":"0e2","@stdlib/math-iter-tools-map2":"0e3","@stdlib/math/iter/tools/map3":"0e4","@stdlib/math-iter-tools-map3":"0e5","@stdlib/math/iter/tools":"0e6","@stdlib/math-iter-tools":"0e7","@stdlib/math/iter/utils/continued-fraction":"0e8","@stdlib/math-iter-utils-continued-fraction":"0e9","@stdlib/math/iter/utils":"0eA","@stdlib/math-iter-utils":"0eB","@stdlib/math":"0eD","@stdlib/math/special/abs":"0eE","@stdlib/math-special-abs":"0eF","@stdlib/math/special":"0eG","@stdlib/math-special":"0eH","@stdlib/math/strided/ops/add":"0eI","@stdlib/math-strided-ops-add":"0eJ","@stdlib/math/strided/ops/mul":"0eK","@stdlib/math-strided-ops-mul":"0eL","@stdlib/math/strided/ops":"0eM","@stdlib/math-strided-ops":"0eN","@stdlib/math/strided/ops/sub":"0eO","@stdlib/math-strided-ops-sub":"0eP","@stdlib/math/strided":"0eQ","@stdlib/math-strided":"0eR","@stdlib/math/strided/special/abs-by":"0eS","@stdlib/math-strided-special-abs-by":"0eT","@stdlib/math/strided/special/abs":"0eU","@stdlib/math-strided-special-abs":"0eV","@stdlib/math/strided/special/abs2-by":"0eW","@stdlib/math-strided-special-abs2-by":"0eX","@stdlib/math/strided/special/abs2":"0eY","@stdlib/math-strided-special-abs2":"0eZ","@stdlib/math/strided/special/acos-by":"0ea","@stdlib/math-strided-special-acos-by":"0eb","@stdlib/math/strided/special/acosh-by":"0ec","@stdlib/math-strided-special-acosh-by":"0ed","@stdlib/math/strided/special/acot-by":"0ee","@stdlib/math-strided-special-acot-by":"0ef","@stdlib/math/strided/special/acoth-by":"0eg","@stdlib/math-strided-special-acoth-by":"0eh","@stdlib/math/strided/special/acovercos-by":"0ei","@stdlib/math-strided-special-acovercos-by":"0ej","@stdlib/math/strided/special/acoversin-by":"0ek","@stdlib/math-strided-special-acoversin-by":"0el","@stdlib/math/strided/special/ahavercos-by":"0em","@stdlib/math-strided-special-ahavercos-by":"0en","@stdlib/math/strided/special/ahaversin-by":"0eo","@stdlib/math-strided-special-ahaversin-by":"0ep","@stdlib/math/strided/special/asin-by":"0eq","@stdlib/math-strided-special-asin-by":"0er","@stdlib/math/strided/special/asinh-by":"0es","@stdlib/math-strided-special-asinh-by":"0et","@stdlib/math/strided/special/atan-by":"0eu","@stdlib/math-strided-special-atan-by":"0ev","@stdlib/math/strided/special/atanh-by":"0ew","@stdlib/math-strided-special-atanh-by":"0ex","@stdlib/math/strided/special/avercos-by":"0ey","@stdlib/math-strided-special-avercos-by":"0ez","@stdlib/math/strided/special/aversin-by":"0f0","@stdlib/math-strided-special-aversin-by":"0f1","@stdlib/math/strided/special/besselj0-by":"0f2","@stdlib/math-strided-special-besselj0-by":"0f3","@stdlib/math/strided/special/besselj1-by":"0f4","@stdlib/math-strided-special-besselj1-by":"0f5","@stdlib/math/strided/special/bessely0-by":"0f6","@stdlib/math-strided-special-bessely0-by":"0f7","@stdlib/math/strided/special/bessely1-by":"0f8","@stdlib/math-strided-special-bessely1-by":"0f9","@stdlib/math/strided/special/binet-by":"0fA","@stdlib/math-strided-special-binet-by":"0fB","@stdlib/math/strided/special/cbrt":"0fC","@stdlib/math-strided-special-cbrt":"0fD","@stdlib/math/strided/special/ceil":"0fE","@stdlib/math-strided-special-ceil":"0fF","@stdlib/math/strided/special/dabs":"0fG","@stdlib/math-strided-special-dabs":"0fH","@stdlib/math/strided/special/dabs2":"0fI","@stdlib/math-strided-special-dabs2":"0fJ","@stdlib/math/strided/special/dcbrt":"0fK","@stdlib/math-strided-special-dcbrt":"0fL","@stdlib/math/strided/special/dceil":"0fM","@stdlib/math-strided-special-dceil":"0fN","@stdlib/math/strided/special/ddeg2rad":"0fO","@stdlib/math-strided-special-ddeg2rad":"0fP","@stdlib/math/strided/special/deg2rad":"0fQ","@stdlib/math-strided-special-deg2rad":"0fR","@stdlib/math/strided/special/dfloor":"0fS","@stdlib/math-strided-special-dfloor":"0fT","@stdlib/math/strided/special/dinv":"0fU","@stdlib/math-strided-special-dinv":"0fV","@stdlib/math/strided/special/dmskabs":"0fW","@stdlib/math-strided-special-dmskabs":"0fX","@stdlib/math/strided/special/dmskabs2":"0fY","@stdlib/math-strided-special-dmskabs2":"0fZ","@stdlib/math/strided/special/dmskcbrt":"0fa","@stdlib/math-strided-special-dmskcbrt":"0fb","@stdlib/math/strided/special/dmskceil":"0fc","@stdlib/math-strided-special-dmskceil":"0fd","@stdlib/math/strided/special/dmskdeg2rad":"0fe","@stdlib/math-strided-special-dmskdeg2rad":"0ff","@stdlib/math/strided/special/dmskfloor":"0fg","@stdlib/math-strided-special-dmskfloor":"0fh","@stdlib/math/strided/special/dmskinv":"0fi","@stdlib/math-strided-special-dmskinv":"0fj","@stdlib/math/strided/special/dmskramp":"0fk","@stdlib/math-strided-special-dmskramp":"0fl","@stdlib/math/strided/special/dmskrsqrt":"0fm","@stdlib/math-strided-special-dmskrsqrt":"0fn","@stdlib/math/strided/special/dmsksqrt":"0fo","@stdlib/math-strided-special-dmsksqrt":"0fp","@stdlib/math/strided/special/dmsktrunc":"0fq","@stdlib/math-strided-special-dmsktrunc":"0fr","@stdlib/math/strided/special/dramp":"0fs","@stdlib/math-strided-special-dramp":"0ft","@stdlib/math/strided/special/drsqrt":"0fu","@stdlib/math-strided-special-drsqrt":"0fv","@stdlib/math/strided/special/dsqrt":"0fw","@stdlib/math-strided-special-dsqrt":"0fx","@stdlib/math/strided/special/dtrunc":"0fy","@stdlib/math-strided-special-dtrunc":"0fz","@stdlib/math/strided/special/floor":"0g0","@stdlib/math-strided-special-floor":"0g1","@stdlib/math/strided/special/inv":"0g2","@stdlib/math-strided-special-inv":"0g3","@stdlib/math/strided/special":"0g4","@stdlib/math-strided-special":"0g5","@stdlib/math/strided/special/ramp":"0g6","@stdlib/math-strided-special-ramp":"0g7","@stdlib/math/strided/special/rsqrt":"0g8","@stdlib/math-strided-special-rsqrt":"0g9","@stdlib/math/strided/special/sabs":"0gA","@stdlib/math-strided-special-sabs":"0gB","@stdlib/math/strided/special/sabs2":"0gC","@stdlib/math-strided-special-sabs2":"0gD","@stdlib/math/strided/special/scbrt":"0gE","@stdlib/math-strided-special-scbrt":"0gF","@stdlib/math/strided/special/sceil":"0gG","@stdlib/math-strided-special-sceil":"0gH","@stdlib/math/strided/special/sdeg2rad":"0gI","@stdlib/math-strided-special-sdeg2rad":"0gJ","@stdlib/math/strided/special/sfloor":"0gK","@stdlib/math-strided-special-sfloor":"0gL","@stdlib/math/strided/special/sinv":"0gM","@stdlib/math-strided-special-sinv":"0gN","@stdlib/math/strided/special/smskabs":"0gO","@stdlib/math-strided-special-smskabs":"0gP","@stdlib/math/strided/special/smskabs2":"0gQ","@stdlib/math-strided-special-smskabs2":"0gR","@stdlib/math/strided/special/smskcbrt":"0gS","@stdlib/math-strided-special-smskcbrt":"0gT","@stdlib/math/strided/special/smskceil":"0gU","@stdlib/math-strided-special-smskceil":"0gV","@stdlib/math/strided/special/smskdeg2rad":"0gW","@stdlib/math-strided-special-smskdeg2rad":"0gX","@stdlib/math/strided/special/smskfloor":"0gY","@stdlib/math-strided-special-smskfloor":"0gZ","@stdlib/math/strided/special/smskinv":"0ga","@stdlib/math-strided-special-smskinv":"0gb","@stdlib/math/strided/special/smskramp":"0gc","@stdlib/math-strided-special-smskramp":"0gd","@stdlib/math/strided/special/smskrsqrt":"0ge","@stdlib/math-strided-special-smskrsqrt":"0gf","@stdlib/math/strided/special/smsksqrt":"0gg","@stdlib/math-strided-special-smsksqrt":"0gh","@stdlib/math/strided/special/smsktrunc":"0gi","@stdlib/math-strided-special-smsktrunc":"0gj","@stdlib/math/strided/special/sqrt":"0gk","@stdlib/math-strided-special-sqrt":"0gl","@stdlib/math/strided/special/sramp":"0gm","@stdlib/math-strided-special-sramp":"0gn","@stdlib/math/strided/special/srsqrt":"0go","@stdlib/math-strided-special-srsqrt":"0gp","@stdlib/math/strided/special/ssqrt":"0gq","@stdlib/math-strided-special-ssqrt":"0gr","@stdlib/math/strided/special/strunc":"0gs","@stdlib/math-strided-special-strunc":"0gt","@stdlib/math/strided/special/trunc":"0gu","@stdlib/math-strided-special-trunc":"0gv","@stdlib/math/tools":"0gw","@stdlib/math-tools":"0gx","@stdlib/math/tools/unary":"0gy","@stdlib/math-tools-unary":"0gz","@stdlib/ml/incr/binary-classification":"0h0","@stdlib/ml-incr-binary-classification":"0h1","@stdlib/ml/incr/kmeans":"0h2","@stdlib/ml-incr-kmeans":"0h3","@stdlib/ml/incr":"0h4","@stdlib/ml-incr":"0h5","@stdlib/ml/incr/sgd-regression":"0h6","@stdlib/ml-incr-sgd-regression":"0h7","@stdlib/ml":"0h9","@stdlib/namespace/alias2pkg":"0hA","@stdlib/namespace-alias2pkg":"0hB","@stdlib/namespace/alias2related":"0hC","@stdlib/namespace-alias2related":"0hD","@stdlib/namespace/alias2standalone":"0hE","@stdlib/namespace-alias2standalone":"0hF","@stdlib/namespace/aliases":"0hG","@stdlib/namespace-aliases":"0hH","@stdlib/namespace":"0hJ","@stdlib/namespace/pkg2alias":"0hK","@stdlib/namespace-pkg2alias":"0hL","@stdlib/namespace/pkg2related":"0hM","@stdlib/namespace-pkg2related":"0hN","@stdlib/namespace/pkg2standalone":"0hO","@stdlib/namespace-pkg2standalone":"0hP","@stdlib/namespace/standalone2pkg":"0hQ","@stdlib/namespace-standalone2pkg":"0hR","@stdlib/ndarray/array":"0hS","@stdlib/ndarray-array":"0hT","@stdlib/ndarray/base/assert/is-allowed-data-type-cast":"0hU","@stdlib/ndarray-base-assert-is-allowed-data-type-cast":"0hV","@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape":"0hW","@stdlib/ndarray-base-assert-is-buffer-length-compatible-shape":"0hX","@stdlib/ndarray/base/assert/is-buffer-length-compatible":"0hY","@stdlib/ndarray-base-assert-is-buffer-length-compatible":"0hZ","@stdlib/ndarray/base/assert/is-casting-mode":"0ha","@stdlib/ndarray-base-assert-is-casting-mode":"0hb","@stdlib/ndarray/base/assert/is-column-major-contiguous":"0hc","@stdlib/ndarray-base-assert-is-column-major-contiguous":"0hd","@stdlib/ndarray/base/assert/is-column-major":"0he","@stdlib/ndarray-base-assert-is-column-major":"0hf","@stdlib/ndarray/base/assert/is-contiguous":"0hg","@stdlib/ndarray-base-assert-is-contiguous":"0hh","@stdlib/ndarray/base/assert/is-data-type":"0hi","@stdlib/ndarray-base-assert-is-data-type":"0hj","@stdlib/ndarray/base/assert/is-index-mode":"0hk","@stdlib/ndarray-base-assert-is-index-mode":"0hl","@stdlib/ndarray/base/assert/is-order":"0hm","@stdlib/ndarray-base-assert-is-order":"0hn","@stdlib/ndarray/base/assert/is-read-only":"0ho","@stdlib/ndarray-base-assert-is-read-only":"0hp","@stdlib/ndarray/base/assert/is-row-major-contiguous":"0hq","@stdlib/ndarray-base-assert-is-row-major-contiguous":"0hr","@stdlib/ndarray/base/assert/is-row-major":"0hs","@stdlib/ndarray-base-assert-is-row-major":"0ht","@stdlib/ndarray/base/assert/is-safe-data-type-cast":"0hu","@stdlib/ndarray-base-assert-is-safe-data-type-cast":"0hv","@stdlib/ndarray/base/assert/is-same-kind-data-type-cast":"0hw","@stdlib/ndarray-base-assert-is-same-kind-data-type-cast":"0hx","@stdlib/ndarray/base/assert/is-single-segment-compatible":"0hy","@stdlib/ndarray-base-assert-is-single-segment-compatible":"0hz","@stdlib/ndarray/base/assert":"0i0","@stdlib/ndarray-base-assert":"0i1","@stdlib/ndarray/base/bind2vind":"0i2","@stdlib/ndarray-base-bind2vind":"0i3","@stdlib/ndarray/base/broadcast-array":"0i4","@stdlib/ndarray-base-broadcast-array":"0i5","@stdlib/ndarray/base/broadcast-shapes":"0i6","@stdlib/ndarray-base-broadcast-shapes":"0i7","@stdlib/ndarray/base/buffer-ctors":"0i8","@stdlib/ndarray-base-buffer-ctors":"0i9","@stdlib/ndarray/base/buffer-dtype-enum":"0iA","@stdlib/ndarray-base-buffer-dtype-enum":"0iB","@stdlib/ndarray/base/buffer-dtype":"0iC","@stdlib/ndarray-base-buffer-dtype":"0iD","@stdlib/ndarray/base/buffer":"0iE","@stdlib/ndarray-base-buffer":"0iF","@stdlib/ndarray/base/bytes-per-element":"0iG","@stdlib/ndarray-base-bytes-per-element":"0iH","@stdlib/ndarray/base/char2dtype":"0iI","@stdlib/ndarray-base-char2dtype":"0iJ","@stdlib/ndarray/base/clamp-index":"0iK","@stdlib/ndarray-base-clamp-index":"0iL","@stdlib/ndarray/base/ctor":"0iM","@stdlib/ndarray-base-ctor":"0iN","@stdlib/ndarray/base/dtype-char":"0iO","@stdlib/ndarray-base-dtype-char":"0iP","@stdlib/ndarray/base/dtype-desc":"0iQ","@stdlib/ndarray-base-dtype-desc":"0iR","@stdlib/ndarray/base/dtype-enum2str":"0iS","@stdlib/ndarray-base-dtype-enum2str":"0iT","@stdlib/ndarray/base/dtype-resolve-enum":"0iU","@stdlib/ndarray-base-dtype-resolve-enum":"0iV","@stdlib/ndarray/base/dtype-resolve-str":"0iW","@stdlib/ndarray-base-dtype-resolve-str":"0iX","@stdlib/ndarray/base/dtype-str2enum":"0iY","@stdlib/ndarray-base-dtype-str2enum":"0iZ","@stdlib/ndarray/base/dtype2c":"0ia","@stdlib/ndarray-base-dtype2c":"0ib","@stdlib/ndarray/base/dtypes2signatures":"0ic","@stdlib/ndarray-base-dtypes2signatures":"0id","@stdlib/ndarray/base/expand-dimensions":"0ie","@stdlib/ndarray-base-expand-dimensions":"0if","@stdlib/ndarray/base/from-scalar":"0ig","@stdlib/ndarray-base-from-scalar":"0ih","@stdlib/ndarray/base/function-object":"0ii","@stdlib/ndarray-base-function-object":"0ij","@stdlib/ndarray/base/ind":"0ik","@stdlib/ndarray-base-ind":"0il","@stdlib/ndarray/base/ind2sub":"0im","@stdlib/ndarray-base-ind2sub":"0in","@stdlib/ndarray/base/iteration-order":"0io","@stdlib/ndarray-base-iteration-order":"0ip","@stdlib/ndarray/base/max-view-buffer-index":"0iq","@stdlib/ndarray-base-max-view-buffer-index":"0ir","@stdlib/ndarray/base/maybe-broadcast-array":"0is","@stdlib/ndarray-base-maybe-broadcast-array":"0it","@stdlib/ndarray/base/meta-data-props":"0iu","@stdlib/ndarray-base-meta-data-props":"0iv","@stdlib/ndarray/base/min-view-buffer-index":"0iw","@stdlib/ndarray-base-min-view-buffer-index":"0ix","@stdlib/ndarray/base/minmax-view-buffer-index":"0iy","@stdlib/ndarray-base-minmax-view-buffer-index":"0iz","@stdlib/ndarray/base/napi/addon-arguments":"0j0","@stdlib/ndarray-base-napi-addon-arguments":"0j1","@stdlib/ndarray/base/napi/dtype-string-to-dtype":"0j2","@stdlib/ndarray-base-napi-dtype-string-to-dtype":"0j3","@stdlib/ndarray/base/napi":"0j4","@stdlib/ndarray-base-napi":"0j5","@stdlib/ndarray/base/napi/typedarray-type-to-dtype":"0j6","@stdlib/ndarray-base-napi-typedarray-type-to-dtype":"0j7","@stdlib/ndarray/base/napi/unary":"0j8","@stdlib/ndarray-base-napi-unary":"0j9","@stdlib/ndarray/base/ndarraylike2object":"0jA","@stdlib/ndarray-base-ndarraylike2object":"0jB","@stdlib/ndarray/base/nonsingleton-dimensions":"0jC","@stdlib/ndarray-base-nonsingleton-dimensions":"0jD","@stdlib/ndarray/base/numel":"0jE","@stdlib/ndarray-base-numel":"0jF","@stdlib/ndarray/base":"0jG","@stdlib/ndarray-base":"0jH","@stdlib/ndarray/base/prepend-singleton-dimensions":"0jI","@stdlib/ndarray-base-prepend-singleton-dimensions":"0jJ","@stdlib/ndarray/base/remove-singleton-dimensions":"0jK","@stdlib/ndarray-base-remove-singleton-dimensions":"0jL","@stdlib/ndarray/base/serialize-meta-data":"0jM","@stdlib/ndarray-base-serialize-meta-data":"0jN","@stdlib/ndarray/base/shape2strides":"0jO","@stdlib/ndarray-base-shape2strides":"0jP","@stdlib/ndarray/base/singleton-dimensions":"0jQ","@stdlib/ndarray-base-singleton-dimensions":"0jR","@stdlib/ndarray/base/strides2offset":"0jS","@stdlib/ndarray-base-strides2offset":"0jT","@stdlib/ndarray/base/strides2order":"0jU","@stdlib/ndarray-base-strides2order":"0jV","@stdlib/ndarray/base/sub2ind":"0jW","@stdlib/ndarray-base-sub2ind":"0jX","@stdlib/ndarray/base/to-array":"0jY","@stdlib/ndarray-base-to-array":"0jZ","@stdlib/ndarray/base/transpose":"0ja","@stdlib/ndarray-base-transpose":"0jb","@stdlib/ndarray/base/unary":"0jc","@stdlib/ndarray-base-unary":"0jd","@stdlib/ndarray/base/vind2bind":"0je","@stdlib/ndarray-base-vind2bind":"0jf","@stdlib/ndarray/base/wrap-index":"0jg","@stdlib/ndarray-base-wrap-index":"0jh","@stdlib/ndarray/base/zeros-like":"0ji","@stdlib/ndarray-base-zeros-like":"0jj","@stdlib/ndarray/base/zeros":"0jk","@stdlib/ndarray-base-zeros":"0jl","@stdlib/ndarray/casting-modes":"0jm","@stdlib/ndarray-casting-modes":"0jn","@stdlib/ndarray/ctor":"0jo","@stdlib/ndarray-ctor":"0jp","@stdlib/ndarray/dispatch":"0jq","@stdlib/ndarray-dispatch":"0jr","@stdlib/ndarray/dtypes":"0js","@stdlib/ndarray-dtypes":"0jt","@stdlib/ndarray/from-scalar":"0ju","@stdlib/ndarray-from-scalar":"0jv","@stdlib/ndarray/ind2sub":"0jw","@stdlib/ndarray-ind2sub":"0jx","@stdlib/ndarray/index-modes":"0jy","@stdlib/ndarray-index-modes":"0jz","@stdlib/ndarray/min-dtype":"0k0","@stdlib/ndarray-min-dtype":"0k1","@stdlib/ndarray/next-dtype":"0k2","@stdlib/ndarray-next-dtype":"0k3","@stdlib/ndarray/orders":"0k4","@stdlib/ndarray-orders":"0k5","@stdlib/ndarray":"0k7","@stdlib/ndarray/promotion-rules":"0k8","@stdlib/ndarray-promotion-rules":"0k9","@stdlib/ndarray/safe-casts":"0kA","@stdlib/ndarray-safe-casts":"0kB","@stdlib/ndarray/same-kind-casts":"0kC","@stdlib/ndarray-same-kind-casts":"0kD","@stdlib/ndarray/sub2ind":"0kE","@stdlib/ndarray-sub2ind":"0kF","@stdlib/ndarray/zeros-like":"0kG","@stdlib/ndarray-zeros-like":"0kH","@stdlib/ndarray/zeros":"0kI","@stdlib/ndarray-zeros":"0kJ","@stdlib/net/disposable-http-server":"0kK","@stdlib/net-disposable-http-server":"0kL","@stdlib/net/http-server":"0kM","@stdlib/net-http-server":"0kN","@stdlib/net":"0kP","@stdlib/net/simple-http-server":"0kQ","@stdlib/net-simple-http-server":"0kR","@stdlib/nlp/expand-contractions":"0kS","@stdlib/nlp-expand-contractions":"0kT","@stdlib/nlp/lda":"0kU","@stdlib/nlp-lda":"0kV","@stdlib/nlp/ordinalize":"0kW","@stdlib/nlp-ordinalize":"0kX","@stdlib/nlp":"0kZ","@stdlib/nlp/porter-stemmer":"0ka","@stdlib/nlp-porter-stemmer":"0kb","@stdlib/nlp/tokenize":"0kc","@stdlib/nlp-tokenize":"0kd","@stdlib/number/ctor":"0ke","@stdlib/number-ctor":"0kf","@stdlib/number/float32/base/exponent":"0kg","@stdlib/number-float32-base-exponent":"0kh","@stdlib/number/float32/base/from-binary-string":"0ki","@stdlib/number-float32-base-from-binary-string":"0kj","@stdlib/number/float32/base/from-word":"0kk","@stdlib/number-float32-base-from-word":"0kl","@stdlib/number/float32/base/normalize":"0km","@stdlib/number-float32-base-normalize":"0kn","@stdlib/number/float32/base":"0ko","@stdlib/number-float32-base":"0kp","@stdlib/number/float32/base/signbit":"0kq","@stdlib/number-float32-base-signbit":"0kr","@stdlib/number/float32/base/significand":"0ks","@stdlib/number-float32-base-significand":"0kt","@stdlib/number/float32/base/to-binary-string":"0ku","@stdlib/number-float32-base-to-binary-string":"0kv","@stdlib/number/float32/base/to-int32":"0kw","@stdlib/number-float32-base-to-int32":"0kx","@stdlib/number/float32/base/to-uint32":"0ky","@stdlib/number-float32-base-to-uint32":"0kz","@stdlib/number/float32/base/to-word":"0l0","@stdlib/number-float32-base-to-word":"0l1","@stdlib/number/float32":"0l2","@stdlib/number-float32":"0l3","@stdlib/number/float64/base/exponent":"0l4","@stdlib/number-float64-base-exponent":"0l5","@stdlib/number/float64/base/from-binary-string":"0l6","@stdlib/number-float64-base-from-binary-string":"0l7","@stdlib/number/float64/base/from-int64-bytes":"0l8","@stdlib/number-float64-base-from-int64-bytes":"0l9","@stdlib/number/float64/base/from-words":"0lA","@stdlib/number-float64-base-from-words":"0lB","@stdlib/number/float64/base/get-high-word":"0lC","@stdlib/number-float64-base-get-high-word":"0lD","@stdlib/number/float64/base/get-low-word":"0lE","@stdlib/number-float64-base-get-low-word":"0lF","@stdlib/number/float64/base/normalize":"0lG","@stdlib/number-float64-base-normalize":"0lH","@stdlib/number/float64/base":"0lI","@stdlib/number-float64-base":"0lJ","@stdlib/number/float64/base/set-high-word":"0lK","@stdlib/number-float64-base-set-high-word":"0lL","@stdlib/number/float64/base/set-low-word":"0lM","@stdlib/number-float64-base-set-low-word":"0lN","@stdlib/number/float64/base/signbit":"0lO","@stdlib/number-float64-base-signbit":"0lP","@stdlib/number/float64/base/to-binary-string":"0lQ","@stdlib/number-float64-base-to-binary-string":"0lR","@stdlib/number/float64/base/to-float32":"0lS","@stdlib/number-float64-base-to-float32":"0lT","@stdlib/number/float64/base/to-int32":"0lU","@stdlib/number-float64-base-to-int32":"0lV","@stdlib/number/float64/base/to-int64-bytes":"0lW","@stdlib/number-float64-base-to-int64-bytes":"0lX","@stdlib/number/float64/base/to-uint32":"0lY","@stdlib/number-float64-base-to-uint32":"0lZ","@stdlib/number/float64/base/to-words":"0la","@stdlib/number-float64-base-to-words":"0lb","@stdlib/number/float64":"0lc","@stdlib/number-float64":"0ld","@stdlib/number/int32/base":"0le","@stdlib/number-int32-base":"0lf","@stdlib/number/int32/base/to-uint32":"0lg","@stdlib/number-int32-base-to-uint32":"0lh","@stdlib/number/int32":"0li","@stdlib/number-int32":"0lj","@stdlib/number":"0ll","@stdlib/number/uint16/base/from-binary-string":"0lm","@stdlib/number-uint16-base-from-binary-string":"0ln","@stdlib/number/uint16/base":"0lo","@stdlib/number-uint16-base":"0lp","@stdlib/number/uint16/base/to-binary-string":"0lq","@stdlib/number-uint16-base-to-binary-string":"0lr","@stdlib/number/uint16":"0ls","@stdlib/number-uint16":"0lt","@stdlib/number/uint32/base/from-binary-string":"0lu","@stdlib/number-uint32-base-from-binary-string":"0lv","@stdlib/number/uint32/base":"0lw","@stdlib/number-uint32-base":"0lx","@stdlib/number/uint32/base/rotl":"0ly","@stdlib/number-uint32-base-rotl":"0lz","@stdlib/number/uint32/base/rotr":"0m0","@stdlib/number-uint32-base-rotr":"0m1","@stdlib/number/uint32/base/to-binary-string":"0m2","@stdlib/number-uint32-base-to-binary-string":"0m3","@stdlib/number/uint32/base/to-int32":"0m4","@stdlib/number-uint32-base-to-int32":"0m5","@stdlib/number/uint32":"0m6","@stdlib/number-uint32":"0m7","@stdlib/number/uint8/base/from-binary-string":"0m8","@stdlib/number-uint8-base-from-binary-string":"0m9","@stdlib/number/uint8/base":"0mA","@stdlib/number-uint8-base":"0mB","@stdlib/number/uint8/base/to-binary-string":"0mC","@stdlib/number-uint8-base-to-binary-string":"0mD","@stdlib/number/uint8":"0mE","@stdlib/number-uint8":"0mF","@stdlib/os/arch":"0mG","@stdlib/os-arch":"0mH","@stdlib/os/byte-order":"0mI","@stdlib/os-byte-order":"0mJ","@stdlib/os/configdir":"0mK","@stdlib/os-configdir":"0mL","@stdlib/os/float-word-order":"0mM","@stdlib/os-float-word-order":"0mN","@stdlib/os/homedir":"0mO","@stdlib/os-homedir":"0mP","@stdlib/os/num-cpus":"0mQ","@stdlib/os-num-cpus":"0mR","@stdlib/os":"0mT","@stdlib/os/platform":"0mU","@stdlib/os-platform":"0mV","@stdlib/os/tmpdir":"0mW","@stdlib/os-tmpdir":"0mX","@stdlib/plot/base/ctor":"0mY","@stdlib/plot-base-ctor":"0mZ","@stdlib/plot/components/svg/annotations":"0ma","@stdlib/plot-components-svg-annotations":"0mb","@stdlib/plot/components/svg/axis":"0mc","@stdlib/plot-components-svg-axis":"0md","@stdlib/plot/components/svg/background":"0me","@stdlib/plot-components-svg-background":"0mf","@stdlib/plot/components/svg/canvas":"0mg","@stdlib/plot-components-svg-canvas":"0mh","@stdlib/plot/components/svg/clip-path":"0mi","@stdlib/plot-components-svg-clip-path":"0mj","@stdlib/plot/components/svg/defs":"0mk","@stdlib/plot-components-svg-defs":"0ml","@stdlib/plot/components/svg/graph":"0mm","@stdlib/plot-components-svg-graph":"0mn","@stdlib/plot/components/svg/marks":"0mo","@stdlib/plot-components-svg-marks":"0mp","@stdlib/plot/components/svg/path":"0mq","@stdlib/plot-components-svg-path":"0mr","@stdlib/plot/components/svg/rug":"0ms","@stdlib/plot-components-svg-rug":"0mt","@stdlib/plot/components/svg/symbols":"0mu","@stdlib/plot-components-svg-symbols":"0mv","@stdlib/plot/components/svg/title":"0mw","@stdlib/plot-components-svg-title":"0mx","@stdlib/plot/ctor":"0my","@stdlib/plot-ctor":"0mz","@stdlib/plot":"0n1","@stdlib/plot/sparklines/base/ctor":"0n2","@stdlib/plot-sparklines-base-ctor":"0n3","@stdlib/plot/sparklines/base":"0n4","@stdlib/plot-sparklines-base":"0n5","@stdlib/plot/sparklines":"0n6","@stdlib/plot-sparklines":"0n7","@stdlib/plot/sparklines/unicode/column":"0n8","@stdlib/plot-sparklines-unicode-column":"0n9","@stdlib/plot/sparklines/unicode/line":"0nA","@stdlib/plot-sparklines-unicode-line":"0nB","@stdlib/plot/sparklines/unicode":"0nC","@stdlib/plot-sparklines-unicode":"0nD","@stdlib/plot/sparklines/unicode/tristate":"0nE","@stdlib/plot-sparklines-unicode-tristate":"0nF","@stdlib/plot/sparklines/unicode/up-down":"0nG","@stdlib/plot-sparklines-unicode-up-down":"0nH","@stdlib/plot/sparklines/unicode/win-loss":"0nI","@stdlib/plot-sparklines-unicode-win-loss":"0nJ","@stdlib/plot/unicode/stemleaf":"0nK","@stdlib/plot-unicode-stemleaf":"0nL","@stdlib/process/argv":"0nM","@stdlib/process-argv":"0nN","@stdlib/process/chdir":"0nO","@stdlib/process-chdir":"0nP","@stdlib/process/cwd":"0nQ","@stdlib/process-cwd":"0nR","@stdlib/process/env":"0nS","@stdlib/process-env":"0nT","@stdlib/process/exec-path":"0nU","@stdlib/process-exec-path":"0nV","@stdlib/process/getegid":"0nW","@stdlib/process-getegid":"0nX","@stdlib/process/geteuid":"0nY","@stdlib/process-geteuid":"0nZ","@stdlib/process/getgid":"0na","@stdlib/process-getgid":"0nb","@stdlib/process/getuid":"0nc","@stdlib/process-getuid":"0nd","@stdlib/process/node-version":"0ne","@stdlib/process-node-version":"0nf","@stdlib/process":"0nh","@stdlib/process/read-stdin":"0ni","@stdlib/process-read-stdin":"0nj","@stdlib/process/umask":"0nk","@stdlib/process-umask":"0nl","@stdlib/proxy/ctor":"0nm","@stdlib/proxy-ctor":"0nn","@stdlib/proxy":"0np","@stdlib/random/base/arcsine":"0nq","@stdlib/random-base-arcsine":"0nr","@stdlib/random/base/bernoulli":"0ns","@stdlib/random-base-bernoulli":"0nt","@stdlib/random/base/beta":"0nu","@stdlib/random-base-beta":"0nv","@stdlib/random/base/betaprime":"0nw","@stdlib/random-base-betaprime":"0nx","@stdlib/random/base/binomial":"0ny","@stdlib/random-base-binomial":"0nz","@stdlib/random/base/box-muller":"0o0","@stdlib/random-base-box-muller":"0o1","@stdlib/random/base/cauchy":"0o2","@stdlib/random-base-cauchy":"0o3","@stdlib/random/base/chi":"0o4","@stdlib/random-base-chi":"0o5","@stdlib/random/base/chisquare":"0o6","@stdlib/random-base-chisquare":"0o7","@stdlib/random/base/cosine":"0o8","@stdlib/random-base-cosine":"0o9","@stdlib/random/base/discrete-uniform":"0oA","@stdlib/random-base-discrete-uniform":"0oB","@stdlib/random/base/erlang":"0oC","@stdlib/random-base-erlang":"0oD","@stdlib/random/base/exponential":"0oE","@stdlib/random-base-exponential":"0oF","@stdlib/random/base/f":"0oG","@stdlib/random-base-f":"0oH","@stdlib/random/base/frechet":"0oI","@stdlib/random-base-frechet":"0oJ","@stdlib/random/base/gamma":"0oK","@stdlib/random-base-gamma":"0oL","@stdlib/random/base/geometric":"0oM","@stdlib/random-base-geometric":"0oN","@stdlib/random/base/gumbel":"0oO","@stdlib/random-base-gumbel":"0oP","@stdlib/random/base/hypergeometric":"0oQ","@stdlib/random-base-hypergeometric":"0oR","@stdlib/random/base/improved-ziggurat":"0oS","@stdlib/random-base-improved-ziggurat":"0oT","@stdlib/random/base/invgamma":"0oU","@stdlib/random-base-invgamma":"0oV","@stdlib/random/base/kumaraswamy":"0oW","@stdlib/random-base-kumaraswamy":"0oX","@stdlib/random/base/laplace":"0oY","@stdlib/random-base-laplace":"0oZ","@stdlib/random/base/levy":"0oa","@stdlib/random-base-levy":"0ob","@stdlib/random/base/logistic":"0oc","@stdlib/random-base-logistic":"0od","@stdlib/random/base/lognormal":"0oe","@stdlib/random-base-lognormal":"0of","@stdlib/random/base/minstd-shuffle":"0og","@stdlib/random-base-minstd-shuffle":"0oh","@stdlib/random/base/minstd":"0oi","@stdlib/random-base-minstd":"0oj","@stdlib/random/base/mt19937":"0ok","@stdlib/random-base-mt19937":"0ol","@stdlib/random/base/negative-binomial":"0om","@stdlib/random-base-negative-binomial":"0on","@stdlib/random/base/normal":"0oo","@stdlib/random-base-normal":"0op","@stdlib/random/base":"0oq","@stdlib/random-base":"0or","@stdlib/random/base/pareto-type1":"0os","@stdlib/random-base-pareto-type1":"0ot","@stdlib/random/base/poisson":"0ou","@stdlib/random-base-poisson":"0ov","@stdlib/random/base/randi":"0ow","@stdlib/random-base-randi":"0ox","@stdlib/random/base/randn":"0oy","@stdlib/random-base-randn":"0oz","@stdlib/random/base/randu":"0p0","@stdlib/random-base-randu":"0p1","@stdlib/random/base/rayleigh":"0p2","@stdlib/random-base-rayleigh":"0p3","@stdlib/random/base/reviver":"0p4","@stdlib/random-base-reviver":"0p5","@stdlib/random/base/t":"0p6","@stdlib/random-base-t":"0p7","@stdlib/random/base/triangular":"0p8","@stdlib/random-base-triangular":"0p9","@stdlib/random/base/uniform":"0pA","@stdlib/random-base-uniform":"0pB","@stdlib/random/base/weibull":"0pC","@stdlib/random-base-weibull":"0pD","@stdlib/random/iter/arcsine":"0pE","@stdlib/random-iter-arcsine":"0pF","@stdlib/random/iter/bernoulli":"0pG","@stdlib/random-iter-bernoulli":"0pH","@stdlib/random/iter/beta":"0pI","@stdlib/random-iter-beta":"0pJ","@stdlib/random/iter/betaprime":"0pK","@stdlib/random-iter-betaprime":"0pL","@stdlib/random/iter/binomial":"0pM","@stdlib/random-iter-binomial":"0pN","@stdlib/random/iter/box-muller":"0pO","@stdlib/random-iter-box-muller":"0pP","@stdlib/random/iter/cauchy":"0pQ","@stdlib/random-iter-cauchy":"0pR","@stdlib/random/iter/chi":"0pS","@stdlib/random-iter-chi":"0pT","@stdlib/random/iter/chisquare":"0pU","@stdlib/random-iter-chisquare":"0pV","@stdlib/random/iter/cosine":"0pW","@stdlib/random-iter-cosine":"0pX","@stdlib/random/iter/discrete-uniform":"0pY","@stdlib/random-iter-discrete-uniform":"0pZ","@stdlib/random/iter/erlang":"0pa","@stdlib/random-iter-erlang":"0pb","@stdlib/random/iter/exponential":"0pc","@stdlib/random-iter-exponential":"0pd","@stdlib/random/iter/f":"0pe","@stdlib/random-iter-f":"0pf","@stdlib/random/iter/frechet":"0pg","@stdlib/random-iter-frechet":"0ph","@stdlib/random/iter/gamma":"0pi","@stdlib/random-iter-gamma":"0pj","@stdlib/random/iter/geometric":"0pk","@stdlib/random-iter-geometric":"0pl","@stdlib/random/iter/gumbel":"0pm","@stdlib/random-iter-gumbel":"0pn","@stdlib/random/iter/hypergeometric":"0po","@stdlib/random-iter-hypergeometric":"0pp","@stdlib/random/iter/improved-ziggurat":"0pq","@stdlib/random-iter-improved-ziggurat":"0pr","@stdlib/random/iter/invgamma":"0ps","@stdlib/random-iter-invgamma":"0pt","@stdlib/random/iter/kumaraswamy":"0pu","@stdlib/random-iter-kumaraswamy":"0pv","@stdlib/random/iter/laplace":"0pw","@stdlib/random-iter-laplace":"0px","@stdlib/random/iter/levy":"0py","@stdlib/random-iter-levy":"0pz","@stdlib/random/iter/logistic":"0q0","@stdlib/random-iter-logistic":"0q1","@stdlib/random/iter/lognormal":"0q2","@stdlib/random-iter-lognormal":"0q3","@stdlib/random/iter/minstd-shuffle":"0q4","@stdlib/random-iter-minstd-shuffle":"0q5","@stdlib/random/iter/minstd":"0q6","@stdlib/random-iter-minstd":"0q7","@stdlib/random/iter/mt19937":"0q8","@stdlib/random-iter-mt19937":"0q9","@stdlib/random/iter/negative-binomial":"0qA","@stdlib/random-iter-negative-binomial":"0qB","@stdlib/random/iter/normal":"0qC","@stdlib/random-iter-normal":"0qD","@stdlib/random/iter":"0qE","@stdlib/random-iter":"0qF","@stdlib/random/iter/pareto-type1":"0qG","@stdlib/random-iter-pareto-type1":"0qH","@stdlib/random/iter/poisson":"0qI","@stdlib/random-iter-poisson":"0qJ","@stdlib/random/iter/randi":"0qK","@stdlib/random-iter-randi":"0qL","@stdlib/random/iter/randn":"0qM","@stdlib/random-iter-randn":"0qN","@stdlib/random/iter/randu":"0qO","@stdlib/random-iter-randu":"0qP","@stdlib/random/iter/rayleigh":"0qQ","@stdlib/random-iter-rayleigh":"0qR","@stdlib/random/iter/t":"0qS","@stdlib/random-iter-t":"0qT","@stdlib/random/iter/triangular":"0qU","@stdlib/random-iter-triangular":"0qV","@stdlib/random/iter/uniform":"0qW","@stdlib/random-iter-uniform":"0qX","@stdlib/random/iter/weibull":"0qY","@stdlib/random-iter-weibull":"0qZ","@stdlib/random":"0qb","@stdlib/random/sample":"0qc","@stdlib/random-sample":"0qd","@stdlib/random/shuffle":"0qe","@stdlib/random-shuffle":"0qf","@stdlib/random/streams/arcsine":"0qg","@stdlib/random-streams-arcsine":"0qh","@stdlib/random/streams/bernoulli":"0qi","@stdlib/random-streams-bernoulli":"0qj","@stdlib/random/streams/beta":"0qk","@stdlib/random-streams-beta":"0ql","@stdlib/random/streams/betaprime":"0qm","@stdlib/random-streams-betaprime":"0qn","@stdlib/random/streams/binomial":"0qo","@stdlib/random-streams-binomial":"0qp","@stdlib/random/streams/box-muller":"0qq","@stdlib/random-streams-box-muller":"0qr","@stdlib/random/streams/cauchy":"0qs","@stdlib/random-streams-cauchy":"0qt","@stdlib/random/streams/chi":"0qu","@stdlib/random-streams-chi":"0qv","@stdlib/random/streams/chisquare":"0qw","@stdlib/random-streams-chisquare":"0qx","@stdlib/random/streams/cosine":"0qy","@stdlib/random-streams-cosine":"0qz","@stdlib/random/streams/discrete-uniform":"0r0","@stdlib/random-streams-discrete-uniform":"0r1","@stdlib/random/streams/erlang":"0r2","@stdlib/random-streams-erlang":"0r3","@stdlib/random/streams/exponential":"0r4","@stdlib/random-streams-exponential":"0r5","@stdlib/random/streams/f":"0r6","@stdlib/random-streams-f":"0r7","@stdlib/random/streams/frechet":"0r8","@stdlib/random-streams-frechet":"0r9","@stdlib/random/streams/gamma":"0rA","@stdlib/random-streams-gamma":"0rB","@stdlib/random/streams/geometric":"0rC","@stdlib/random-streams-geometric":"0rD","@stdlib/random/streams/gumbel":"0rE","@stdlib/random-streams-gumbel":"0rF","@stdlib/random/streams/hypergeometric":"0rG","@stdlib/random-streams-hypergeometric":"0rH","@stdlib/random/streams/improved-ziggurat":"0rI","@stdlib/random-streams-improved-ziggurat":"0rJ","@stdlib/random/streams/invgamma":"0rK","@stdlib/random-streams-invgamma":"0rL","@stdlib/random/streams/kumaraswamy":"0rM","@stdlib/random-streams-kumaraswamy":"0rN","@stdlib/random/streams/laplace":"0rO","@stdlib/random-streams-laplace":"0rP","@stdlib/random/streams/levy":"0rQ","@stdlib/random-streams-levy":"0rR","@stdlib/random/streams/logistic":"0rS","@stdlib/random-streams-logistic":"0rT","@stdlib/random/streams/lognormal":"0rU","@stdlib/random-streams-lognormal":"0rV","@stdlib/random/streams/minstd-shuffle":"0rW","@stdlib/random-streams-minstd-shuffle":"0rX","@stdlib/random/streams/minstd":"0rY","@stdlib/random-streams-minstd":"0rZ","@stdlib/random/streams/mt19937":"0ra","@stdlib/random-streams-mt19937":"0rb","@stdlib/random/streams/negative-binomial":"0rc","@stdlib/random-streams-negative-binomial":"0rd","@stdlib/random/streams/normal":"0re","@stdlib/random-streams-normal":"0rf","@stdlib/random/streams":"0rg","@stdlib/random-streams":"0rh","@stdlib/random/streams/pareto-type1":"0ri","@stdlib/random-streams-pareto-type1":"0rj","@stdlib/random/streams/poisson":"0rk","@stdlib/random-streams-poisson":"0rl","@stdlib/random/streams/randi":"0rm","@stdlib/random-streams-randi":"0rn","@stdlib/random/streams/randn":"0ro","@stdlib/random-streams-randn":"0rp","@stdlib/random/streams/randu":"0rq","@stdlib/random-streams-randu":"0rr","@stdlib/random/streams/rayleigh":"0rs","@stdlib/random-streams-rayleigh":"0rt","@stdlib/random/streams/t":"0ru","@stdlib/random-streams-t":"0rv","@stdlib/random/streams/triangular":"0rw","@stdlib/random-streams-triangular":"0rx","@stdlib/random/streams/uniform":"0ry","@stdlib/random-streams-uniform":"0rz","@stdlib/random/streams/weibull":"0s0","@stdlib/random-streams-weibull":"0s1","@stdlib/regexp/basename-posix":"0s2","@stdlib/regexp-basename-posix":"0s3","@stdlib/regexp/basename-windows":"0s4","@stdlib/regexp-basename-windows":"0s5","@stdlib/regexp/basename":"0s6","@stdlib/regexp-basename":"0s7","@stdlib/regexp/color-hexadecimal":"0s8","@stdlib/regexp-color-hexadecimal":"0s9","@stdlib/regexp/decimal-number":"0sA","@stdlib/regexp-decimal-number":"0sB","@stdlib/regexp/dirname-posix":"0sC","@stdlib/regexp-dirname-posix":"0sD","@stdlib/regexp/dirname-windows":"0sE","@stdlib/regexp-dirname-windows":"0sF","@stdlib/regexp/dirname":"0sG","@stdlib/regexp-dirname":"0sH","@stdlib/regexp/eol":"0sI","@stdlib/regexp-eol":"0sJ","@stdlib/regexp/extended-length-path":"0sK","@stdlib/regexp-extended-length-path":"0sL","@stdlib/regexp/extname-posix":"0sM","@stdlib/regexp-extname-posix":"0sN","@stdlib/regexp/extname-windows":"0sO","@stdlib/regexp-extname-windows":"0sP","@stdlib/regexp/extname":"0sQ","@stdlib/regexp-extname":"0sR","@stdlib/regexp/filename-posix":"0sS","@stdlib/regexp-filename-posix":"0sT","@stdlib/regexp/filename-windows":"0sU","@stdlib/regexp-filename-windows":"0sV","@stdlib/regexp/filename":"0sW","@stdlib/regexp-filename":"0sX","@stdlib/regexp/function-name":"0sY","@stdlib/regexp-function-name":"0sZ","@stdlib/regexp/native-function":"0sa","@stdlib/regexp-native-function":"0sb","@stdlib/regexp":"0sd","@stdlib/regexp/regexp":"0se","@stdlib/regexp-regexp":"0sf","@stdlib/regexp/unc-path":"0sg","@stdlib/regexp-unc-path":"0sh","@stdlib/regexp/utf16-surrogate-pair":"0si","@stdlib/regexp-utf16-surrogate-pair":"0sj","@stdlib/regexp/utf16-unpaired-surrogate":"0sk","@stdlib/regexp-utf16-unpaired-surrogate":"0sl","@stdlib/regexp/whitespace":"0sm","@stdlib/regexp-whitespace":"0sn","@stdlib/repl/code-blocks":"0so","@stdlib/repl-code-blocks":"0sp","@stdlib/repl/help":"0sq","@stdlib/repl-help":"0sr","@stdlib/repl/info":"0ss","@stdlib/repl-info":"0st","@stdlib/repl":"0sv","@stdlib/repl/presentation":"0sw","@stdlib/repl-presentation":"0sx","@stdlib/repl/server":"0sy","@stdlib/repl-server":"0sz","@stdlib/repl/signature":"0t0","@stdlib/repl-signature":"0t1","@stdlib/repl/typed-signature":"0t2","@stdlib/repl-typed-signature":"0t3","@stdlib/simulate/iter/awgn":"0t4","@stdlib/simulate-iter-awgn":"0t5","@stdlib/simulate/iter/awln":"0t6","@stdlib/simulate-iter-awln":"0t7","@stdlib/simulate/iter/awun":"0t8","@stdlib/simulate-iter-awun":"0t9","@stdlib/simulate/iter/bartlett-hann-pulse":"0tA","@stdlib/simulate-iter-bartlett-hann-pulse":"0tB","@stdlib/simulate/iter/bartlett-pulse":"0tC","@stdlib/simulate-iter-bartlett-pulse":"0tD","@stdlib/simulate/iter/cosine-wave":"0tE","@stdlib/simulate-iter-cosine-wave":"0tF","@stdlib/simulate/iter/dirac-comb":"0tG","@stdlib/simulate-iter-dirac-comb":"0tH","@stdlib/simulate/iter/flat-top-pulse":"0tI","@stdlib/simulate-iter-flat-top-pulse":"0tJ","@stdlib/simulate/iter/hann-pulse":"0tK","@stdlib/simulate-iter-hann-pulse":"0tL","@stdlib/simulate/iter/lanczos-pulse":"0tM","@stdlib/simulate-iter-lanczos-pulse":"0tN","@stdlib/simulate/iter":"0tO","@stdlib/simulate-iter":"0tP","@stdlib/simulate/iter/periodic-sinc":"0tQ","@stdlib/simulate-iter-periodic-sinc":"0tR","@stdlib/simulate/iter/pulse":"0tS","@stdlib/simulate-iter-pulse":"0tT","@stdlib/simulate/iter/sawtooth-wave":"0tU","@stdlib/simulate-iter-sawtooth-wave":"0tV","@stdlib/simulate/iter/sine-wave":"0tW","@stdlib/simulate-iter-sine-wave":"0tX","@stdlib/simulate/iter/square-wave":"0tY","@stdlib/simulate-iter-square-wave":"0tZ","@stdlib/simulate/iter/triangle-wave":"0ta","@stdlib/simulate-iter-triangle-wave":"0tb","@stdlib/simulate":"0td","@stdlib/stats/anova1":"0te","@stdlib/stats-anova1":"0tf","@stdlib/stats/bartlett-test":"0tg","@stdlib/stats-bartlett-test":"0th","@stdlib/stats/base/cumax":"0ti","@stdlib/stats-base-cumax":"0tj","@stdlib/stats/base/cumaxabs":"0tk","@stdlib/stats-base-cumaxabs":"0tl","@stdlib/stats/base/cumin":"0tm","@stdlib/stats-base-cumin":"0tn","@stdlib/stats/base/cuminabs":"0to","@stdlib/stats-base-cuminabs":"0tp","@stdlib/stats/base/dcumax":"0tq","@stdlib/stats-base-dcumax":"0tr","@stdlib/stats/base/dcumaxabs":"0ts","@stdlib/stats-base-dcumaxabs":"0tt","@stdlib/stats/base/dcumin":"0tu","@stdlib/stats-base-dcumin":"0tv","@stdlib/stats/base/dcuminabs":"0tw","@stdlib/stats-base-dcuminabs":"0tx","@stdlib/stats/base/dists/arcsine/cdf":"0ty","@stdlib/stats-base-dists-arcsine-cdf":"0tz","@stdlib/stats/base/dists/arcsine/ctor":"0u0","@stdlib/stats-base-dists-arcsine-ctor":"0u1","@stdlib/stats/base/dists/arcsine/entropy":"0u2","@stdlib/stats-base-dists-arcsine-entropy":"0u3","@stdlib/stats/base/dists/arcsine/kurtosis":"0u4","@stdlib/stats-base-dists-arcsine-kurtosis":"0u5","@stdlib/stats/base/dists/arcsine/logcdf":"0u6","@stdlib/stats-base-dists-arcsine-logcdf":"0u7","@stdlib/stats/base/dists/arcsine/logpdf":"0u8","@stdlib/stats-base-dists-arcsine-logpdf":"0u9","@stdlib/stats/base/dists/arcsine/mean":"0uA","@stdlib/stats-base-dists-arcsine-mean":"0uB","@stdlib/stats/base/dists/arcsine/median":"0uC","@stdlib/stats-base-dists-arcsine-median":"0uD","@stdlib/stats/base/dists/arcsine/mode":"0uE","@stdlib/stats-base-dists-arcsine-mode":"0uF","@stdlib/stats/base/dists/arcsine":"0uG","@stdlib/stats-base-dists-arcsine":"0uH","@stdlib/stats/base/dists/arcsine/pdf":"0uI","@stdlib/stats-base-dists-arcsine-pdf":"0uJ","@stdlib/stats/base/dists/arcsine/quantile":"0uK","@stdlib/stats-base-dists-arcsine-quantile":"0uL","@stdlib/stats/base/dists/arcsine/skewness":"0uM","@stdlib/stats-base-dists-arcsine-skewness":"0uN","@stdlib/stats/base/dists/arcsine/stdev":"0uO","@stdlib/stats-base-dists-arcsine-stdev":"0uP","@stdlib/stats/base/dists/arcsine/variance":"0uQ","@stdlib/stats-base-dists-arcsine-variance":"0uR","@stdlib/stats/base/dists/bernoulli/cdf":"0uS","@stdlib/stats-base-dists-bernoulli-cdf":"0uT","@stdlib/stats/base/dists/bernoulli/ctor":"0uU","@stdlib/stats-base-dists-bernoulli-ctor":"0uV","@stdlib/stats/base/dists/bernoulli/entropy":"0uW","@stdlib/stats-base-dists-bernoulli-entropy":"0uX","@stdlib/stats/base/dists/bernoulli/kurtosis":"0uY","@stdlib/stats-base-dists-bernoulli-kurtosis":"0uZ","@stdlib/stats/base/dists/bernoulli/mean":"0ua","@stdlib/stats-base-dists-bernoulli-mean":"0ub","@stdlib/stats/base/dists/bernoulli/median":"0uc","@stdlib/stats-base-dists-bernoulli-median":"0ud","@stdlib/stats/base/dists/bernoulli/mgf":"0ue","@stdlib/stats-base-dists-bernoulli-mgf":"0uf","@stdlib/stats/base/dists/bernoulli/mode":"0ug","@stdlib/stats-base-dists-bernoulli-mode":"0uh","@stdlib/stats/base/dists/bernoulli":"0ui","@stdlib/stats-base-dists-bernoulli":"0uj","@stdlib/stats/base/dists/bernoulli/pmf":"0uk","@stdlib/stats-base-dists-bernoulli-pmf":"0ul","@stdlib/stats/base/dists/bernoulli/quantile":"0um","@stdlib/stats-base-dists-bernoulli-quantile":"0un","@stdlib/stats/base/dists/bernoulli/skewness":"0uo","@stdlib/stats-base-dists-bernoulli-skewness":"0up","@stdlib/stats/base/dists/bernoulli/stdev":"0uq","@stdlib/stats-base-dists-bernoulli-stdev":"0ur","@stdlib/stats/base/dists/bernoulli/variance":"0us","@stdlib/stats-base-dists-bernoulli-variance":"0ut","@stdlib/stats/base/dists/beta/cdf":"0uu","@stdlib/stats-base-dists-beta-cdf":"0uv","@stdlib/stats/base/dists/beta/ctor":"0uw","@stdlib/stats-base-dists-beta-ctor":"0ux","@stdlib/stats/base/dists/beta/entropy":"0uy","@stdlib/stats-base-dists-beta-entropy":"0uz","@stdlib/stats/base/dists/beta/kurtosis":"0v0","@stdlib/stats-base-dists-beta-kurtosis":"0v1","@stdlib/stats/base/dists/beta/logcdf":"0v2","@stdlib/stats-base-dists-beta-logcdf":"0v3","@stdlib/stats/base/dists/beta/logpdf":"0v4","@stdlib/stats-base-dists-beta-logpdf":"0v5","@stdlib/stats/base/dists/beta/mean":"0v6","@stdlib/stats-base-dists-beta-mean":"0v7","@stdlib/stats/base/dists/beta/median":"0v8","@stdlib/stats-base-dists-beta-median":"0v9","@stdlib/stats/base/dists/beta/mgf":"0vA","@stdlib/stats-base-dists-beta-mgf":"0vB","@stdlib/stats/base/dists/beta/mode":"0vC","@stdlib/stats-base-dists-beta-mode":"0vD","@stdlib/stats/base/dists/beta":"0vE","@stdlib/stats-base-dists-beta":"0vF","@stdlib/stats/base/dists/beta/pdf":"0vG","@stdlib/stats-base-dists-beta-pdf":"0vH","@stdlib/stats/base/dists/beta/quantile":"0vI","@stdlib/stats-base-dists-beta-quantile":"0vJ","@stdlib/stats/base/dists/beta/skewness":"0vK","@stdlib/stats-base-dists-beta-skewness":"0vL","@stdlib/stats/base/dists/beta/stdev":"0vM","@stdlib/stats-base-dists-beta-stdev":"0vN","@stdlib/stats/base/dists/beta/variance":"0vO","@stdlib/stats-base-dists-beta-variance":"0vP","@stdlib/stats/base/dists/betaprime/cdf":"0vQ","@stdlib/stats-base-dists-betaprime-cdf":"0vR","@stdlib/stats/base/dists/betaprime/ctor":"0vS","@stdlib/stats-base-dists-betaprime-ctor":"0vT","@stdlib/stats/base/dists/betaprime/kurtosis":"0vU","@stdlib/stats-base-dists-betaprime-kurtosis":"0vV","@stdlib/stats/base/dists/betaprime/logcdf":"0vW","@stdlib/stats-base-dists-betaprime-logcdf":"0vX","@stdlib/stats/base/dists/betaprime/logpdf":"0vY","@stdlib/stats-base-dists-betaprime-logpdf":"0vZ","@stdlib/stats/base/dists/betaprime/mean":"0va","@stdlib/stats-base-dists-betaprime-mean":"0vb","@stdlib/stats/base/dists/betaprime/mode":"0vc","@stdlib/stats-base-dists-betaprime-mode":"0vd","@stdlib/stats/base/dists/betaprime":"0ve","@stdlib/stats-base-dists-betaprime":"0vf","@stdlib/stats/base/dists/betaprime/pdf":"0vg","@stdlib/stats-base-dists-betaprime-pdf":"0vh","@stdlib/stats/base/dists/betaprime/quantile":"0vi","@stdlib/stats-base-dists-betaprime-quantile":"0vj","@stdlib/stats/base/dists/betaprime/skewness":"0vk","@stdlib/stats-base-dists-betaprime-skewness":"0vl","@stdlib/stats/base/dists/betaprime/stdev":"0vm","@stdlib/stats-base-dists-betaprime-stdev":"0vn","@stdlib/stats/base/dists/betaprime/variance":"0vo","@stdlib/stats-base-dists-betaprime-variance":"0vp","@stdlib/stats/base/dists/binomial/cdf":"0vq","@stdlib/stats-base-dists-binomial-cdf":"0vr","@stdlib/stats/base/dists/binomial/ctor":"0vs","@stdlib/stats-base-dists-binomial-ctor":"0vt","@stdlib/stats/base/dists/binomial/entropy":"0vu","@stdlib/stats-base-dists-binomial-entropy":"0vv","@stdlib/stats/base/dists/binomial/kurtosis":"0vw","@stdlib/stats-base-dists-binomial-kurtosis":"0vx","@stdlib/stats/base/dists/binomial/logpmf":"0vy","@stdlib/stats-base-dists-binomial-logpmf":"0vz","@stdlib/stats/base/dists/binomial/mean":"0w0","@stdlib/stats-base-dists-binomial-mean":"0w1","@stdlib/stats/base/dists/binomial/median":"0w2","@stdlib/stats-base-dists-binomial-median":"0w3","@stdlib/stats/base/dists/binomial/mgf":"0w4","@stdlib/stats-base-dists-binomial-mgf":"0w5","@stdlib/stats/base/dists/binomial/mode":"0w6","@stdlib/stats-base-dists-binomial-mode":"0w7","@stdlib/stats/base/dists/binomial":"0w8","@stdlib/stats-base-dists-binomial":"0w9","@stdlib/stats/base/dists/binomial/pmf":"0wA","@stdlib/stats-base-dists-binomial-pmf":"0wB","@stdlib/stats/base/dists/binomial/quantile":"0wC","@stdlib/stats-base-dists-binomial-quantile":"0wD","@stdlib/stats/base/dists/binomial/skewness":"0wE","@stdlib/stats-base-dists-binomial-skewness":"0wF","@stdlib/stats/base/dists/binomial/stdev":"0wG","@stdlib/stats-base-dists-binomial-stdev":"0wH","@stdlib/stats/base/dists/binomial/variance":"0wI","@stdlib/stats-base-dists-binomial-variance":"0wJ","@stdlib/stats/base/dists/cauchy/cdf":"0wK","@stdlib/stats-base-dists-cauchy-cdf":"0wL","@stdlib/stats/base/dists/cauchy/ctor":"0wM","@stdlib/stats-base-dists-cauchy-ctor":"0wN","@stdlib/stats/base/dists/cauchy/entropy":"0wO","@stdlib/stats-base-dists-cauchy-entropy":"0wP","@stdlib/stats/base/dists/cauchy/logcdf":"0wQ","@stdlib/stats-base-dists-cauchy-logcdf":"0wR","@stdlib/stats/base/dists/cauchy/logpdf":"0wS","@stdlib/stats-base-dists-cauchy-logpdf":"0wT","@stdlib/stats/base/dists/cauchy/median":"0wU","@stdlib/stats-base-dists-cauchy-median":"0wV","@stdlib/stats/base/dists/cauchy/mode":"0wW","@stdlib/stats-base-dists-cauchy-mode":"0wX","@stdlib/stats/base/dists/cauchy":"0wY","@stdlib/stats-base-dists-cauchy":"0wZ","@stdlib/stats/base/dists/cauchy/pdf":"0wa","@stdlib/stats-base-dists-cauchy-pdf":"0wb","@stdlib/stats/base/dists/cauchy/quantile":"0wc","@stdlib/stats-base-dists-cauchy-quantile":"0wd","@stdlib/stats/base/dists/chi/cdf":"0we","@stdlib/stats-base-dists-chi-cdf":"0wf","@stdlib/stats/base/dists/chi/ctor":"0wg","@stdlib/stats-base-dists-chi-ctor":"0wh","@stdlib/stats/base/dists/chi/entropy":"0wi","@stdlib/stats-base-dists-chi-entropy":"0wj","@stdlib/stats/base/dists/chi/kurtosis":"0wk","@stdlib/stats-base-dists-chi-kurtosis":"0wl","@stdlib/stats/base/dists/chi/logpdf":"0wm","@stdlib/stats-base-dists-chi-logpdf":"0wn","@stdlib/stats/base/dists/chi/mean":"0wo","@stdlib/stats-base-dists-chi-mean":"0wp","@stdlib/stats/base/dists/chi/mode":"0wq","@stdlib/stats-base-dists-chi-mode":"0wr","@stdlib/stats/base/dists/chi":"0ws","@stdlib/stats-base-dists-chi":"0wt","@stdlib/stats/base/dists/chi/pdf":"0wu","@stdlib/stats-base-dists-chi-pdf":"0wv","@stdlib/stats/base/dists/chi/quantile":"0ww","@stdlib/stats-base-dists-chi-quantile":"0wx","@stdlib/stats/base/dists/chi/skewness":"0wy","@stdlib/stats-base-dists-chi-skewness":"0wz","@stdlib/stats/base/dists/chi/stdev":"0x0","@stdlib/stats-base-dists-chi-stdev":"0x1","@stdlib/stats/base/dists/chi/variance":"0x2","@stdlib/stats-base-dists-chi-variance":"0x3","@stdlib/stats/base/dists/chisquare/cdf":"0x4","@stdlib/stats-base-dists-chisquare-cdf":"0x5","@stdlib/stats/base/dists/chisquare/ctor":"0x6","@stdlib/stats-base-dists-chisquare-ctor":"0x7","@stdlib/stats/base/dists/chisquare/entropy":"0x8","@stdlib/stats-base-dists-chisquare-entropy":"0x9","@stdlib/stats/base/dists/chisquare/kurtosis":"0xA","@stdlib/stats-base-dists-chisquare-kurtosis":"0xB","@stdlib/stats/base/dists/chisquare/logpdf":"0xC","@stdlib/stats-base-dists-chisquare-logpdf":"0xD","@stdlib/stats/base/dists/chisquare/mean":"0xE","@stdlib/stats-base-dists-chisquare-mean":"0xF","@stdlib/stats/base/dists/chisquare/median":"0xG","@stdlib/stats-base-dists-chisquare-median":"0xH","@stdlib/stats/base/dists/chisquare/mgf":"0xI","@stdlib/stats-base-dists-chisquare-mgf":"0xJ","@stdlib/stats/base/dists/chisquare/mode":"0xK","@stdlib/stats-base-dists-chisquare-mode":"0xL","@stdlib/stats/base/dists/chisquare":"0xM","@stdlib/stats-base-dists-chisquare":"0xN","@stdlib/stats/base/dists/chisquare/pdf":"0xO","@stdlib/stats-base-dists-chisquare-pdf":"0xP","@stdlib/stats/base/dists/chisquare/quantile":"0xQ","@stdlib/stats-base-dists-chisquare-quantile":"0xR","@stdlib/stats/base/dists/chisquare/skewness":"0xS","@stdlib/stats-base-dists-chisquare-skewness":"0xT","@stdlib/stats/base/dists/chisquare/stdev":"0xU","@stdlib/stats-base-dists-chisquare-stdev":"0xV","@stdlib/stats/base/dists/chisquare/variance":"0xW","@stdlib/stats-base-dists-chisquare-variance":"0xX","@stdlib/stats/base/dists/cosine/cdf":"0xY","@stdlib/stats-base-dists-cosine-cdf":"0xZ","@stdlib/stats/base/dists/cosine/ctor":"0xa","@stdlib/stats-base-dists-cosine-ctor":"0xb","@stdlib/stats/base/dists/cosine/kurtosis":"0xc","@stdlib/stats-base-dists-cosine-kurtosis":"0xd","@stdlib/stats/base/dists/cosine/logcdf":"0xe","@stdlib/stats-base-dists-cosine-logcdf":"0xf","@stdlib/stats/base/dists/cosine/logpdf":"0xg","@stdlib/stats-base-dists-cosine-logpdf":"0xh","@stdlib/stats/base/dists/cosine/mean":"0xi","@stdlib/stats-base-dists-cosine-mean":"0xj","@stdlib/stats/base/dists/cosine/median":"0xk","@stdlib/stats-base-dists-cosine-median":"0xl","@stdlib/stats/base/dists/cosine/mgf":"0xm","@stdlib/stats-base-dists-cosine-mgf":"0xn","@stdlib/stats/base/dists/cosine/mode":"0xo","@stdlib/stats-base-dists-cosine-mode":"0xp","@stdlib/stats/base/dists/cosine":"0xq","@stdlib/stats-base-dists-cosine":"0xr","@stdlib/stats/base/dists/cosine/pdf":"0xs","@stdlib/stats-base-dists-cosine-pdf":"0xt","@stdlib/stats/base/dists/cosine/quantile":"0xu","@stdlib/stats-base-dists-cosine-quantile":"0xv","@stdlib/stats/base/dists/cosine/skewness":"0xw","@stdlib/stats-base-dists-cosine-skewness":"0xx","@stdlib/stats/base/dists/cosine/stdev":"0xy","@stdlib/stats-base-dists-cosine-stdev":"0xz","@stdlib/stats/base/dists/cosine/variance":"0y0","@stdlib/stats-base-dists-cosine-variance":"0y1","@stdlib/stats/base/dists/degenerate/cdf":"0y2","@stdlib/stats-base-dists-degenerate-cdf":"0y3","@stdlib/stats/base/dists/degenerate/ctor":"0y4","@stdlib/stats-base-dists-degenerate-ctor":"0y5","@stdlib/stats/base/dists/degenerate/entropy":"0y6","@stdlib/stats-base-dists-degenerate-entropy":"0y7","@stdlib/stats/base/dists/degenerate/logcdf":"0y8","@stdlib/stats-base-dists-degenerate-logcdf":"0y9","@stdlib/stats/base/dists/degenerate/logpdf":"0yA","@stdlib/stats-base-dists-degenerate-logpdf":"0yB","@stdlib/stats/base/dists/degenerate/logpmf":"0yC","@stdlib/stats-base-dists-degenerate-logpmf":"0yD","@stdlib/stats/base/dists/degenerate/mean":"0yE","@stdlib/stats-base-dists-degenerate-mean":"0yF","@stdlib/stats/base/dists/degenerate/median":"0yG","@stdlib/stats-base-dists-degenerate-median":"0yH","@stdlib/stats/base/dists/degenerate/mgf":"0yI","@stdlib/stats-base-dists-degenerate-mgf":"0yJ","@stdlib/stats/base/dists/degenerate/mode":"0yK","@stdlib/stats-base-dists-degenerate-mode":"0yL","@stdlib/stats/base/dists/degenerate":"0yM","@stdlib/stats-base-dists-degenerate":"0yN","@stdlib/stats/base/dists/degenerate/pdf":"0yO","@stdlib/stats-base-dists-degenerate-pdf":"0yP","@stdlib/stats/base/dists/degenerate/pmf":"0yQ","@stdlib/stats-base-dists-degenerate-pmf":"0yR","@stdlib/stats/base/dists/degenerate/quantile":"0yS","@stdlib/stats-base-dists-degenerate-quantile":"0yT","@stdlib/stats/base/dists/degenerate/stdev":"0yU","@stdlib/stats-base-dists-degenerate-stdev":"0yV","@stdlib/stats/base/dists/degenerate/variance":"0yW","@stdlib/stats-base-dists-degenerate-variance":"0yX","@stdlib/stats/base/dists/discrete-uniform/cdf":"0yY","@stdlib/stats-base-dists-discrete-uniform-cdf":"0yZ","@stdlib/stats/base/dists/discrete-uniform/ctor":"0ya","@stdlib/stats-base-dists-discrete-uniform-ctor":"0yb","@stdlib/stats/base/dists/discrete-uniform/entropy":"0yc","@stdlib/stats-base-dists-discrete-uniform-entropy":"0yd","@stdlib/stats/base/dists/discrete-uniform/kurtosis":"0ye","@stdlib/stats-base-dists-discrete-uniform-kurtosis":"0yf","@stdlib/stats/base/dists/discrete-uniform/logcdf":"0yg","@stdlib/stats-base-dists-discrete-uniform-logcdf":"0yh","@stdlib/stats/base/dists/discrete-uniform/logpmf":"0yi","@stdlib/stats-base-dists-discrete-uniform-logpmf":"0yj","@stdlib/stats/base/dists/discrete-uniform/mean":"0yk","@stdlib/stats-base-dists-discrete-uniform-mean":"0yl","@stdlib/stats/base/dists/discrete-uniform/median":"0ym","@stdlib/stats-base-dists-discrete-uniform-median":"0yn","@stdlib/stats/base/dists/discrete-uniform/mgf":"0yo","@stdlib/stats-base-dists-discrete-uniform-mgf":"0yp","@stdlib/stats/base/dists/discrete-uniform":"0yq","@stdlib/stats-base-dists-discrete-uniform":"0yr","@stdlib/stats/base/dists/discrete-uniform/pmf":"0ys","@stdlib/stats-base-dists-discrete-uniform-pmf":"0yt","@stdlib/stats/base/dists/discrete-uniform/quantile":"0yu","@stdlib/stats-base-dists-discrete-uniform-quantile":"0yv","@stdlib/stats/base/dists/discrete-uniform/skewness":"0yw","@stdlib/stats-base-dists-discrete-uniform-skewness":"0yx","@stdlib/stats/base/dists/discrete-uniform/stdev":"0yy","@stdlib/stats-base-dists-discrete-uniform-stdev":"0yz","@stdlib/stats/base/dists/discrete-uniform/variance":"0z0","@stdlib/stats-base-dists-discrete-uniform-variance":"0z1","@stdlib/stats/base/dists/erlang/cdf":"0z2","@stdlib/stats-base-dists-erlang-cdf":"0z3","@stdlib/stats/base/dists/erlang/ctor":"0z4","@stdlib/stats-base-dists-erlang-ctor":"0z5","@stdlib/stats/base/dists/erlang/entropy":"0z6","@stdlib/stats-base-dists-erlang-entropy":"0z7","@stdlib/stats/base/dists/erlang/kurtosis":"0z8","@stdlib/stats-base-dists-erlang-kurtosis":"0z9","@stdlib/stats/base/dists/erlang/logpdf":"0zA","@stdlib/stats-base-dists-erlang-logpdf":"0zB","@stdlib/stats/base/dists/erlang/mean":"0zC","@stdlib/stats-base-dists-erlang-mean":"0zD","@stdlib/stats/base/dists/erlang/mgf":"0zE","@stdlib/stats-base-dists-erlang-mgf":"0zF","@stdlib/stats/base/dists/erlang/mode":"0zG","@stdlib/stats-base-dists-erlang-mode":"0zH","@stdlib/stats/base/dists/erlang":"0zI","@stdlib/stats-base-dists-erlang":"0zJ","@stdlib/stats/base/dists/erlang/pdf":"0zK","@stdlib/stats-base-dists-erlang-pdf":"0zL","@stdlib/stats/base/dists/erlang/quantile":"0zM","@stdlib/stats-base-dists-erlang-quantile":"0zN","@stdlib/stats/base/dists/erlang/skewness":"0zO","@stdlib/stats-base-dists-erlang-skewness":"0zP","@stdlib/stats/base/dists/erlang/stdev":"0zQ","@stdlib/stats-base-dists-erlang-stdev":"0zR","@stdlib/stats/base/dists/erlang/variance":"0zS","@stdlib/stats-base-dists-erlang-variance":"0zT","@stdlib/stats/base/dists/exponential/cdf":"0zU","@stdlib/stats-base-dists-exponential-cdf":"0zV","@stdlib/stats/base/dists/exponential/ctor":"0zW","@stdlib/stats-base-dists-exponential-ctor":"0zX","@stdlib/stats/base/dists/exponential/entropy":"0zY","@stdlib/stats-base-dists-exponential-entropy":"0zZ","@stdlib/stats/base/dists/exponential/kurtosis":"0za","@stdlib/stats-base-dists-exponential-kurtosis":"0zb","@stdlib/stats/base/dists/exponential/logcdf":"0zc","@stdlib/stats-base-dists-exponential-logcdf":"0zd","@stdlib/stats/base/dists/exponential/logpdf":"0ze","@stdlib/stats-base-dists-exponential-logpdf":"0zf","@stdlib/stats/base/dists/exponential/mean":"0zg","@stdlib/stats-base-dists-exponential-mean":"0zh","@stdlib/stats/base/dists/exponential/median":"0zi","@stdlib/stats-base-dists-exponential-median":"0zj","@stdlib/stats/base/dists/exponential/mgf":"0zk","@stdlib/stats-base-dists-exponential-mgf":"0zl","@stdlib/stats/base/dists/exponential/mode":"0zm","@stdlib/stats-base-dists-exponential-mode":"0zn","@stdlib/stats/base/dists/exponential":"0zo","@stdlib/stats-base-dists-exponential":"0zp","@stdlib/stats/base/dists/exponential/pdf":"0zq","@stdlib/stats-base-dists-exponential-pdf":"0zr","@stdlib/stats/base/dists/exponential/quantile":"0zs","@stdlib/stats-base-dists-exponential-quantile":"0zt","@stdlib/stats/base/dists/exponential/skewness":"0zu","@stdlib/stats-base-dists-exponential-skewness":"0zv","@stdlib/stats/base/dists/exponential/stdev":"0zw","@stdlib/stats-base-dists-exponential-stdev":"0zx","@stdlib/stats/base/dists/exponential/variance":"0zy","@stdlib/stats-base-dists-exponential-variance":"0zz","@stdlib/stats/base/dists/f/cdf":"100","@stdlib/stats-base-dists-f-cdf":"101","@stdlib/stats/base/dists/f/ctor":"102","@stdlib/stats-base-dists-f-ctor":"103","@stdlib/stats/base/dists/f/entropy":"104","@stdlib/stats-base-dists-f-entropy":"105","@stdlib/stats/base/dists/f/kurtosis":"106","@stdlib/stats-base-dists-f-kurtosis":"107","@stdlib/stats/base/dists/f/mean":"108","@stdlib/stats-base-dists-f-mean":"109","@stdlib/stats/base/dists/f/mode":"10A","@stdlib/stats-base-dists-f-mode":"10B","@stdlib/stats/base/dists/f":"10C","@stdlib/stats-base-dists-f":"10D","@stdlib/stats/base/dists/f/pdf":"10E","@stdlib/stats-base-dists-f-pdf":"10F","@stdlib/stats/base/dists/f/quantile":"10G","@stdlib/stats-base-dists-f-quantile":"10H","@stdlib/stats/base/dists/f/skewness":"10I","@stdlib/stats-base-dists-f-skewness":"10J","@stdlib/stats/base/dists/f/stdev":"10K","@stdlib/stats-base-dists-f-stdev":"10L","@stdlib/stats/base/dists/f/variance":"10M","@stdlib/stats-base-dists-f-variance":"10N","@stdlib/stats/base/dists/frechet/cdf":"10O","@stdlib/stats-base-dists-frechet-cdf":"10P","@stdlib/stats/base/dists/frechet/ctor":"10Q","@stdlib/stats-base-dists-frechet-ctor":"10R","@stdlib/stats/base/dists/frechet/entropy":"10S","@stdlib/stats-base-dists-frechet-entropy":"10T","@stdlib/stats/base/dists/frechet/kurtosis":"10U","@stdlib/stats-base-dists-frechet-kurtosis":"10V","@stdlib/stats/base/dists/frechet/logcdf":"10W","@stdlib/stats-base-dists-frechet-logcdf":"10X","@stdlib/stats/base/dists/frechet/logpdf":"10Y","@stdlib/stats-base-dists-frechet-logpdf":"10Z","@stdlib/stats/base/dists/frechet/mean":"10a","@stdlib/stats-base-dists-frechet-mean":"10b","@stdlib/stats/base/dists/frechet/median":"10c","@stdlib/stats-base-dists-frechet-median":"10d","@stdlib/stats/base/dists/frechet/mode":"10e","@stdlib/stats-base-dists-frechet-mode":"10f","@stdlib/stats/base/dists/frechet":"10g","@stdlib/stats-base-dists-frechet":"10h","@stdlib/stats/base/dists/frechet/pdf":"10i","@stdlib/stats-base-dists-frechet-pdf":"10j","@stdlib/stats/base/dists/frechet/quantile":"10k","@stdlib/stats-base-dists-frechet-quantile":"10l","@stdlib/stats/base/dists/frechet/skewness":"10m","@stdlib/stats-base-dists-frechet-skewness":"10n","@stdlib/stats/base/dists/frechet/stdev":"10o","@stdlib/stats-base-dists-frechet-stdev":"10p","@stdlib/stats/base/dists/frechet/variance":"10q","@stdlib/stats-base-dists-frechet-variance":"10r","@stdlib/stats/base/dists/gamma/cdf":"10s","@stdlib/stats-base-dists-gamma-cdf":"10t","@stdlib/stats/base/dists/gamma/ctor":"10u","@stdlib/stats-base-dists-gamma-ctor":"10v","@stdlib/stats/base/dists/gamma/entropy":"10w","@stdlib/stats-base-dists-gamma-entropy":"10x","@stdlib/stats/base/dists/gamma/kurtosis":"10y","@stdlib/stats-base-dists-gamma-kurtosis":"10z","@stdlib/stats/base/dists/gamma/logcdf":"110","@stdlib/stats-base-dists-gamma-logcdf":"111","@stdlib/stats/base/dists/gamma/logpdf":"112","@stdlib/stats-base-dists-gamma-logpdf":"113","@stdlib/stats/base/dists/gamma/mean":"114","@stdlib/stats-base-dists-gamma-mean":"115","@stdlib/stats/base/dists/gamma/mgf":"116","@stdlib/stats-base-dists-gamma-mgf":"117","@stdlib/stats/base/dists/gamma/mode":"118","@stdlib/stats-base-dists-gamma-mode":"119","@stdlib/stats/base/dists/gamma":"11A","@stdlib/stats-base-dists-gamma":"11B","@stdlib/stats/base/dists/gamma/pdf":"11C","@stdlib/stats-base-dists-gamma-pdf":"11D","@stdlib/stats/base/dists/gamma/quantile":"11E","@stdlib/stats-base-dists-gamma-quantile":"11F","@stdlib/stats/base/dists/gamma/skewness":"11G","@stdlib/stats-base-dists-gamma-skewness":"11H","@stdlib/stats/base/dists/gamma/stdev":"11I","@stdlib/stats-base-dists-gamma-stdev":"11J","@stdlib/stats/base/dists/gamma/variance":"11K","@stdlib/stats-base-dists-gamma-variance":"11L","@stdlib/stats/base/dists/geometric/cdf":"11M","@stdlib/stats-base-dists-geometric-cdf":"11N","@stdlib/stats/base/dists/geometric/ctor":"11O","@stdlib/stats-base-dists-geometric-ctor":"11P","@stdlib/stats/base/dists/geometric/entropy":"11Q","@stdlib/stats-base-dists-geometric-entropy":"11R","@stdlib/stats/base/dists/geometric/kurtosis":"11S","@stdlib/stats-base-dists-geometric-kurtosis":"11T","@stdlib/stats/base/dists/geometric/logcdf":"11U","@stdlib/stats-base-dists-geometric-logcdf":"11V","@stdlib/stats/base/dists/geometric/logpmf":"11W","@stdlib/stats-base-dists-geometric-logpmf":"11X","@stdlib/stats/base/dists/geometric/mean":"11Y","@stdlib/stats-base-dists-geometric-mean":"11Z","@stdlib/stats/base/dists/geometric/median":"11a","@stdlib/stats-base-dists-geometric-median":"11b","@stdlib/stats/base/dists/geometric/mgf":"11c","@stdlib/stats-base-dists-geometric-mgf":"11d","@stdlib/stats/base/dists/geometric/mode":"11e","@stdlib/stats-base-dists-geometric-mode":"11f","@stdlib/stats/base/dists/geometric":"11g","@stdlib/stats-base-dists-geometric":"11h","@stdlib/stats/base/dists/geometric/pmf":"11i","@stdlib/stats-base-dists-geometric-pmf":"11j","@stdlib/stats/base/dists/geometric/quantile":"11k","@stdlib/stats-base-dists-geometric-quantile":"11l","@stdlib/stats/base/dists/geometric/skewness":"11m","@stdlib/stats-base-dists-geometric-skewness":"11n","@stdlib/stats/base/dists/geometric/stdev":"11o","@stdlib/stats-base-dists-geometric-stdev":"11p","@stdlib/stats/base/dists/geometric/variance":"11q","@stdlib/stats-base-dists-geometric-variance":"11r","@stdlib/stats/base/dists/gumbel/cdf":"11s","@stdlib/stats-base-dists-gumbel-cdf":"11t","@stdlib/stats/base/dists/gumbel/ctor":"11u","@stdlib/stats-base-dists-gumbel-ctor":"11v","@stdlib/stats/base/dists/gumbel/entropy":"11w","@stdlib/stats-base-dists-gumbel-entropy":"11x","@stdlib/stats/base/dists/gumbel/kurtosis":"11y","@stdlib/stats-base-dists-gumbel-kurtosis":"11z","@stdlib/stats/base/dists/gumbel/logcdf":"120","@stdlib/stats-base-dists-gumbel-logcdf":"121","@stdlib/stats/base/dists/gumbel/logpdf":"122","@stdlib/stats-base-dists-gumbel-logpdf":"123","@stdlib/stats/base/dists/gumbel/mean":"124","@stdlib/stats-base-dists-gumbel-mean":"125","@stdlib/stats/base/dists/gumbel/median":"126","@stdlib/stats-base-dists-gumbel-median":"127","@stdlib/stats/base/dists/gumbel/mgf":"128","@stdlib/stats-base-dists-gumbel-mgf":"129","@stdlib/stats/base/dists/gumbel/mode":"12A","@stdlib/stats-base-dists-gumbel-mode":"12B","@stdlib/stats/base/dists/gumbel":"12C","@stdlib/stats-base-dists-gumbel":"12D","@stdlib/stats/base/dists/gumbel/pdf":"12E","@stdlib/stats-base-dists-gumbel-pdf":"12F","@stdlib/stats/base/dists/gumbel/quantile":"12G","@stdlib/stats-base-dists-gumbel-quantile":"12H","@stdlib/stats/base/dists/gumbel/skewness":"12I","@stdlib/stats-base-dists-gumbel-skewness":"12J","@stdlib/stats/base/dists/gumbel/stdev":"12K","@stdlib/stats-base-dists-gumbel-stdev":"12L","@stdlib/stats/base/dists/gumbel/variance":"12M","@stdlib/stats-base-dists-gumbel-variance":"12N","@stdlib/stats/base/dists/hypergeometric/cdf":"12O","@stdlib/stats-base-dists-hypergeometric-cdf":"12P","@stdlib/stats/base/dists/hypergeometric/ctor":"12Q","@stdlib/stats-base-dists-hypergeometric-ctor":"12R","@stdlib/stats/base/dists/hypergeometric/kurtosis":"12S","@stdlib/stats-base-dists-hypergeometric-kurtosis":"12T","@stdlib/stats/base/dists/hypergeometric/logpmf":"12U","@stdlib/stats-base-dists-hypergeometric-logpmf":"12V","@stdlib/stats/base/dists/hypergeometric/mean":"12W","@stdlib/stats-base-dists-hypergeometric-mean":"12X","@stdlib/stats/base/dists/hypergeometric/mode":"12Y","@stdlib/stats-base-dists-hypergeometric-mode":"12Z","@stdlib/stats/base/dists/hypergeometric":"12a","@stdlib/stats-base-dists-hypergeometric":"12b","@stdlib/stats/base/dists/hypergeometric/pmf":"12c","@stdlib/stats-base-dists-hypergeometric-pmf":"12d","@stdlib/stats/base/dists/hypergeometric/quantile":"12e","@stdlib/stats-base-dists-hypergeometric-quantile":"12f","@stdlib/stats/base/dists/hypergeometric/skewness":"12g","@stdlib/stats-base-dists-hypergeometric-skewness":"12h","@stdlib/stats/base/dists/hypergeometric/stdev":"12i","@stdlib/stats-base-dists-hypergeometric-stdev":"12j","@stdlib/stats/base/dists/hypergeometric/variance":"12k","@stdlib/stats-base-dists-hypergeometric-variance":"12l","@stdlib/stats/base/dists/invgamma/cdf":"12m","@stdlib/stats-base-dists-invgamma-cdf":"12n","@stdlib/stats/base/dists/invgamma/ctor":"12o","@stdlib/stats-base-dists-invgamma-ctor":"12p","@stdlib/stats/base/dists/invgamma/entropy":"12q","@stdlib/stats-base-dists-invgamma-entropy":"12r","@stdlib/stats/base/dists/invgamma/kurtosis":"12s","@stdlib/stats-base-dists-invgamma-kurtosis":"12t","@stdlib/stats/base/dists/invgamma/logpdf":"12u","@stdlib/stats-base-dists-invgamma-logpdf":"12v","@stdlib/stats/base/dists/invgamma/mean":"12w","@stdlib/stats-base-dists-invgamma-mean":"12x","@stdlib/stats/base/dists/invgamma/mode":"12y","@stdlib/stats-base-dists-invgamma-mode":"12z","@stdlib/stats/base/dists/invgamma":"130","@stdlib/stats-base-dists-invgamma":"131","@stdlib/stats/base/dists/invgamma/pdf":"132","@stdlib/stats-base-dists-invgamma-pdf":"133","@stdlib/stats/base/dists/invgamma/quantile":"134","@stdlib/stats-base-dists-invgamma-quantile":"135","@stdlib/stats/base/dists/invgamma/skewness":"136","@stdlib/stats-base-dists-invgamma-skewness":"137","@stdlib/stats/base/dists/invgamma/stdev":"138","@stdlib/stats-base-dists-invgamma-stdev":"139","@stdlib/stats/base/dists/invgamma/variance":"13A","@stdlib/stats-base-dists-invgamma-variance":"13B","@stdlib/stats/base/dists/kumaraswamy/cdf":"13C","@stdlib/stats-base-dists-kumaraswamy-cdf":"13D","@stdlib/stats/base/dists/kumaraswamy/ctor":"13E","@stdlib/stats-base-dists-kumaraswamy-ctor":"13F","@stdlib/stats/base/dists/kumaraswamy/kurtosis":"13G","@stdlib/stats-base-dists-kumaraswamy-kurtosis":"13H","@stdlib/stats/base/dists/kumaraswamy/logcdf":"13I","@stdlib/stats-base-dists-kumaraswamy-logcdf":"13J","@stdlib/stats/base/dists/kumaraswamy/logpdf":"13K","@stdlib/stats-base-dists-kumaraswamy-logpdf":"13L","@stdlib/stats/base/dists/kumaraswamy/mean":"13M","@stdlib/stats-base-dists-kumaraswamy-mean":"13N","@stdlib/stats/base/dists/kumaraswamy/median":"13O","@stdlib/stats-base-dists-kumaraswamy-median":"13P","@stdlib/stats/base/dists/kumaraswamy/mode":"13Q","@stdlib/stats-base-dists-kumaraswamy-mode":"13R","@stdlib/stats/base/dists/kumaraswamy":"13S","@stdlib/stats-base-dists-kumaraswamy":"13T","@stdlib/stats/base/dists/kumaraswamy/pdf":"13U","@stdlib/stats-base-dists-kumaraswamy-pdf":"13V","@stdlib/stats/base/dists/kumaraswamy/quantile":"13W","@stdlib/stats-base-dists-kumaraswamy-quantile":"13X","@stdlib/stats/base/dists/kumaraswamy/skewness":"13Y","@stdlib/stats-base-dists-kumaraswamy-skewness":"13Z","@stdlib/stats/base/dists/kumaraswamy/stdev":"13a","@stdlib/stats-base-dists-kumaraswamy-stdev":"13b","@stdlib/stats/base/dists/kumaraswamy/variance":"13c","@stdlib/stats-base-dists-kumaraswamy-variance":"13d","@stdlib/stats/base/dists/laplace/cdf":"13e","@stdlib/stats-base-dists-laplace-cdf":"13f","@stdlib/stats/base/dists/laplace/ctor":"13g","@stdlib/stats-base-dists-laplace-ctor":"13h","@stdlib/stats/base/dists/laplace/entropy":"13i","@stdlib/stats-base-dists-laplace-entropy":"13j","@stdlib/stats/base/dists/laplace/kurtosis":"13k","@stdlib/stats-base-dists-laplace-kurtosis":"13l","@stdlib/stats/base/dists/laplace/logcdf":"13m","@stdlib/stats-base-dists-laplace-logcdf":"13n","@stdlib/stats/base/dists/laplace/logpdf":"13o","@stdlib/stats-base-dists-laplace-logpdf":"13p","@stdlib/stats/base/dists/laplace/mean":"13q","@stdlib/stats-base-dists-laplace-mean":"13r","@stdlib/stats/base/dists/laplace/median":"13s","@stdlib/stats-base-dists-laplace-median":"13t","@stdlib/stats/base/dists/laplace/mgf":"13u","@stdlib/stats-base-dists-laplace-mgf":"13v","@stdlib/stats/base/dists/laplace/mode":"13w","@stdlib/stats-base-dists-laplace-mode":"13x","@stdlib/stats/base/dists/laplace":"13y","@stdlib/stats-base-dists-laplace":"13z","@stdlib/stats/base/dists/laplace/pdf":"140","@stdlib/stats-base-dists-laplace-pdf":"141","@stdlib/stats/base/dists/laplace/quantile":"142","@stdlib/stats-base-dists-laplace-quantile":"143","@stdlib/stats/base/dists/laplace/skewness":"144","@stdlib/stats-base-dists-laplace-skewness":"145","@stdlib/stats/base/dists/laplace/stdev":"146","@stdlib/stats-base-dists-laplace-stdev":"147","@stdlib/stats/base/dists/laplace/variance":"148","@stdlib/stats-base-dists-laplace-variance":"149","@stdlib/stats/base/dists/levy/cdf":"14A","@stdlib/stats-base-dists-levy-cdf":"14B","@stdlib/stats/base/dists/levy/ctor":"14C","@stdlib/stats-base-dists-levy-ctor":"14D","@stdlib/stats/base/dists/levy/entropy":"14E","@stdlib/stats-base-dists-levy-entropy":"14F","@stdlib/stats/base/dists/levy/logcdf":"14G","@stdlib/stats-base-dists-levy-logcdf":"14H","@stdlib/stats/base/dists/levy/logpdf":"14I","@stdlib/stats-base-dists-levy-logpdf":"14J","@stdlib/stats/base/dists/levy/mean":"14K","@stdlib/stats-base-dists-levy-mean":"14L","@stdlib/stats/base/dists/levy/median":"14M","@stdlib/stats-base-dists-levy-median":"14N","@stdlib/stats/base/dists/levy/mode":"14O","@stdlib/stats-base-dists-levy-mode":"14P","@stdlib/stats/base/dists/levy":"14Q","@stdlib/stats-base-dists-levy":"14R","@stdlib/stats/base/dists/levy/pdf":"14S","@stdlib/stats-base-dists-levy-pdf":"14T","@stdlib/stats/base/dists/levy/quantile":"14U","@stdlib/stats-base-dists-levy-quantile":"14V","@stdlib/stats/base/dists/levy/stdev":"14W","@stdlib/stats-base-dists-levy-stdev":"14X","@stdlib/stats/base/dists/levy/variance":"14Y","@stdlib/stats-base-dists-levy-variance":"14Z","@stdlib/stats/base/dists/logistic/cdf":"14a","@stdlib/stats-base-dists-logistic-cdf":"14b","@stdlib/stats/base/dists/logistic/ctor":"14c","@stdlib/stats-base-dists-logistic-ctor":"14d","@stdlib/stats/base/dists/logistic/entropy":"14e","@stdlib/stats-base-dists-logistic-entropy":"14f","@stdlib/stats/base/dists/logistic/kurtosis":"14g","@stdlib/stats-base-dists-logistic-kurtosis":"14h","@stdlib/stats/base/dists/logistic/logcdf":"14i","@stdlib/stats-base-dists-logistic-logcdf":"14j","@stdlib/stats/base/dists/logistic/logpdf":"14k","@stdlib/stats-base-dists-logistic-logpdf":"14l","@stdlib/stats/base/dists/logistic/mean":"14m","@stdlib/stats-base-dists-logistic-mean":"14n","@stdlib/stats/base/dists/logistic/median":"14o","@stdlib/stats-base-dists-logistic-median":"14p","@stdlib/stats/base/dists/logistic/mgf":"14q","@stdlib/stats-base-dists-logistic-mgf":"14r","@stdlib/stats/base/dists/logistic/mode":"14s","@stdlib/stats-base-dists-logistic-mode":"14t","@stdlib/stats/base/dists/logistic":"14u","@stdlib/stats-base-dists-logistic":"14v","@stdlib/stats/base/dists/logistic/pdf":"14w","@stdlib/stats-base-dists-logistic-pdf":"14x","@stdlib/stats/base/dists/logistic/quantile":"14y","@stdlib/stats-base-dists-logistic-quantile":"14z","@stdlib/stats/base/dists/logistic/skewness":"150","@stdlib/stats-base-dists-logistic-skewness":"151","@stdlib/stats/base/dists/logistic/stdev":"152","@stdlib/stats-base-dists-logistic-stdev":"153","@stdlib/stats/base/dists/logistic/variance":"154","@stdlib/stats-base-dists-logistic-variance":"155","@stdlib/stats/base/dists/lognormal/cdf":"156","@stdlib/stats-base-dists-lognormal-cdf":"157","@stdlib/stats/base/dists/lognormal/ctor":"158","@stdlib/stats-base-dists-lognormal-ctor":"159","@stdlib/stats/base/dists/lognormal/entropy":"15A","@stdlib/stats-base-dists-lognormal-entropy":"15B","@stdlib/stats/base/dists/lognormal/kurtosis":"15C","@stdlib/stats-base-dists-lognormal-kurtosis":"15D","@stdlib/stats/base/dists/lognormal/logpdf":"15E","@stdlib/stats-base-dists-lognormal-logpdf":"15F","@stdlib/stats/base/dists/lognormal/mean":"15G","@stdlib/stats-base-dists-lognormal-mean":"15H","@stdlib/stats/base/dists/lognormal/median":"15I","@stdlib/stats-base-dists-lognormal-median":"15J","@stdlib/stats/base/dists/lognormal/mode":"15K","@stdlib/stats-base-dists-lognormal-mode":"15L","@stdlib/stats/base/dists/lognormal":"15M","@stdlib/stats-base-dists-lognormal":"15N","@stdlib/stats/base/dists/lognormal/pdf":"15O","@stdlib/stats-base-dists-lognormal-pdf":"15P","@stdlib/stats/base/dists/lognormal/quantile":"15Q","@stdlib/stats-base-dists-lognormal-quantile":"15R","@stdlib/stats/base/dists/lognormal/skewness":"15S","@stdlib/stats-base-dists-lognormal-skewness":"15T","@stdlib/stats/base/dists/lognormal/stdev":"15U","@stdlib/stats-base-dists-lognormal-stdev":"15V","@stdlib/stats/base/dists/lognormal/variance":"15W","@stdlib/stats-base-dists-lognormal-variance":"15X","@stdlib/stats/base/dists/negative-binomial/cdf":"15Y","@stdlib/stats-base-dists-negative-binomial-cdf":"15Z","@stdlib/stats/base/dists/negative-binomial/ctor":"15a","@stdlib/stats-base-dists-negative-binomial-ctor":"15b","@stdlib/stats/base/dists/negative-binomial/kurtosis":"15c","@stdlib/stats-base-dists-negative-binomial-kurtosis":"15d","@stdlib/stats/base/dists/negative-binomial/logpmf":"15e","@stdlib/stats-base-dists-negative-binomial-logpmf":"15f","@stdlib/stats/base/dists/negative-binomial/mean":"15g","@stdlib/stats-base-dists-negative-binomial-mean":"15h","@stdlib/stats/base/dists/negative-binomial/mgf":"15i","@stdlib/stats-base-dists-negative-binomial-mgf":"15j","@stdlib/stats/base/dists/negative-binomial/mode":"15k","@stdlib/stats-base-dists-negative-binomial-mode":"15l","@stdlib/stats/base/dists/negative-binomial":"15m","@stdlib/stats-base-dists-negative-binomial":"15n","@stdlib/stats/base/dists/negative-binomial/pmf":"15o","@stdlib/stats-base-dists-negative-binomial-pmf":"15p","@stdlib/stats/base/dists/negative-binomial/quantile":"15q","@stdlib/stats-base-dists-negative-binomial-quantile":"15r","@stdlib/stats/base/dists/negative-binomial/skewness":"15s","@stdlib/stats-base-dists-negative-binomial-skewness":"15t","@stdlib/stats/base/dists/negative-binomial/stdev":"15u","@stdlib/stats-base-dists-negative-binomial-stdev":"15v","@stdlib/stats/base/dists/negative-binomial/variance":"15w","@stdlib/stats-base-dists-negative-binomial-variance":"15x","@stdlib/stats/base/dists/normal/cdf":"15y","@stdlib/stats-base-dists-normal-cdf":"15z","@stdlib/stats/base/dists/normal/ctor":"160","@stdlib/stats-base-dists-normal-ctor":"161","@stdlib/stats/base/dists/normal/entropy":"162","@stdlib/stats-base-dists-normal-entropy":"163","@stdlib/stats/base/dists/normal/kurtosis":"164","@stdlib/stats-base-dists-normal-kurtosis":"165","@stdlib/stats/base/dists/normal/logpdf":"166","@stdlib/stats-base-dists-normal-logpdf":"167","@stdlib/stats/base/dists/normal/mean":"168","@stdlib/stats-base-dists-normal-mean":"169","@stdlib/stats/base/dists/normal/median":"16A","@stdlib/stats-base-dists-normal-median":"16B","@stdlib/stats/base/dists/normal/mgf":"16C","@stdlib/stats-base-dists-normal-mgf":"16D","@stdlib/stats/base/dists/normal/mode":"16E","@stdlib/stats-base-dists-normal-mode":"16F","@stdlib/stats/base/dists/normal":"16G","@stdlib/stats-base-dists-normal":"16H","@stdlib/stats/base/dists/normal/pdf":"16I","@stdlib/stats-base-dists-normal-pdf":"16J","@stdlib/stats/base/dists/normal/quantile":"16K","@stdlib/stats-base-dists-normal-quantile":"16L","@stdlib/stats/base/dists/normal/skewness":"16M","@stdlib/stats-base-dists-normal-skewness":"16N","@stdlib/stats/base/dists/normal/stdev":"16O","@stdlib/stats-base-dists-normal-stdev":"16P","@stdlib/stats/base/dists/normal/variance":"16Q","@stdlib/stats-base-dists-normal-variance":"16R","@stdlib/stats/base/dists":"16S","@stdlib/stats-base-dists":"16T","@stdlib/stats/base/dists/pareto-type1/cdf":"16U","@stdlib/stats-base-dists-pareto-type1-cdf":"16V","@stdlib/stats/base/dists/pareto-type1/ctor":"16W","@stdlib/stats-base-dists-pareto-type1-ctor":"16X","@stdlib/stats/base/dists/pareto-type1/entropy":"16Y","@stdlib/stats-base-dists-pareto-type1-entropy":"16Z","@stdlib/stats/base/dists/pareto-type1/kurtosis":"16a","@stdlib/stats-base-dists-pareto-type1-kurtosis":"16b","@stdlib/stats/base/dists/pareto-type1/logcdf":"16c","@stdlib/stats-base-dists-pareto-type1-logcdf":"16d","@stdlib/stats/base/dists/pareto-type1/logpdf":"16e","@stdlib/stats-base-dists-pareto-type1-logpdf":"16f","@stdlib/stats/base/dists/pareto-type1/mean":"16g","@stdlib/stats-base-dists-pareto-type1-mean":"16h","@stdlib/stats/base/dists/pareto-type1/median":"16i","@stdlib/stats-base-dists-pareto-type1-median":"16j","@stdlib/stats/base/dists/pareto-type1/mode":"16k","@stdlib/stats-base-dists-pareto-type1-mode":"16l","@stdlib/stats/base/dists/pareto-type1":"16m","@stdlib/stats-base-dists-pareto-type1":"16n","@stdlib/stats/base/dists/pareto-type1/pdf":"16o","@stdlib/stats-base-dists-pareto-type1-pdf":"16p","@stdlib/stats/base/dists/pareto-type1/quantile":"16q","@stdlib/stats-base-dists-pareto-type1-quantile":"16r","@stdlib/stats/base/dists/pareto-type1/skewness":"16s","@stdlib/stats-base-dists-pareto-type1-skewness":"16t","@stdlib/stats/base/dists/pareto-type1/stdev":"16u","@stdlib/stats-base-dists-pareto-type1-stdev":"16v","@stdlib/stats/base/dists/pareto-type1/variance":"16w","@stdlib/stats-base-dists-pareto-type1-variance":"16x","@stdlib/stats/base/dists/poisson/cdf":"16y","@stdlib/stats-base-dists-poisson-cdf":"16z","@stdlib/stats/base/dists/poisson/ctor":"170","@stdlib/stats-base-dists-poisson-ctor":"171","@stdlib/stats/base/dists/poisson/entropy":"172","@stdlib/stats-base-dists-poisson-entropy":"173","@stdlib/stats/base/dists/poisson/kurtosis":"174","@stdlib/stats-base-dists-poisson-kurtosis":"175","@stdlib/stats/base/dists/poisson/logpmf":"176","@stdlib/stats-base-dists-poisson-logpmf":"177","@stdlib/stats/base/dists/poisson/mean":"178","@stdlib/stats-base-dists-poisson-mean":"179","@stdlib/stats/base/dists/poisson/median":"17A","@stdlib/stats-base-dists-poisson-median":"17B","@stdlib/stats/base/dists/poisson/mgf":"17C","@stdlib/stats-base-dists-poisson-mgf":"17D","@stdlib/stats/base/dists/poisson/mode":"17E","@stdlib/stats-base-dists-poisson-mode":"17F","@stdlib/stats/base/dists/poisson":"17G","@stdlib/stats-base-dists-poisson":"17H","@stdlib/stats/base/dists/poisson/pmf":"17I","@stdlib/stats-base-dists-poisson-pmf":"17J","@stdlib/stats/base/dists/poisson/quantile":"17K","@stdlib/stats-base-dists-poisson-quantile":"17L","@stdlib/stats/base/dists/poisson/skewness":"17M","@stdlib/stats-base-dists-poisson-skewness":"17N","@stdlib/stats/base/dists/poisson/stdev":"17O","@stdlib/stats-base-dists-poisson-stdev":"17P","@stdlib/stats/base/dists/poisson/variance":"17Q","@stdlib/stats-base-dists-poisson-variance":"17R","@stdlib/stats/base/dists/rayleigh/cdf":"17S","@stdlib/stats-base-dists-rayleigh-cdf":"17T","@stdlib/stats/base/dists/rayleigh/ctor":"17U","@stdlib/stats-base-dists-rayleigh-ctor":"17V","@stdlib/stats/base/dists/rayleigh/entropy":"17W","@stdlib/stats-base-dists-rayleigh-entropy":"17X","@stdlib/stats/base/dists/rayleigh/kurtosis":"17Y","@stdlib/stats-base-dists-rayleigh-kurtosis":"17Z","@stdlib/stats/base/dists/rayleigh/logcdf":"17a","@stdlib/stats-base-dists-rayleigh-logcdf":"17b","@stdlib/stats/base/dists/rayleigh/logpdf":"17c","@stdlib/stats-base-dists-rayleigh-logpdf":"17d","@stdlib/stats/base/dists/rayleigh/mean":"17e","@stdlib/stats-base-dists-rayleigh-mean":"17f","@stdlib/stats/base/dists/rayleigh/median":"17g","@stdlib/stats-base-dists-rayleigh-median":"17h","@stdlib/stats/base/dists/rayleigh/mgf":"17i","@stdlib/stats-base-dists-rayleigh-mgf":"17j","@stdlib/stats/base/dists/rayleigh/mode":"17k","@stdlib/stats-base-dists-rayleigh-mode":"17l","@stdlib/stats/base/dists/rayleigh":"17m","@stdlib/stats-base-dists-rayleigh":"17n","@stdlib/stats/base/dists/rayleigh/pdf":"17o","@stdlib/stats-base-dists-rayleigh-pdf":"17p","@stdlib/stats/base/dists/rayleigh/quantile":"17q","@stdlib/stats-base-dists-rayleigh-quantile":"17r","@stdlib/stats/base/dists/rayleigh/skewness":"17s","@stdlib/stats-base-dists-rayleigh-skewness":"17t","@stdlib/stats/base/dists/rayleigh/stdev":"17u","@stdlib/stats-base-dists-rayleigh-stdev":"17v","@stdlib/stats/base/dists/rayleigh/variance":"17w","@stdlib/stats-base-dists-rayleigh-variance":"17x","@stdlib/stats/base/dists/signrank/cdf":"17y","@stdlib/stats-base-dists-signrank-cdf":"17z","@stdlib/stats/base/dists/signrank":"180","@stdlib/stats-base-dists-signrank":"181","@stdlib/stats/base/dists/signrank/pdf":"182","@stdlib/stats-base-dists-signrank-pdf":"183","@stdlib/stats/base/dists/signrank/quantile":"184","@stdlib/stats-base-dists-signrank-quantile":"185","@stdlib/stats/base/dists/t/cdf":"186","@stdlib/stats-base-dists-t-cdf":"187","@stdlib/stats/base/dists/t/ctor":"188","@stdlib/stats-base-dists-t-ctor":"189","@stdlib/stats/base/dists/t/entropy":"18A","@stdlib/stats-base-dists-t-entropy":"18B","@stdlib/stats/base/dists/t/kurtosis":"18C","@stdlib/stats-base-dists-t-kurtosis":"18D","@stdlib/stats/base/dists/t/logcdf":"18E","@stdlib/stats-base-dists-t-logcdf":"18F","@stdlib/stats/base/dists/t/logpdf":"18G","@stdlib/stats-base-dists-t-logpdf":"18H","@stdlib/stats/base/dists/t/mean":"18I","@stdlib/stats-base-dists-t-mean":"18J","@stdlib/stats/base/dists/t/median":"18K","@stdlib/stats-base-dists-t-median":"18L","@stdlib/stats/base/dists/t/mode":"18M","@stdlib/stats-base-dists-t-mode":"18N","@stdlib/stats/base/dists/t":"18O","@stdlib/stats-base-dists-t":"18P","@stdlib/stats/base/dists/t/pdf":"18Q","@stdlib/stats-base-dists-t-pdf":"18R","@stdlib/stats/base/dists/t/quantile":"18S","@stdlib/stats-base-dists-t-quantile":"18T","@stdlib/stats/base/dists/t/skewness":"18U","@stdlib/stats-base-dists-t-skewness":"18V","@stdlib/stats/base/dists/t/stdev":"18W","@stdlib/stats-base-dists-t-stdev":"18X","@stdlib/stats/base/dists/t/variance":"18Y","@stdlib/stats-base-dists-t-variance":"18Z","@stdlib/stats/base/dists/triangular/cdf":"18a","@stdlib/stats-base-dists-triangular-cdf":"18b","@stdlib/stats/base/dists/triangular/ctor":"18c","@stdlib/stats-base-dists-triangular-ctor":"18d","@stdlib/stats/base/dists/triangular/entropy":"18e","@stdlib/stats-base-dists-triangular-entropy":"18f","@stdlib/stats/base/dists/triangular/kurtosis":"18g","@stdlib/stats-base-dists-triangular-kurtosis":"18h","@stdlib/stats/base/dists/triangular/logcdf":"18i","@stdlib/stats-base-dists-triangular-logcdf":"18j","@stdlib/stats/base/dists/triangular/logpdf":"18k","@stdlib/stats-base-dists-triangular-logpdf":"18l","@stdlib/stats/base/dists/triangular/mean":"18m","@stdlib/stats-base-dists-triangular-mean":"18n","@stdlib/stats/base/dists/triangular/median":"18o","@stdlib/stats-base-dists-triangular-median":"18p","@stdlib/stats/base/dists/triangular/mgf":"18q","@stdlib/stats-base-dists-triangular-mgf":"18r","@stdlib/stats/base/dists/triangular/mode":"18s","@stdlib/stats-base-dists-triangular-mode":"18t","@stdlib/stats/base/dists/triangular":"18u","@stdlib/stats-base-dists-triangular":"18v","@stdlib/stats/base/dists/triangular/pdf":"18w","@stdlib/stats-base-dists-triangular-pdf":"18x","@stdlib/stats/base/dists/triangular/quantile":"18y","@stdlib/stats-base-dists-triangular-quantile":"18z","@stdlib/stats/base/dists/triangular/skewness":"190","@stdlib/stats-base-dists-triangular-skewness":"191","@stdlib/stats/base/dists/triangular/stdev":"192","@stdlib/stats-base-dists-triangular-stdev":"193","@stdlib/stats/base/dists/triangular/variance":"194","@stdlib/stats-base-dists-triangular-variance":"195","@stdlib/stats/base/dists/truncated-normal":"196","@stdlib/stats-base-dists-truncated-normal":"197","@stdlib/stats/base/dists/truncated-normal/pdf":"198","@stdlib/stats-base-dists-truncated-normal-pdf":"199","@stdlib/stats/base/dists/uniform/cdf":"19A","@stdlib/stats-base-dists-uniform-cdf":"19B","@stdlib/stats/base/dists/uniform/ctor":"19C","@stdlib/stats-base-dists-uniform-ctor":"19D","@stdlib/stats/base/dists/uniform/entropy":"19E","@stdlib/stats-base-dists-uniform-entropy":"19F","@stdlib/stats/base/dists/uniform/kurtosis":"19G","@stdlib/stats-base-dists-uniform-kurtosis":"19H","@stdlib/stats/base/dists/uniform/logcdf":"19I","@stdlib/stats-base-dists-uniform-logcdf":"19J","@stdlib/stats/base/dists/uniform/logpdf":"19K","@stdlib/stats-base-dists-uniform-logpdf":"19L","@stdlib/stats/base/dists/uniform/mean":"19M","@stdlib/stats-base-dists-uniform-mean":"19N","@stdlib/stats/base/dists/uniform/median":"19O","@stdlib/stats-base-dists-uniform-median":"19P","@stdlib/stats/base/dists/uniform/mgf":"19Q","@stdlib/stats-base-dists-uniform-mgf":"19R","@stdlib/stats/base/dists/uniform":"19S","@stdlib/stats-base-dists-uniform":"19T","@stdlib/stats/base/dists/uniform/pdf":"19U","@stdlib/stats-base-dists-uniform-pdf":"19V","@stdlib/stats/base/dists/uniform/quantile":"19W","@stdlib/stats-base-dists-uniform-quantile":"19X","@stdlib/stats/base/dists/uniform/skewness":"19Y","@stdlib/stats-base-dists-uniform-skewness":"19Z","@stdlib/stats/base/dists/uniform/stdev":"19a","@stdlib/stats-base-dists-uniform-stdev":"19b","@stdlib/stats/base/dists/uniform/variance":"19c","@stdlib/stats-base-dists-uniform-variance":"19d","@stdlib/stats/base/dists/weibull/cdf":"19e","@stdlib/stats-base-dists-weibull-cdf":"19f","@stdlib/stats/base/dists/weibull/ctor":"19g","@stdlib/stats-base-dists-weibull-ctor":"19h","@stdlib/stats/base/dists/weibull/entropy":"19i","@stdlib/stats-base-dists-weibull-entropy":"19j","@stdlib/stats/base/dists/weibull/kurtosis":"19k","@stdlib/stats-base-dists-weibull-kurtosis":"19l","@stdlib/stats/base/dists/weibull/logcdf":"19m","@stdlib/stats-base-dists-weibull-logcdf":"19n","@stdlib/stats/base/dists/weibull/logpdf":"19o","@stdlib/stats-base-dists-weibull-logpdf":"19p","@stdlib/stats/base/dists/weibull/mean":"19q","@stdlib/stats-base-dists-weibull-mean":"19r","@stdlib/stats/base/dists/weibull/median":"19s","@stdlib/stats-base-dists-weibull-median":"19t","@stdlib/stats/base/dists/weibull/mgf":"19u","@stdlib/stats-base-dists-weibull-mgf":"19v","@stdlib/stats/base/dists/weibull/mode":"19w","@stdlib/stats-base-dists-weibull-mode":"19x","@stdlib/stats/base/dists/weibull":"19y","@stdlib/stats-base-dists-weibull":"19z","@stdlib/stats/base/dists/weibull/pdf":"1A0","@stdlib/stats-base-dists-weibull-pdf":"1A1","@stdlib/stats/base/dists/weibull/quantile":"1A2","@stdlib/stats-base-dists-weibull-quantile":"1A3","@stdlib/stats/base/dists/weibull/skewness":"1A4","@stdlib/stats-base-dists-weibull-skewness":"1A5","@stdlib/stats/base/dists/weibull/stdev":"1A6","@stdlib/stats-base-dists-weibull-stdev":"1A7","@stdlib/stats/base/dists/weibull/variance":"1A8","@stdlib/stats-base-dists-weibull-variance":"1A9","@stdlib/stats/base/dmax":"1AA","@stdlib/stats-base-dmax":"1AB","@stdlib/stats/base/dmaxabs":"1AC","@stdlib/stats-base-dmaxabs":"1AD","@stdlib/stats/base/dmaxabssorted":"1AE","@stdlib/stats-base-dmaxabssorted":"1AF","@stdlib/stats/base/dmaxsorted":"1AG","@stdlib/stats-base-dmaxsorted":"1AH","@stdlib/stats/base/dmean":"1AI","@stdlib/stats-base-dmean":"1AJ","@stdlib/stats/base/dmeankbn":"1AK","@stdlib/stats-base-dmeankbn":"1AL","@stdlib/stats/base/dmeankbn2":"1AM","@stdlib/stats-base-dmeankbn2":"1AN","@stdlib/stats/base/dmeanli":"1AO","@stdlib/stats-base-dmeanli":"1AP","@stdlib/stats/base/dmeanlipw":"1AQ","@stdlib/stats-base-dmeanlipw":"1AR","@stdlib/stats/base/dmeanors":"1AS","@stdlib/stats-base-dmeanors":"1AT","@stdlib/stats/base/dmeanpn":"1AU","@stdlib/stats-base-dmeanpn":"1AV","@stdlib/stats/base/dmeanpw":"1AW","@stdlib/stats-base-dmeanpw":"1AX","@stdlib/stats/base/dmeanstdev":"1AY","@stdlib/stats-base-dmeanstdev":"1AZ","@stdlib/stats/base/dmeanstdevpn":"1Aa","@stdlib/stats-base-dmeanstdevpn":"1Ab","@stdlib/stats/base/dmeanvar":"1Ac","@stdlib/stats-base-dmeanvar":"1Ad","@stdlib/stats/base/dmeanvarpn":"1Ae","@stdlib/stats-base-dmeanvarpn":"1Af","@stdlib/stats/base/dmeanwd":"1Ag","@stdlib/stats-base-dmeanwd":"1Ah","@stdlib/stats/base/dmediansorted":"1Ai","@stdlib/stats-base-dmediansorted":"1Aj","@stdlib/stats/base/dmidrange":"1Ak","@stdlib/stats-base-dmidrange":"1Al","@stdlib/stats/base/dmin":"1Am","@stdlib/stats-base-dmin":"1An","@stdlib/stats/base/dminabs":"1Ao","@stdlib/stats-base-dminabs":"1Ap","@stdlib/stats/base/dminsorted":"1Aq","@stdlib/stats-base-dminsorted":"1Ar","@stdlib/stats/base/dmskmax":"1As","@stdlib/stats-base-dmskmax":"1At","@stdlib/stats/base/dmskmin":"1Au","@stdlib/stats-base-dmskmin":"1Av","@stdlib/stats/base/dmskrange":"1Aw","@stdlib/stats-base-dmskrange":"1Ax","@stdlib/stats/base/dnanmax":"1Ay","@stdlib/stats-base-dnanmax":"1Az","@stdlib/stats/base/dnanmaxabs":"1B0","@stdlib/stats-base-dnanmaxabs":"1B1","@stdlib/stats/base/dnanmean":"1B2","@stdlib/stats-base-dnanmean":"1B3","@stdlib/stats/base/dnanmeanors":"1B4","@stdlib/stats-base-dnanmeanors":"1B5","@stdlib/stats/base/dnanmeanpn":"1B6","@stdlib/stats-base-dnanmeanpn":"1B7","@stdlib/stats/base/dnanmeanpw":"1B8","@stdlib/stats-base-dnanmeanpw":"1B9","@stdlib/stats/base/dnanmeanwd":"1BA","@stdlib/stats-base-dnanmeanwd":"1BB","@stdlib/stats/base/dnanmin":"1BC","@stdlib/stats-base-dnanmin":"1BD","@stdlib/stats/base/dnanminabs":"1BE","@stdlib/stats-base-dnanminabs":"1BF","@stdlib/stats/base/dnanmskmax":"1BG","@stdlib/stats-base-dnanmskmax":"1BH","@stdlib/stats/base/dnanmskmin":"1BI","@stdlib/stats-base-dnanmskmin":"1BJ","@stdlib/stats/base/dnanmskrange":"1BK","@stdlib/stats-base-dnanmskrange":"1BL","@stdlib/stats/base/dnanrange":"1BM","@stdlib/stats-base-dnanrange":"1BN","@stdlib/stats/base/dnanstdev":"1BO","@stdlib/stats-base-dnanstdev":"1BP","@stdlib/stats/base/dnanstdevch":"1BQ","@stdlib/stats-base-dnanstdevch":"1BR","@stdlib/stats/base/dnanstdevpn":"1BS","@stdlib/stats-base-dnanstdevpn":"1BT","@stdlib/stats/base/dnanstdevtk":"1BU","@stdlib/stats-base-dnanstdevtk":"1BV","@stdlib/stats/base/dnanstdevwd":"1BW","@stdlib/stats-base-dnanstdevwd":"1BX","@stdlib/stats/base/dnanstdevyc":"1BY","@stdlib/stats-base-dnanstdevyc":"1BZ","@stdlib/stats/base/dnanvariance":"1Ba","@stdlib/stats-base-dnanvariance":"1Bb","@stdlib/stats/base/dnanvariancech":"1Bc","@stdlib/stats-base-dnanvariancech":"1Bd","@stdlib/stats/base/dnanvariancepn":"1Be","@stdlib/stats-base-dnanvariancepn":"1Bf","@stdlib/stats/base/dnanvariancetk":"1Bg","@stdlib/stats-base-dnanvariancetk":"1Bh","@stdlib/stats/base/dnanvariancewd":"1Bi","@stdlib/stats-base-dnanvariancewd":"1Bj","@stdlib/stats/base/dnanvarianceyc":"1Bk","@stdlib/stats-base-dnanvarianceyc":"1Bl","@stdlib/stats/base/drange":"1Bm","@stdlib/stats-base-drange":"1Bn","@stdlib/stats/base/dsem":"1Bo","@stdlib/stats-base-dsem":"1Bp","@stdlib/stats/base/dsemch":"1Bq","@stdlib/stats-base-dsemch":"1Br","@stdlib/stats/base/dsempn":"1Bs","@stdlib/stats-base-dsempn":"1Bt","@stdlib/stats/base/dsemtk":"1Bu","@stdlib/stats-base-dsemtk":"1Bv","@stdlib/stats/base/dsemwd":"1Bw","@stdlib/stats-base-dsemwd":"1Bx","@stdlib/stats/base/dsemyc":"1By","@stdlib/stats-base-dsemyc":"1Bz","@stdlib/stats/base/dsmean":"1C0","@stdlib/stats-base-dsmean":"1C1","@stdlib/stats/base/dsmeanors":"1C2","@stdlib/stats-base-dsmeanors":"1C3","@stdlib/stats/base/dsmeanpn":"1C4","@stdlib/stats-base-dsmeanpn":"1C5","@stdlib/stats/base/dsmeanpw":"1C6","@stdlib/stats-base-dsmeanpw":"1C7","@stdlib/stats/base/dsmeanwd":"1C8","@stdlib/stats-base-dsmeanwd":"1C9","@stdlib/stats/base/dsnanmean":"1CA","@stdlib/stats-base-dsnanmean":"1CB","@stdlib/stats/base/dsnanmeanors":"1CC","@stdlib/stats-base-dsnanmeanors":"1CD","@stdlib/stats/base/dsnanmeanpn":"1CE","@stdlib/stats-base-dsnanmeanpn":"1CF","@stdlib/stats/base/dsnanmeanwd":"1CG","@stdlib/stats-base-dsnanmeanwd":"1CH","@stdlib/stats/base/dstdev":"1CI","@stdlib/stats-base-dstdev":"1CJ","@stdlib/stats/base/dstdevch":"1CK","@stdlib/stats-base-dstdevch":"1CL","@stdlib/stats/base/dstdevpn":"1CM","@stdlib/stats-base-dstdevpn":"1CN","@stdlib/stats/base/dstdevtk":"1CO","@stdlib/stats-base-dstdevtk":"1CP","@stdlib/stats/base/dstdevwd":"1CQ","@stdlib/stats-base-dstdevwd":"1CR","@stdlib/stats/base/dstdevyc":"1CS","@stdlib/stats-base-dstdevyc":"1CT","@stdlib/stats/base/dsvariance":"1CU","@stdlib/stats-base-dsvariance":"1CV","@stdlib/stats/base/dsvariancepn":"1CW","@stdlib/stats-base-dsvariancepn":"1CX","@stdlib/stats/base/dvariance":"1CY","@stdlib/stats-base-dvariance":"1CZ","@stdlib/stats/base/dvariancech":"1Ca","@stdlib/stats-base-dvariancech":"1Cb","@stdlib/stats/base/dvariancepn":"1Cc","@stdlib/stats-base-dvariancepn":"1Cd","@stdlib/stats/base/dvariancetk":"1Ce","@stdlib/stats-base-dvariancetk":"1Cf","@stdlib/stats/base/dvariancewd":"1Cg","@stdlib/stats-base-dvariancewd":"1Ch","@stdlib/stats/base/dvarianceyc":"1Ci","@stdlib/stats-base-dvarianceyc":"1Cj","@stdlib/stats/base/dvarm":"1Ck","@stdlib/stats-base-dvarm":"1Cl","@stdlib/stats/base/dvarmpn":"1Cm","@stdlib/stats-base-dvarmpn":"1Cn","@stdlib/stats/base/dvarmtk":"1Co","@stdlib/stats-base-dvarmtk":"1Cp","@stdlib/stats/base/max-by":"1Cq","@stdlib/stats-base-max-by":"1Cr","@stdlib/stats/base/max":"1Cs","@stdlib/stats-base-max":"1Ct","@stdlib/stats/base/maxabs":"1Cu","@stdlib/stats-base-maxabs":"1Cv","@stdlib/stats/base/maxsorted":"1Cw","@stdlib/stats-base-maxsorted":"1Cx","@stdlib/stats/base/mean":"1Cy","@stdlib/stats-base-mean":"1Cz","@stdlib/stats/base/meankbn":"1D0","@stdlib/stats-base-meankbn":"1D1","@stdlib/stats/base/meankbn2":"1D2","@stdlib/stats-base-meankbn2":"1D3","@stdlib/stats/base/meanors":"1D4","@stdlib/stats-base-meanors":"1D5","@stdlib/stats/base/meanpn":"1D6","@stdlib/stats-base-meanpn":"1D7","@stdlib/stats/base/meanpw":"1D8","@stdlib/stats-base-meanpw":"1D9","@stdlib/stats/base/meanwd":"1DA","@stdlib/stats-base-meanwd":"1DB","@stdlib/stats/base/mediansorted":"1DC","@stdlib/stats-base-mediansorted":"1DD","@stdlib/stats/base/min-by":"1DE","@stdlib/stats-base-min-by":"1DF","@stdlib/stats/base/min":"1DG","@stdlib/stats-base-min":"1DH","@stdlib/stats/base/minabs":"1DI","@stdlib/stats-base-minabs":"1DJ","@stdlib/stats/base/minsorted":"1DK","@stdlib/stats-base-minsorted":"1DL","@stdlib/stats/base/mskmax":"1DM","@stdlib/stats-base-mskmax":"1DN","@stdlib/stats/base/mskmin":"1DO","@stdlib/stats-base-mskmin":"1DP","@stdlib/stats/base/mskrange":"1DQ","@stdlib/stats-base-mskrange":"1DR","@stdlib/stats/base/nanmax-by":"1DS","@stdlib/stats-base-nanmax-by":"1DT","@stdlib/stats/base/nanmax":"1DU","@stdlib/stats-base-nanmax":"1DV","@stdlib/stats/base/nanmaxabs":"1DW","@stdlib/stats-base-nanmaxabs":"1DX","@stdlib/stats/base/nanmean":"1DY","@stdlib/stats-base-nanmean":"1DZ","@stdlib/stats/base/nanmeanors":"1Da","@stdlib/stats-base-nanmeanors":"1Db","@stdlib/stats/base/nanmeanpn":"1Dc","@stdlib/stats-base-nanmeanpn":"1Dd","@stdlib/stats/base/nanmeanwd":"1De","@stdlib/stats-base-nanmeanwd":"1Df","@stdlib/stats/base/nanmin-by":"1Dg","@stdlib/stats-base-nanmin-by":"1Dh","@stdlib/stats/base/nanmin":"1Di","@stdlib/stats-base-nanmin":"1Dj","@stdlib/stats/base/nanminabs":"1Dk","@stdlib/stats-base-nanminabs":"1Dl","@stdlib/stats/base/nanmskmax":"1Dm","@stdlib/stats-base-nanmskmax":"1Dn","@stdlib/stats/base/nanmskmin":"1Do","@stdlib/stats-base-nanmskmin":"1Dp","@stdlib/stats/base/nanmskrange":"1Dq","@stdlib/stats-base-nanmskrange":"1Dr","@stdlib/stats/base/nanrange-by":"1Ds","@stdlib/stats-base-nanrange-by":"1Dt","@stdlib/stats/base/nanrange":"1Du","@stdlib/stats-base-nanrange":"1Dv","@stdlib/stats/base/nanstdev":"1Dw","@stdlib/stats-base-nanstdev":"1Dx","@stdlib/stats/base/nanstdevch":"1Dy","@stdlib/stats-base-nanstdevch":"1Dz","@stdlib/stats/base/nanstdevpn":"1E0","@stdlib/stats-base-nanstdevpn":"1E1","@stdlib/stats/base/nanstdevtk":"1E2","@stdlib/stats-base-nanstdevtk":"1E3","@stdlib/stats/base/nanstdevwd":"1E4","@stdlib/stats-base-nanstdevwd":"1E5","@stdlib/stats/base/nanstdevyc":"1E6","@stdlib/stats-base-nanstdevyc":"1E7","@stdlib/stats/base/nanvariance":"1E8","@stdlib/stats-base-nanvariance":"1E9","@stdlib/stats/base/nanvariancech":"1EA","@stdlib/stats-base-nanvariancech":"1EB","@stdlib/stats/base/nanvariancepn":"1EC","@stdlib/stats-base-nanvariancepn":"1ED","@stdlib/stats/base/nanvariancetk":"1EE","@stdlib/stats-base-nanvariancetk":"1EF","@stdlib/stats/base/nanvariancewd":"1EG","@stdlib/stats-base-nanvariancewd":"1EH","@stdlib/stats/base/nanvarianceyc":"1EI","@stdlib/stats-base-nanvarianceyc":"1EJ","@stdlib/stats/base":"1EK","@stdlib/stats-base":"1EL","@stdlib/stats/base/range-by":"1EM","@stdlib/stats-base-range-by":"1EN","@stdlib/stats/base/range":"1EO","@stdlib/stats-base-range":"1EP","@stdlib/stats/base/scumax":"1EQ","@stdlib/stats-base-scumax":"1ER","@stdlib/stats/base/scumaxabs":"1ES","@stdlib/stats-base-scumaxabs":"1ET","@stdlib/stats/base/scumin":"1EU","@stdlib/stats-base-scumin":"1EV","@stdlib/stats/base/scuminabs":"1EW","@stdlib/stats-base-scuminabs":"1EX","@stdlib/stats/base/sdsmean":"1EY","@stdlib/stats-base-sdsmean":"1EZ","@stdlib/stats/base/sdsmeanors":"1Ea","@stdlib/stats-base-sdsmeanors":"1Eb","@stdlib/stats/base/sdsnanmean":"1Ec","@stdlib/stats-base-sdsnanmean":"1Ed","@stdlib/stats/base/sdsnanmeanors":"1Ee","@stdlib/stats-base-sdsnanmeanors":"1Ef","@stdlib/stats/base/smax":"1Eg","@stdlib/stats-base-smax":"1Eh","@stdlib/stats/base/smaxabs":"1Ei","@stdlib/stats-base-smaxabs":"1Ej","@stdlib/stats/base/smaxabssorted":"1Ek","@stdlib/stats-base-smaxabssorted":"1El","@stdlib/stats/base/smaxsorted":"1Em","@stdlib/stats-base-smaxsorted":"1En","@stdlib/stats/base/smean":"1Eo","@stdlib/stats-base-smean":"1Ep","@stdlib/stats/base/smeankbn":"1Eq","@stdlib/stats-base-smeankbn":"1Er","@stdlib/stats/base/smeankbn2":"1Es","@stdlib/stats-base-smeankbn2":"1Et","@stdlib/stats/base/smeanli":"1Eu","@stdlib/stats-base-smeanli":"1Ev","@stdlib/stats/base/smeanlipw":"1Ew","@stdlib/stats-base-smeanlipw":"1Ex","@stdlib/stats/base/smeanors":"1Ey","@stdlib/stats-base-smeanors":"1Ez","@stdlib/stats/base/smeanpn":"1F0","@stdlib/stats-base-smeanpn":"1F1","@stdlib/stats/base/smeanpw":"1F2","@stdlib/stats-base-smeanpw":"1F3","@stdlib/stats/base/smeanwd":"1F4","@stdlib/stats-base-smeanwd":"1F5","@stdlib/stats/base/smediansorted":"1F6","@stdlib/stats-base-smediansorted":"1F7","@stdlib/stats/base/smidrange":"1F8","@stdlib/stats-base-smidrange":"1F9","@stdlib/stats/base/smin":"1FA","@stdlib/stats-base-smin":"1FB","@stdlib/stats/base/sminabs":"1FC","@stdlib/stats-base-sminabs":"1FD","@stdlib/stats/base/sminsorted":"1FE","@stdlib/stats-base-sminsorted":"1FF","@stdlib/stats/base/smskmax":"1FG","@stdlib/stats-base-smskmax":"1FH","@stdlib/stats/base/smskmin":"1FI","@stdlib/stats-base-smskmin":"1FJ","@stdlib/stats/base/smskrange":"1FK","@stdlib/stats-base-smskrange":"1FL","@stdlib/stats/base/snanmax":"1FM","@stdlib/stats-base-snanmax":"1FN","@stdlib/stats/base/snanmaxabs":"1FO","@stdlib/stats-base-snanmaxabs":"1FP","@stdlib/stats/base/snanmean":"1FQ","@stdlib/stats-base-snanmean":"1FR","@stdlib/stats/base/snanmeanors":"1FS","@stdlib/stats-base-snanmeanors":"1FT","@stdlib/stats/base/snanmeanpn":"1FU","@stdlib/stats-base-snanmeanpn":"1FV","@stdlib/stats/base/snanmeanwd":"1FW","@stdlib/stats-base-snanmeanwd":"1FX","@stdlib/stats/base/snanmin":"1FY","@stdlib/stats-base-snanmin":"1FZ","@stdlib/stats/base/snanminabs":"1Fa","@stdlib/stats-base-snanminabs":"1Fb","@stdlib/stats/base/snanmskmax":"1Fc","@stdlib/stats-base-snanmskmax":"1Fd","@stdlib/stats/base/snanmskmin":"1Fe","@stdlib/stats-base-snanmskmin":"1Ff","@stdlib/stats/base/snanmskrange":"1Fg","@stdlib/stats-base-snanmskrange":"1Fh","@stdlib/stats/base/snanrange":"1Fi","@stdlib/stats-base-snanrange":"1Fj","@stdlib/stats/base/snanstdev":"1Fk","@stdlib/stats-base-snanstdev":"1Fl","@stdlib/stats/base/snanstdevch":"1Fm","@stdlib/stats-base-snanstdevch":"1Fn","@stdlib/stats/base/snanstdevpn":"1Fo","@stdlib/stats-base-snanstdevpn":"1Fp","@stdlib/stats/base/snanstdevtk":"1Fq","@stdlib/stats-base-snanstdevtk":"1Fr","@stdlib/stats/base/snanstdevwd":"1Fs","@stdlib/stats-base-snanstdevwd":"1Ft","@stdlib/stats/base/snanstdevyc":"1Fu","@stdlib/stats-base-snanstdevyc":"1Fv","@stdlib/stats/base/snanvariance":"1Fw","@stdlib/stats-base-snanvariance":"1Fx","@stdlib/stats/base/snanvariancech":"1Fy","@stdlib/stats-base-snanvariancech":"1Fz","@stdlib/stats/base/snanvariancepn":"1G0","@stdlib/stats-base-snanvariancepn":"1G1","@stdlib/stats/base/snanvariancetk":"1G2","@stdlib/stats-base-snanvariancetk":"1G3","@stdlib/stats/base/snanvariancewd":"1G4","@stdlib/stats-base-snanvariancewd":"1G5","@stdlib/stats/base/snanvarianceyc":"1G6","@stdlib/stats-base-snanvarianceyc":"1G7","@stdlib/stats/base/srange":"1G8","@stdlib/stats-base-srange":"1G9","@stdlib/stats/base/sstdev":"1GA","@stdlib/stats-base-sstdev":"1GB","@stdlib/stats/base/sstdevch":"1GC","@stdlib/stats-base-sstdevch":"1GD","@stdlib/stats/base/sstdevpn":"1GE","@stdlib/stats-base-sstdevpn":"1GF","@stdlib/stats/base/sstdevtk":"1GG","@stdlib/stats-base-sstdevtk":"1GH","@stdlib/stats/base/sstdevwd":"1GI","@stdlib/stats-base-sstdevwd":"1GJ","@stdlib/stats/base/sstdevyc":"1GK","@stdlib/stats-base-sstdevyc":"1GL","@stdlib/stats/base/stdev":"1GM","@stdlib/stats-base-stdev":"1GN","@stdlib/stats/base/stdevch":"1GO","@stdlib/stats-base-stdevch":"1GP","@stdlib/stats/base/stdevpn":"1GQ","@stdlib/stats-base-stdevpn":"1GR","@stdlib/stats/base/stdevtk":"1GS","@stdlib/stats-base-stdevtk":"1GT","@stdlib/stats/base/stdevwd":"1GU","@stdlib/stats-base-stdevwd":"1GV","@stdlib/stats/base/stdevyc":"1GW","@stdlib/stats-base-stdevyc":"1GX","@stdlib/stats/base/svariance":"1GY","@stdlib/stats-base-svariance":"1GZ","@stdlib/stats/base/svariancech":"1Ga","@stdlib/stats-base-svariancech":"1Gb","@stdlib/stats/base/svariancepn":"1Gc","@stdlib/stats-base-svariancepn":"1Gd","@stdlib/stats/base/svariancetk":"1Ge","@stdlib/stats-base-svariancetk":"1Gf","@stdlib/stats/base/svariancewd":"1Gg","@stdlib/stats-base-svariancewd":"1Gh","@stdlib/stats/base/svarianceyc":"1Gi","@stdlib/stats-base-svarianceyc":"1Gj","@stdlib/stats/base/variance":"1Gk","@stdlib/stats-base-variance":"1Gl","@stdlib/stats/base/variancech":"1Gm","@stdlib/stats-base-variancech":"1Gn","@stdlib/stats/base/variancepn":"1Go","@stdlib/stats-base-variancepn":"1Gp","@stdlib/stats/base/variancetk":"1Gq","@stdlib/stats-base-variancetk":"1Gr","@stdlib/stats/base/variancewd":"1Gs","@stdlib/stats-base-variancewd":"1Gt","@stdlib/stats/base/varianceyc":"1Gu","@stdlib/stats-base-varianceyc":"1Gv","@stdlib/stats/binomial-test":"1Gw","@stdlib/stats-binomial-test":"1Gx","@stdlib/stats/chi2gof":"1Gy","@stdlib/stats-chi2gof":"1Gz","@stdlib/stats/chi2test":"1H0","@stdlib/stats-chi2test":"1H1","@stdlib/stats/fligner-test":"1H2","@stdlib/stats-fligner-test":"1H3","@stdlib/stats/incr/apcorr":"1H4","@stdlib/stats-incr-apcorr":"1H5","@stdlib/stats/incr/count":"1H6","@stdlib/stats-incr-count":"1H7","@stdlib/stats/incr/covariance":"1H8","@stdlib/stats-incr-covariance":"1H9","@stdlib/stats/incr/covmat":"1HA","@stdlib/stats-incr-covmat":"1HB","@stdlib/stats/incr/cv":"1HC","@stdlib/stats-incr-cv":"1HD","@stdlib/stats/incr/ewmean":"1HE","@stdlib/stats-incr-ewmean":"1HF","@stdlib/stats/incr/ewstdev":"1HG","@stdlib/stats-incr-ewstdev":"1HH","@stdlib/stats/incr/ewvariance":"1HI","@stdlib/stats-incr-ewvariance":"1HJ","@stdlib/stats/incr/gmean":"1HK","@stdlib/stats-incr-gmean":"1HL","@stdlib/stats/incr/grubbs":"1HM","@stdlib/stats-incr-grubbs":"1HN","@stdlib/stats/incr/hmean":"1HO","@stdlib/stats-incr-hmean":"1HP","@stdlib/stats/incr/kurtosis":"1HQ","@stdlib/stats-incr-kurtosis":"1HR","@stdlib/stats/incr/maape":"1HS","@stdlib/stats-incr-maape":"1HT","@stdlib/stats/incr/mae":"1HU","@stdlib/stats-incr-mae":"1HV","@stdlib/stats/incr/mapcorr":"1HW","@stdlib/stats-incr-mapcorr":"1HX","@stdlib/stats/incr/mape":"1HY","@stdlib/stats-incr-mape":"1HZ","@stdlib/stats/incr/max":"1Ha","@stdlib/stats-incr-max":"1Hb","@stdlib/stats/incr/maxabs":"1Hc","@stdlib/stats-incr-maxabs":"1Hd","@stdlib/stats/incr/mcovariance":"1He","@stdlib/stats-incr-mcovariance":"1Hf","@stdlib/stats/incr/mcv":"1Hg","@stdlib/stats-incr-mcv":"1Hh","@stdlib/stats/incr/mda":"1Hi","@stdlib/stats-incr-mda":"1Hj","@stdlib/stats/incr/me":"1Hk","@stdlib/stats-incr-me":"1Hl","@stdlib/stats/incr/mean":"1Hm","@stdlib/stats-incr-mean":"1Hn","@stdlib/stats/incr/meanabs":"1Ho","@stdlib/stats-incr-meanabs":"1Hp","@stdlib/stats/incr/meanabs2":"1Hq","@stdlib/stats-incr-meanabs2":"1Hr","@stdlib/stats/incr/meanstdev":"1Hs","@stdlib/stats-incr-meanstdev":"1Ht","@stdlib/stats/incr/meanvar":"1Hu","@stdlib/stats-incr-meanvar":"1Hv","@stdlib/stats/incr/mgmean":"1Hw","@stdlib/stats-incr-mgmean":"1Hx","@stdlib/stats/incr/mgrubbs":"1Hy","@stdlib/stats-incr-mgrubbs":"1Hz","@stdlib/stats/incr/mhmean":"1I0","@stdlib/stats-incr-mhmean":"1I1","@stdlib/stats/incr/midrange":"1I2","@stdlib/stats-incr-midrange":"1I3","@stdlib/stats/incr/min":"1I4","@stdlib/stats-incr-min":"1I5","@stdlib/stats/incr/minabs":"1I6","@stdlib/stats-incr-minabs":"1I7","@stdlib/stats/incr/minmax":"1I8","@stdlib/stats-incr-minmax":"1I9","@stdlib/stats/incr/minmaxabs":"1IA","@stdlib/stats-incr-minmaxabs":"1IB","@stdlib/stats/incr/mmaape":"1IC","@stdlib/stats-incr-mmaape":"1ID","@stdlib/stats/incr/mmae":"1IE","@stdlib/stats-incr-mmae":"1IF","@stdlib/stats/incr/mmape":"1IG","@stdlib/stats-incr-mmape":"1IH","@stdlib/stats/incr/mmax":"1II","@stdlib/stats-incr-mmax":"1IJ","@stdlib/stats/incr/mmaxabs":"1IK","@stdlib/stats-incr-mmaxabs":"1IL","@stdlib/stats/incr/mmda":"1IM","@stdlib/stats-incr-mmda":"1IN","@stdlib/stats/incr/mme":"1IO","@stdlib/stats-incr-mme":"1IP","@stdlib/stats/incr/mmean":"1IQ","@stdlib/stats-incr-mmean":"1IR","@stdlib/stats/incr/mmeanabs":"1IS","@stdlib/stats-incr-mmeanabs":"1IT","@stdlib/stats/incr/mmeanabs2":"1IU","@stdlib/stats-incr-mmeanabs2":"1IV","@stdlib/stats/incr/mmeanstdev":"1IW","@stdlib/stats-incr-mmeanstdev":"1IX","@stdlib/stats/incr/mmeanvar":"1IY","@stdlib/stats-incr-mmeanvar":"1IZ","@stdlib/stats/incr/mmidrange":"1Ia","@stdlib/stats-incr-mmidrange":"1Ib","@stdlib/stats/incr/mmin":"1Ic","@stdlib/stats-incr-mmin":"1Id","@stdlib/stats/incr/mminabs":"1Ie","@stdlib/stats-incr-mminabs":"1If","@stdlib/stats/incr/mminmax":"1Ig","@stdlib/stats-incr-mminmax":"1Ih","@stdlib/stats/incr/mminmaxabs":"1Ii","@stdlib/stats-incr-mminmaxabs":"1Ij","@stdlib/stats/incr/mmpe":"1Ik","@stdlib/stats-incr-mmpe":"1Il","@stdlib/stats/incr/mmse":"1Im","@stdlib/stats-incr-mmse":"1In","@stdlib/stats/incr/mpcorr":"1Io","@stdlib/stats-incr-mpcorr":"1Ip","@stdlib/stats/incr/mpcorr2":"1Iq","@stdlib/stats-incr-mpcorr2":"1Ir","@stdlib/stats/incr/mpcorrdist":"1Is","@stdlib/stats-incr-mpcorrdist":"1It","@stdlib/stats/incr/mpe":"1Iu","@stdlib/stats-incr-mpe":"1Iv","@stdlib/stats/incr/mprod":"1Iw","@stdlib/stats-incr-mprod":"1Ix","@stdlib/stats/incr/mrange":"1Iy","@stdlib/stats-incr-mrange":"1Iz","@stdlib/stats/incr/mrmse":"1J0","@stdlib/stats-incr-mrmse":"1J1","@stdlib/stats/incr/mrss":"1J2","@stdlib/stats-incr-mrss":"1J3","@stdlib/stats/incr/mse":"1J4","@stdlib/stats-incr-mse":"1J5","@stdlib/stats/incr/mstdev":"1J6","@stdlib/stats-incr-mstdev":"1J7","@stdlib/stats/incr/msum":"1J8","@stdlib/stats-incr-msum":"1J9","@stdlib/stats/incr/msumabs":"1JA","@stdlib/stats-incr-msumabs":"1JB","@stdlib/stats/incr/msumabs2":"1JC","@stdlib/stats-incr-msumabs2":"1JD","@stdlib/stats/incr/msummary":"1JE","@stdlib/stats-incr-msummary":"1JF","@stdlib/stats/incr/msumprod":"1JG","@stdlib/stats-incr-msumprod":"1JH","@stdlib/stats/incr/mvariance":"1JI","@stdlib/stats-incr-mvariance":"1JJ","@stdlib/stats/incr/mvmr":"1JK","@stdlib/stats-incr-mvmr":"1JL","@stdlib/stats/incr/nancount":"1JM","@stdlib/stats-incr-nancount":"1JN","@stdlib/stats/incr/nansum":"1JO","@stdlib/stats-incr-nansum":"1JP","@stdlib/stats/incr/nansumabs":"1JQ","@stdlib/stats-incr-nansumabs":"1JR","@stdlib/stats/incr/nansumabs2":"1JS","@stdlib/stats-incr-nansumabs2":"1JT","@stdlib/stats/incr":"1JU","@stdlib/stats-incr":"1JV","@stdlib/stats/incr/pcorr":"1JW","@stdlib/stats-incr-pcorr":"1JX","@stdlib/stats/incr/pcorr2":"1JY","@stdlib/stats-incr-pcorr2":"1JZ","@stdlib/stats/incr/pcorrdist":"1Ja","@stdlib/stats-incr-pcorrdist":"1Jb","@stdlib/stats/incr/pcorrdistmat":"1Jc","@stdlib/stats-incr-pcorrdistmat":"1Jd","@stdlib/stats/incr/pcorrmat":"1Je","@stdlib/stats-incr-pcorrmat":"1Jf","@stdlib/stats/incr/prod":"1Jg","@stdlib/stats-incr-prod":"1Jh","@stdlib/stats/incr/range":"1Ji","@stdlib/stats-incr-range":"1Jj","@stdlib/stats/incr/rmse":"1Jk","@stdlib/stats-incr-rmse":"1Jl","@stdlib/stats/incr/rss":"1Jm","@stdlib/stats-incr-rss":"1Jn","@stdlib/stats/incr/skewness":"1Jo","@stdlib/stats-incr-skewness":"1Jp","@stdlib/stats/incr/stdev":"1Jq","@stdlib/stats-incr-stdev":"1Jr","@stdlib/stats/incr/sum":"1Js","@stdlib/stats-incr-sum":"1Jt","@stdlib/stats/incr/sumabs":"1Ju","@stdlib/stats-incr-sumabs":"1Jv","@stdlib/stats/incr/sumabs2":"1Jw","@stdlib/stats-incr-sumabs2":"1Jx","@stdlib/stats/incr/summary":"1Jy","@stdlib/stats-incr-summary":"1Jz","@stdlib/stats/incr/sumprod":"1K0","@stdlib/stats-incr-sumprod":"1K1","@stdlib/stats/incr/variance":"1K2","@stdlib/stats-incr-variance":"1K3","@stdlib/stats/incr/vmr":"1K4","@stdlib/stats-incr-vmr":"1K5","@stdlib/stats/incr/wmean":"1K6","@stdlib/stats-incr-wmean":"1K7","@stdlib/stats/iter/cugmean":"1K8","@stdlib/stats-iter-cugmean":"1K9","@stdlib/stats/iter/cuhmean":"1KA","@stdlib/stats-iter-cuhmean":"1KB","@stdlib/stats/iter/cumax":"1KC","@stdlib/stats-iter-cumax":"1KD","@stdlib/stats/iter/cumaxabs":"1KE","@stdlib/stats-iter-cumaxabs":"1KF","@stdlib/stats/iter/cumean":"1KG","@stdlib/stats-iter-cumean":"1KH","@stdlib/stats/iter/cumeanabs":"1KI","@stdlib/stats-iter-cumeanabs":"1KJ","@stdlib/stats/iter/cumeanabs2":"1KK","@stdlib/stats-iter-cumeanabs2":"1KL","@stdlib/stats/iter/cumidrange":"1KM","@stdlib/stats-iter-cumidrange":"1KN","@stdlib/stats/iter/cumin":"1KO","@stdlib/stats-iter-cumin":"1KP","@stdlib/stats/iter/cuminabs":"1KQ","@stdlib/stats-iter-cuminabs":"1KR","@stdlib/stats/iter/cuprod":"1KS","@stdlib/stats-iter-cuprod":"1KT","@stdlib/stats/iter/curange":"1KU","@stdlib/stats-iter-curange":"1KV","@stdlib/stats/iter/cusum":"1KW","@stdlib/stats-iter-cusum":"1KX","@stdlib/stats/iter/cusumabs":"1KY","@stdlib/stats-iter-cusumabs":"1KZ","@stdlib/stats/iter/cusumabs2":"1Ka","@stdlib/stats-iter-cusumabs2":"1Kb","@stdlib/stats/iter/max":"1Kc","@stdlib/stats-iter-max":"1Kd","@stdlib/stats/iter/maxabs":"1Ke","@stdlib/stats-iter-maxabs":"1Kf","@stdlib/stats/iter/mean":"1Kg","@stdlib/stats-iter-mean":"1Kh","@stdlib/stats/iter/meanabs":"1Ki","@stdlib/stats-iter-meanabs":"1Kj","@stdlib/stats/iter/meanabs2":"1Kk","@stdlib/stats-iter-meanabs2":"1Kl","@stdlib/stats/iter/midrange":"1Km","@stdlib/stats-iter-midrange":"1Kn","@stdlib/stats/iter/min":"1Ko","@stdlib/stats-iter-min":"1Kp","@stdlib/stats/iter/minabs":"1Kq","@stdlib/stats-iter-minabs":"1Kr","@stdlib/stats/iter/mmax":"1Ks","@stdlib/stats-iter-mmax":"1Kt","@stdlib/stats/iter/mmaxabs":"1Ku","@stdlib/stats-iter-mmaxabs":"1Kv","@stdlib/stats/iter/mmean":"1Kw","@stdlib/stats-iter-mmean":"1Kx","@stdlib/stats/iter/mmeanabs":"1Ky","@stdlib/stats-iter-mmeanabs":"1Kz","@stdlib/stats/iter/mmeanabs2":"1L0","@stdlib/stats-iter-mmeanabs2":"1L1","@stdlib/stats/iter/mmidrange":"1L2","@stdlib/stats-iter-mmidrange":"1L3","@stdlib/stats/iter/mmin":"1L4","@stdlib/stats-iter-mmin":"1L5","@stdlib/stats/iter/mminabs":"1L6","@stdlib/stats-iter-mminabs":"1L7","@stdlib/stats/iter/mprod":"1L8","@stdlib/stats-iter-mprod":"1L9","@stdlib/stats/iter/mrange":"1LA","@stdlib/stats-iter-mrange":"1LB","@stdlib/stats/iter/msum":"1LC","@stdlib/stats-iter-msum":"1LD","@stdlib/stats/iter/msumabs":"1LE","@stdlib/stats-iter-msumabs":"1LF","@stdlib/stats/iter/msumabs2":"1LG","@stdlib/stats-iter-msumabs2":"1LH","@stdlib/stats/iter":"1LI","@stdlib/stats-iter":"1LJ","@stdlib/stats/iter/prod":"1LK","@stdlib/stats-iter-prod":"1LL","@stdlib/stats/iter/range":"1LM","@stdlib/stats-iter-range":"1LN","@stdlib/stats/iter/stdev":"1LO","@stdlib/stats-iter-stdev":"1LP","@stdlib/stats/iter/sum":"1LQ","@stdlib/stats-iter-sum":"1LR","@stdlib/stats/iter/sumabs":"1LS","@stdlib/stats-iter-sumabs":"1LT","@stdlib/stats/iter/sumabs2":"1LU","@stdlib/stats-iter-sumabs2":"1LV","@stdlib/stats/iter/variance":"1LW","@stdlib/stats-iter-variance":"1LX","@stdlib/stats/kde2d":"1LY","@stdlib/stats-kde2d":"1LZ","@stdlib/stats/kruskal-test":"1La","@stdlib/stats-kruskal-test":"1Lb","@stdlib/stats/kstest":"1Lc","@stdlib/stats-kstest":"1Ld","@stdlib/stats/levene-test":"1Le","@stdlib/stats-levene-test":"1Lf","@stdlib/stats/lowess":"1Lg","@stdlib/stats-lowess":"1Lh","@stdlib/stats":"1Lj","@stdlib/stats/padjust":"1Lk","@stdlib/stats-padjust":"1Ll","@stdlib/stats/pcorrtest":"1Lm","@stdlib/stats-pcorrtest":"1Ln","@stdlib/stats/ranks":"1Lo","@stdlib/stats-ranks":"1Lp","@stdlib/stats/ttest":"1Lq","@stdlib/stats-ttest":"1Lr","@stdlib/stats/ttest2":"1Ls","@stdlib/stats-ttest2":"1Lt","@stdlib/stats/vartest":"1Lu","@stdlib/stats-vartest":"1Lv","@stdlib/stats/wilcoxon":"1Lw","@stdlib/stats-wilcoxon":"1Lx","@stdlib/stats/ztest":"1Ly","@stdlib/stats-ztest":"1Lz","@stdlib/stats/ztest2":"1M0","@stdlib/stats-ztest2":"1M1","@stdlib/streams/node/debug-sink":"1M2","@stdlib/streams-node-debug-sink":"1M3","@stdlib/streams/node/debug":"1M4","@stdlib/streams-node-debug":"1M5","@stdlib/streams/node/empty":"1M6","@stdlib/streams-node-empty":"1M7","@stdlib/streams/node/from-array":"1M8","@stdlib/streams-node-from-array":"1M9","@stdlib/streams/node/from-circular-array":"1MA","@stdlib/streams-node-from-circular-array":"1MB","@stdlib/streams/node/from-constant":"1MC","@stdlib/streams-node-from-constant":"1MD","@stdlib/streams/node/from-iterator":"1ME","@stdlib/streams-node-from-iterator":"1MF","@stdlib/streams/node/from-strided-array":"1MG","@stdlib/streams-node-from-strided-array":"1MH","@stdlib/streams/node/inspect-sink":"1MI","@stdlib/streams-node-inspect-sink":"1MJ","@stdlib/streams/node/inspect":"1MK","@stdlib/streams-node-inspect":"1ML","@stdlib/streams/node/join":"1MM","@stdlib/streams-node-join":"1MN","@stdlib/streams/node":"1MO","@stdlib/streams-node":"1MP","@stdlib/streams/node/split":"1MQ","@stdlib/streams-node-split":"1MR","@stdlib/streams/node/stderr":"1MS","@stdlib/streams-node-stderr":"1MT","@stdlib/streams/node/stdin":"1MU","@stdlib/streams-node-stdin":"1MV","@stdlib/streams/node/stdout":"1MW","@stdlib/streams-node-stdout":"1MX","@stdlib/streams/node/transform":"1MY","@stdlib/streams-node-transform":"1MZ","@stdlib/streams":"1Mb","@stdlib/strided/base/binary-addon-dispatch":"1Mc","@stdlib/strided-base-binary-addon-dispatch":"1Md","@stdlib/strided/base/binary-dtype-signatures":"1Me","@stdlib/strided-base-binary-dtype-signatures":"1Mf","@stdlib/strided/base/binary-signature-callbacks":"1Mg","@stdlib/strided-base-binary-signature-callbacks":"1Mh","@stdlib/strided/base/binary":"1Mi","@stdlib/strided-base-binary":"1Mj","@stdlib/strided/base/cmap":"1Mk","@stdlib/strided-base-cmap":"1Ml","@stdlib/strided/base/dmap":"1Mm","@stdlib/strided-base-dmap":"1Mn","@stdlib/strided/base/dmap2":"1Mo","@stdlib/strided-base-dmap2":"1Mp","@stdlib/strided/base/dmskmap":"1Mq","@stdlib/strided-base-dmskmap":"1Mr","@stdlib/strided/base/dmskmap2":"1Ms","@stdlib/strided-base-dmskmap2":"1Mt","@stdlib/strided/base/dtype-enum2str":"1Mu","@stdlib/strided-base-dtype-enum2str":"1Mv","@stdlib/strided/base/dtype-resolve-enum":"1Mw","@stdlib/strided-base-dtype-resolve-enum":"1Mx","@stdlib/strided/base/dtype-resolve-str":"1My","@stdlib/strided-base-dtype-resolve-str":"1Mz","@stdlib/strided/base/dtype-str2enum":"1N0","@stdlib/strided-base-dtype-str2enum":"1N1","@stdlib/strided/base/function-object":"1N2","@stdlib/strided-base-function-object":"1N3","@stdlib/strided/base/map-by":"1N4","@stdlib/strided-base-map-by":"1N5","@stdlib/strided/base/map-by2":"1N6","@stdlib/strided-base-map-by2":"1N7","@stdlib/strided/base/max-view-buffer-index":"1N8","@stdlib/strided-base-max-view-buffer-index":"1N9","@stdlib/strided/base/meta-data-props":"1NA","@stdlib/strided-base-meta-data-props":"1NB","@stdlib/strided/base/min-view-buffer-index":"1NC","@stdlib/strided-base-min-view-buffer-index":"1ND","@stdlib/strided/base/mskunary":"1NE","@stdlib/strided-base-mskunary":"1NF","@stdlib/strided/base/nullary":"1NG","@stdlib/strided-base-nullary":"1NH","@stdlib/strided/base/offset-view":"1NI","@stdlib/strided-base-offset-view":"1NJ","@stdlib/strided/base":"1NK","@stdlib/strided-base":"1NL","@stdlib/strided/base/quaternary":"1NM","@stdlib/strided-base-quaternary":"1NN","@stdlib/strided/base/quinary":"1NO","@stdlib/strided-base-quinary":"1NP","@stdlib/strided/base/reinterpret-complex128":"1NQ","@stdlib/strided-base-reinterpret-complex128":"1NR","@stdlib/strided/base/reinterpret-complex64":"1NS","@stdlib/strided-base-reinterpret-complex64":"1NT","@stdlib/strided/base/smap":"1NU","@stdlib/strided-base-smap":"1NV","@stdlib/strided/base/smap2":"1NW","@stdlib/strided-base-smap2":"1NX","@stdlib/strided/base/smskmap":"1NY","@stdlib/strided-base-smskmap":"1NZ","@stdlib/strided/base/smskmap2":"1Na","@stdlib/strided-base-smskmap2":"1Nb","@stdlib/strided/base/ternary":"1Nc","@stdlib/strided-base-ternary":"1Nd","@stdlib/strided/base/unary-addon-dispatch":"1Ne","@stdlib/strided-base-unary-addon-dispatch":"1Nf","@stdlib/strided/base/unary":"1Ng","@stdlib/strided-base-unary":"1Nh","@stdlib/strided/base/zmap":"1Ni","@stdlib/strided-base-zmap":"1Nj","@stdlib/strided/common":"1Nk","@stdlib/strided-common":"1Nl","@stdlib/strided/dispatch":"1Nm","@stdlib/strided-dispatch":"1Nn","@stdlib/strided/dtypes":"1No","@stdlib/strided-dtypes":"1Np","@stdlib/strided/napi/addon-arguments":"1Nq","@stdlib/strided-napi-addon-arguments":"1Nr","@stdlib/strided/napi/binary":"1Ns","@stdlib/strided-napi-binary":"1Nt","@stdlib/strided/napi/cmap":"1Nu","@stdlib/strided-napi-cmap":"1Nv","@stdlib/strided/napi/dmap":"1Nw","@stdlib/strided-napi-dmap":"1Nx","@stdlib/strided/napi/dmap2":"1Ny","@stdlib/strided-napi-dmap2":"1Nz","@stdlib/strided/napi/dmskmap":"1O0","@stdlib/strided-napi-dmskmap":"1O1","@stdlib/strided/napi/dmskmap2":"1O2","@stdlib/strided-napi-dmskmap2":"1O3","@stdlib/strided/napi/mskunary":"1O4","@stdlib/strided-napi-mskunary":"1O5","@stdlib/strided/napi":"1O6","@stdlib/strided-napi":"1O7","@stdlib/strided/napi/smap":"1O8","@stdlib/strided-napi-smap":"1O9","@stdlib/strided/napi/smap2":"1OA","@stdlib/strided-napi-smap2":"1OB","@stdlib/strided/napi/smskmap":"1OC","@stdlib/strided-napi-smskmap":"1OD","@stdlib/strided/napi/smskmap2":"1OE","@stdlib/strided-napi-smskmap2":"1OF","@stdlib/strided/napi/unary":"1OG","@stdlib/strided-napi-unary":"1OH","@stdlib/strided/napi/zmap":"1OI","@stdlib/strided-napi-zmap":"1OJ","@stdlib/strided":"1OL","@stdlib/string/acronym":"1OM","@stdlib/string-acronym":"1ON","@stdlib/string/base/format-interpolate":"1OO","@stdlib/string-base-format-interpolate":"1OP","@stdlib/string/base/format-tokenize":"1OQ","@stdlib/string-base-format-tokenize":"1OR","@stdlib/string/base":"1OS","@stdlib/string-base":"1OT","@stdlib/string/camelcase":"1OU","@stdlib/string-camelcase":"1OV","@stdlib/string/capitalize":"1OW","@stdlib/string-capitalize":"1OX","@stdlib/string/code-point-at":"1OY","@stdlib/string-code-point-at":"1OZ","@stdlib/string/constantcase":"1Oa","@stdlib/string-constantcase":"1Ob","@stdlib/string/ends-with":"1Oc","@stdlib/string-ends-with":"1Od","@stdlib/string/format":"1Oe","@stdlib/string-format":"1Of","@stdlib/string/from-code-point":"1Og","@stdlib/string-from-code-point":"1Oh","@stdlib/string/kebabcase":"1Oi","@stdlib/string-kebabcase":"1Oj","@stdlib/string/left-pad":"1Ok","@stdlib/string-left-pad":"1Ol","@stdlib/string/left-trim-n":"1Om","@stdlib/string-left-trim-n":"1On","@stdlib/string/left-trim":"1Oo","@stdlib/string-left-trim":"1Op","@stdlib/string/lowercase":"1Oq","@stdlib/string-lowercase":"1Or","@stdlib/string/next-grapheme-cluster-break":"1Os","@stdlib/string-next-grapheme-cluster-break":"1Ot","@stdlib/string/num-grapheme-clusters":"1Ou","@stdlib/string-num-grapheme-clusters":"1Ov","@stdlib/string":"1Ox","@stdlib/string/pad":"1Oy","@stdlib/string-pad":"1Oz","@stdlib/string/pascalcase":"1P0","@stdlib/string-pascalcase":"1P1","@stdlib/string/percent-encode":"1P2","@stdlib/string-percent-encode":"1P3","@stdlib/string/prev-grapheme-cluster-break":"1P4","@stdlib/string-prev-grapheme-cluster-break":"1P5","@stdlib/string/remove-first":"1P6","@stdlib/string-remove-first":"1P7","@stdlib/string/remove-last":"1P8","@stdlib/string-remove-last":"1P9","@stdlib/string/remove-punctuation":"1PA","@stdlib/string-remove-punctuation":"1PB","@stdlib/string/remove-utf8-bom":"1PC","@stdlib/string-remove-utf8-bom":"1PD","@stdlib/string/remove-words":"1PE","@stdlib/string-remove-words":"1PF","@stdlib/string/repeat":"1PG","@stdlib/string-repeat":"1PH","@stdlib/string/replace":"1PI","@stdlib/string-replace":"1PJ","@stdlib/string/reverse":"1PK","@stdlib/string-reverse":"1PL","@stdlib/string/right-pad":"1PM","@stdlib/string-right-pad":"1PN","@stdlib/string/right-trim-n":"1PO","@stdlib/string-right-trim-n":"1PP","@stdlib/string/right-trim":"1PQ","@stdlib/string-right-trim":"1PR","@stdlib/string/snakecase":"1PS","@stdlib/string-snakecase":"1PT","@stdlib/string/split-grapheme-clusters":"1PU","@stdlib/string-split-grapheme-clusters":"1PV","@stdlib/string/startcase":"1PW","@stdlib/string-startcase":"1PX","@stdlib/string/starts-with":"1PY","@stdlib/string-starts-with":"1PZ","@stdlib/string/substring-after-last":"1Pa","@stdlib/string-substring-after-last":"1Pb","@stdlib/string/substring-after":"1Pc","@stdlib/string-substring-after":"1Pd","@stdlib/string/substring-before-last":"1Pe","@stdlib/string-substring-before-last":"1Pf","@stdlib/string/substring-before":"1Pg","@stdlib/string-substring-before":"1Ph","@stdlib/string/tools/grapheme-cluster-break":"1Pi","@stdlib/string-tools-grapheme-cluster-break":"1Pj","@stdlib/string/tools":"1Pk","@stdlib/string-tools":"1Pl","@stdlib/string/trim":"1Pm","@stdlib/string-trim":"1Pn","@stdlib/string/truncate-middle":"1Po","@stdlib/string-truncate-middle":"1Pp","@stdlib/string/truncate":"1Pq","@stdlib/string-truncate":"1Pr","@stdlib/string/uncapitalize":"1Ps","@stdlib/string-uncapitalize":"1Pt","@stdlib/string/uppercase":"1Pu","@stdlib/string-uppercase":"1Pv","@stdlib/string/utf16-to-utf8-array":"1Pw","@stdlib/string-utf16-to-utf8-array":"1Px","@stdlib/symbol/async-iterator":"1Py","@stdlib/symbol-async-iterator":"1Pz","@stdlib/symbol/ctor":"1Q0","@stdlib/symbol-ctor":"1Q1","@stdlib/symbol/iterator":"1Q2","@stdlib/symbol-iterator":"1Q3","@stdlib/symbol":"1Q5","@stdlib/time/day-of-quarter":"1Q6","@stdlib/time-day-of-quarter":"1Q7","@stdlib/time/day-of-year":"1Q8","@stdlib/time-day-of-year":"1Q9","@stdlib/time/days-in-month":"1QA","@stdlib/time-days-in-month":"1QB","@stdlib/time/days-in-year":"1QC","@stdlib/time-days-in-year":"1QD","@stdlib/time/hours-in-month":"1QE","@stdlib/time-hours-in-month":"1QF","@stdlib/time/hours-in-year":"1QG","@stdlib/time-hours-in-year":"1QH","@stdlib/time/iso-weeks-in-year":"1QI","@stdlib/time-iso-weeks-in-year":"1QJ","@stdlib/time/minutes-in-month":"1QK","@stdlib/time-minutes-in-month":"1QL","@stdlib/time/minutes-in-year":"1QM","@stdlib/time-minutes-in-year":"1QN","@stdlib/time/now":"1QO","@stdlib/time-now":"1QP","@stdlib/time":"1QR","@stdlib/time/quarter-of-year":"1QS","@stdlib/time-quarter-of-year":"1QT","@stdlib/time/seconds-in-month":"1QU","@stdlib/time-seconds-in-month":"1QV","@stdlib/time/seconds-in-year":"1QW","@stdlib/time-seconds-in-year":"1QX","@stdlib/time/tic":"1QY","@stdlib/time-tic":"1QZ","@stdlib/time/toc":"1Qa","@stdlib/time-toc":"1Qb","@stdlib/types":"1Qd","@stdlib/utils/any-by-right":"1Qe","@stdlib/utils-any-by-right":"1Qf","@stdlib/utils/any-by":"1Qg","@stdlib/utils-any-by":"1Qh","@stdlib/utils/any":"1Qi","@stdlib/utils-any":"1Qj","@stdlib/utils/append":"1Qk","@stdlib/utils-append":"1Ql","@stdlib/utils/argument-function":"1Qm","@stdlib/utils-argument-function":"1Qn","@stdlib/utils/async/any-by-right":"1Qo","@stdlib/utils-async-any-by-right":"1Qp","@stdlib/utils/async/any-by":"1Qq","@stdlib/utils-async-any-by":"1Qr","@stdlib/utils/async/bifurcate-by":"1Qs","@stdlib/utils-async-bifurcate-by":"1Qt","@stdlib/utils/async/compose":"1Qu","@stdlib/utils-async-compose":"1Qv","@stdlib/utils/async/count-by":"1Qw","@stdlib/utils-async-count-by":"1Qx","@stdlib/utils/async/do-until":"1Qy","@stdlib/utils-async-do-until":"1Qz","@stdlib/utils/async/do-while":"1R0","@stdlib/utils-async-do-while":"1R1","@stdlib/utils/async/every-by-right":"1R2","@stdlib/utils-async-every-by-right":"1R3","@stdlib/utils/async/every-by":"1R4","@stdlib/utils-async-every-by":"1R5","@stdlib/utils/async/for-each-right":"1R6","@stdlib/utils-async-for-each-right":"1R7","@stdlib/utils/async/for-each":"1R8","@stdlib/utils-async-for-each":"1R9","@stdlib/utils/async/function-sequence":"1RA","@stdlib/utils-async-function-sequence":"1RB","@stdlib/utils/async/group-by":"1RC","@stdlib/utils-async-group-by":"1RD","@stdlib/utils/async/if-else":"1RE","@stdlib/utils-async-if-else":"1RF","@stdlib/utils/async/if-then":"1RG","@stdlib/utils-async-if-then":"1RH","@stdlib/utils/async/inmap-right":"1RI","@stdlib/utils-async-inmap-right":"1RJ","@stdlib/utils/async/inmap":"1RK","@stdlib/utils-async-inmap":"1RL","@stdlib/utils/async/map-function":"1RM","@stdlib/utils-async-map-function":"1RN","@stdlib/utils/async/map-keys":"1RO","@stdlib/utils-async-map-keys":"1RP","@stdlib/utils/async/map-values":"1RQ","@stdlib/utils-async-map-values":"1RR","@stdlib/utils/async/none-by-right":"1RS","@stdlib/utils-async-none-by-right":"1RT","@stdlib/utils/async/none-by":"1RU","@stdlib/utils-async-none-by":"1RV","@stdlib/utils/async":"1RW","@stdlib/utils-async":"1RX","@stdlib/utils/async/reduce-right":"1RY","@stdlib/utils-async-reduce-right":"1RZ","@stdlib/utils/async/reduce":"1Ra","@stdlib/utils-async-reduce":"1Rb","@stdlib/utils/async/series-waterfall":"1Rc","@stdlib/utils-async-series-waterfall":"1Rd","@stdlib/utils/async/some-by-right":"1Re","@stdlib/utils-async-some-by-right":"1Rf","@stdlib/utils/async/some-by":"1Rg","@stdlib/utils-async-some-by":"1Rh","@stdlib/utils/async/tabulate-by":"1Ri","@stdlib/utils-async-tabulate-by":"1Rj","@stdlib/utils/async/try-catch":"1Rk","@stdlib/utils-async-try-catch":"1Rl","@stdlib/utils/async/try-then":"1Rm","@stdlib/utils-async-try-then":"1Rn","@stdlib/utils/async/until":"1Ro","@stdlib/utils-async-until":"1Rp","@stdlib/utils/async/while":"1Rq","@stdlib/utils-async-while":"1Rr","@stdlib/utils/bifurcate-by":"1Rs","@stdlib/utils-bifurcate-by":"1Rt","@stdlib/utils/bifurcate-in":"1Ru","@stdlib/utils-bifurcate-in":"1Rv","@stdlib/utils/bifurcate-own":"1Rw","@stdlib/utils-bifurcate-own":"1Rx","@stdlib/utils/bifurcate":"1Ry","@stdlib/utils-bifurcate":"1Rz","@stdlib/utils/capitalize-keys":"1S0","@stdlib/utils-capitalize-keys":"1S1","@stdlib/utils/circular-buffer":"1S2","@stdlib/utils-circular-buffer":"1S3","@stdlib/utils/common-keys-in":"1S4","@stdlib/utils-common-keys-in":"1S5","@stdlib/utils/common-keys":"1S6","@stdlib/utils-common-keys":"1S7","@stdlib/utils/compact-adjacency-matrix":"1S8","@stdlib/utils-compact-adjacency-matrix":"1S9","@stdlib/utils/compose":"1SA","@stdlib/utils-compose":"1SB","@stdlib/utils/constant-function":"1SC","@stdlib/utils-constant-function":"1SD","@stdlib/utils/constructor-name":"1SE","@stdlib/utils-constructor-name":"1SF","@stdlib/utils/convert-path":"1SG","@stdlib/utils-convert-path":"1SH","@stdlib/utils/copy":"1SI","@stdlib/utils-copy":"1SJ","@stdlib/utils/count-by":"1SK","@stdlib/utils-count-by":"1SL","@stdlib/utils/curry-right":"1SM","@stdlib/utils-curry-right":"1SN","@stdlib/utils/curry":"1SO","@stdlib/utils-curry":"1SP","@stdlib/utils/deep-get":"1SQ","@stdlib/utils-deep-get":"1SR","@stdlib/utils/deep-pluck":"1SS","@stdlib/utils-deep-pluck":"1ST","@stdlib/utils/deep-set":"1SU","@stdlib/utils-deep-set":"1SV","@stdlib/utils/define-configurable-read-only-accessor":"1SW","@stdlib/utils-define-configurable-read-only-accessor":"1SX","@stdlib/utils/define-configurable-read-only-property":"1SY","@stdlib/utils-define-configurable-read-only-property":"1SZ","@stdlib/utils/define-configurable-read-write-accessor":"1Sa","@stdlib/utils-define-configurable-read-write-accessor":"1Sb","@stdlib/utils/define-configurable-write-only-accessor":"1Sc","@stdlib/utils-define-configurable-write-only-accessor":"1Sd","@stdlib/utils/define-memoized-configurable-read-only-property":"1Se","@stdlib/utils-define-memoized-configurable-read-only-property":"1Sf","@stdlib/utils/define-memoized-property":"1Sg","@stdlib/utils-define-memoized-property":"1Sh","@stdlib/utils/define-memoized-read-only-property":"1Si","@stdlib/utils-define-memoized-read-only-property":"1Sj","@stdlib/utils/define-nonenumerable-property":"1Sk","@stdlib/utils-define-nonenumerable-property":"1Sl","@stdlib/utils/define-nonenumerable-read-only-accessor":"1Sm","@stdlib/utils-define-nonenumerable-read-only-accessor":"1Sn","@stdlib/utils/define-nonenumerable-read-only-property":"1So","@stdlib/utils-define-nonenumerable-read-only-property":"1Sp","@stdlib/utils/define-nonenumerable-read-write-accessor":"1Sq","@stdlib/utils-define-nonenumerable-read-write-accessor":"1Sr","@stdlib/utils/define-nonenumerable-write-only-accessor":"1Ss","@stdlib/utils-define-nonenumerable-write-only-accessor":"1St","@stdlib/utils/define-properties":"1Su","@stdlib/utils-define-properties":"1Sv","@stdlib/utils/define-property":"1Sw","@stdlib/utils-define-property":"1Sx","@stdlib/utils/define-read-only-accessor":"1Sy","@stdlib/utils-define-read-only-accessor":"1Sz","@stdlib/utils/define-read-only-property":"1T0","@stdlib/utils-define-read-only-property":"1T1","@stdlib/utils/define-read-write-accessor":"1T2","@stdlib/utils-define-read-write-accessor":"1T3","@stdlib/utils/define-write-only-accessor":"1T4","@stdlib/utils-define-write-only-accessor":"1T5","@stdlib/utils/dirname":"1T6","@stdlib/utils-dirname":"1T7","@stdlib/utils/do-until-each-right":"1T8","@stdlib/utils-do-until-each-right":"1T9","@stdlib/utils/do-until-each":"1TA","@stdlib/utils-do-until-each":"1TB","@stdlib/utils/do-until":"1TC","@stdlib/utils-do-until":"1TD","@stdlib/utils/do-while-each-right":"1TE","@stdlib/utils-do-while-each-right":"1TF","@stdlib/utils/do-while-each":"1TG","@stdlib/utils-do-while-each":"1TH","@stdlib/utils/do-while":"1TI","@stdlib/utils-do-while":"1TJ","@stdlib/utils/doubly-linked-list":"1TK","@stdlib/utils-doubly-linked-list":"1TL","@stdlib/utils/entries-in":"1TM","@stdlib/utils-entries-in":"1TN","@stdlib/utils/entries":"1TO","@stdlib/utils-entries":"1TP","@stdlib/utils/enumerable-properties-in":"1TQ","@stdlib/utils-enumerable-properties-in":"1TR","@stdlib/utils/enumerable-properties":"1TS","@stdlib/utils-enumerable-properties":"1TT","@stdlib/utils/enumerable-property-symbols-in":"1TU","@stdlib/utils-enumerable-property-symbols-in":"1TV","@stdlib/utils/enumerable-property-symbols":"1TW","@stdlib/utils-enumerable-property-symbols":"1TX","@stdlib/utils/escape-regexp-string":"1TY","@stdlib/utils-escape-regexp-string":"1TZ","@stdlib/utils/eval":"1Ta","@stdlib/utils-eval":"1Tb","@stdlib/utils/every-by-right":"1Tc","@stdlib/utils-every-by-right":"1Td","@stdlib/utils/every-by":"1Te","@stdlib/utils-every-by":"1Tf","@stdlib/utils/every":"1Tg","@stdlib/utils-every":"1Th","@stdlib/utils/extname":"1Ti","@stdlib/utils-extname":"1Tj","@stdlib/utils/fifo":"1Tk","@stdlib/utils-fifo":"1Tl","@stdlib/utils/filter-arguments":"1Tm","@stdlib/utils-filter-arguments":"1Tn","@stdlib/utils/find":"1To","@stdlib/utils-find":"1Tp","@stdlib/utils/flatten-array":"1Tq","@stdlib/utils-flatten-array":"1Tr","@stdlib/utils/flatten-object":"1Ts","@stdlib/utils-flatten-object":"1Tt","@stdlib/utils/for-each-right":"1Tu","@stdlib/utils-for-each-right":"1Tv","@stdlib/utils/for-each":"1Tw","@stdlib/utils-for-each":"1Tx","@stdlib/utils/for-in":"1Ty","@stdlib/utils-for-in":"1Tz","@stdlib/utils/for-own":"1U0","@stdlib/utils-for-own":"1U1","@stdlib/utils/from-entries":"1U2","@stdlib/utils-from-entries":"1U3","@stdlib/utils/function-name":"1U4","@stdlib/utils-function-name":"1U5","@stdlib/utils/function-sequence":"1U6","@stdlib/utils-function-sequence":"1U7","@stdlib/utils/get-prototype-of":"1U8","@stdlib/utils-get-prototype-of":"1U9","@stdlib/utils/global":"1UA","@stdlib/utils-global":"1UB","@stdlib/utils/group-by":"1UC","@stdlib/utils-group-by":"1UD","@stdlib/utils/group-in":"1UE","@stdlib/utils-group-in":"1UF","@stdlib/utils/group-own":"1UG","@stdlib/utils-group-own":"1UH","@stdlib/utils/group":"1UI","@stdlib/utils-group":"1UJ","@stdlib/utils/identity-function":"1UK","@stdlib/utils-identity-function":"1UL","@stdlib/utils/if-else":"1UM","@stdlib/utils-if-else":"1UN","@stdlib/utils/if-then":"1UO","@stdlib/utils-if-then":"1UP","@stdlib/utils/index-of":"1UQ","@stdlib/utils-index-of":"1UR","@stdlib/utils/inherit":"1US","@stdlib/utils-inherit":"1UT","@stdlib/utils/inherited-enumerable-properties":"1UU","@stdlib/utils-inherited-enumerable-properties":"1UV","@stdlib/utils/inherited-enumerable-property-symbols":"1UW","@stdlib/utils-inherited-enumerable-property-symbols":"1UX","@stdlib/utils/inherited-keys":"1UY","@stdlib/utils-inherited-keys":"1UZ","@stdlib/utils/inherited-nonenumerable-properties":"1Ua","@stdlib/utils-inherited-nonenumerable-properties":"1Ub","@stdlib/utils/inherited-nonenumerable-property-names":"1Uc","@stdlib/utils-inherited-nonenumerable-property-names":"1Ud","@stdlib/utils/inherited-nonenumerable-property-symbols":"1Ue","@stdlib/utils-inherited-nonenumerable-property-symbols":"1Uf","@stdlib/utils/inherited-properties":"1Ug","@stdlib/utils-inherited-properties":"1Uh","@stdlib/utils/inherited-property-descriptor":"1Ui","@stdlib/utils-inherited-property-descriptor":"1Uj","@stdlib/utils/inherited-property-descriptors":"1Uk","@stdlib/utils-inherited-property-descriptors":"1Ul","@stdlib/utils/inherited-property-names":"1Um","@stdlib/utils-inherited-property-names":"1Un","@stdlib/utils/inherited-property-symbols":"1Uo","@stdlib/utils-inherited-property-symbols":"1Up","@stdlib/utils/inherited-writable-properties":"1Uq","@stdlib/utils-inherited-writable-properties":"1Ur","@stdlib/utils/inherited-writable-property-names":"1Us","@stdlib/utils-inherited-writable-property-names":"1Ut","@stdlib/utils/inherited-writable-property-symbols":"1Uu","@stdlib/utils-inherited-writable-property-symbols":"1Uv","@stdlib/utils/inmap-right":"1Uw","@stdlib/utils-inmap-right":"1Ux","@stdlib/utils/inmap":"1Uy","@stdlib/utils-inmap":"1Uz","@stdlib/utils/key-by-right":"1V0","@stdlib/utils-key-by-right":"1V1","@stdlib/utils/key-by":"1V2","@stdlib/utils-key-by":"1V3","@stdlib/utils/keys-in":"1V4","@stdlib/utils-keys-in":"1V5","@stdlib/utils/keys":"1V6","@stdlib/utils-keys":"1V7","@stdlib/utils/library-manifest":"1V8","@stdlib/utils-library-manifest":"1V9","@stdlib/utils/linked-list":"1VA","@stdlib/utils-linked-list":"1VB","@stdlib/utils/lowercase-keys":"1VC","@stdlib/utils-lowercase-keys":"1VD","@stdlib/utils/map-arguments":"1VE","@stdlib/utils-map-arguments":"1VF","@stdlib/utils/map-function":"1VG","@stdlib/utils-map-function":"1VH","@stdlib/utils/map-keys":"1VI","@stdlib/utils-map-keys":"1VJ","@stdlib/utils/map-reduce-right":"1VK","@stdlib/utils-map-reduce-right":"1VL","@stdlib/utils/map-reduce":"1VM","@stdlib/utils-map-reduce":"1VN","@stdlib/utils/map-right":"1VO","@stdlib/utils-map-right":"1VP","@stdlib/utils/map-values":"1VQ","@stdlib/utils-map-values":"1VR","@stdlib/utils/map":"1VS","@stdlib/utils-map":"1VT","@stdlib/utils/map2-right":"1VU","@stdlib/utils-map2-right":"1VV","@stdlib/utils/map2":"1VW","@stdlib/utils-map2":"1VX","@stdlib/utils/map2d":"1VY","@stdlib/utils-map2d":"1VZ","@stdlib/utils/map3d":"1Va","@stdlib/utils-map3d":"1Vb","@stdlib/utils/map4d":"1Vc","@stdlib/utils-map4d":"1Vd","@stdlib/utils/map5d":"1Ve","@stdlib/utils-map5d":"1Vf","@stdlib/utils/mask-arguments":"1Vg","@stdlib/utils-mask-arguments":"1Vh","@stdlib/utils/memoize":"1Vi","@stdlib/utils-memoize":"1Vj","@stdlib/utils/merge":"1Vk","@stdlib/utils-merge":"1Vl","@stdlib/utils/move-property":"1Vm","@stdlib/utils-move-property":"1Vn","@stdlib/utils/named-typed-tuple":"1Vo","@stdlib/utils-named-typed-tuple":"1Vp","@stdlib/utils/nary-function":"1Vq","@stdlib/utils-nary-function":"1Vr","@stdlib/utils/native-class":"1Vs","@stdlib/utils-native-class":"1Vt","@stdlib/utils/next-tick":"1Vu","@stdlib/utils-next-tick":"1Vv","@stdlib/utils/none-by-right":"1Vw","@stdlib/utils-none-by-right":"1Vx","@stdlib/utils/none-by":"1Vy","@stdlib/utils-none-by":"1Vz","@stdlib/utils/none":"1W0","@stdlib/utils-none":"1W1","@stdlib/utils/nonenumerable-properties-in":"1W2","@stdlib/utils-nonenumerable-properties-in":"1W3","@stdlib/utils/nonenumerable-properties":"1W4","@stdlib/utils-nonenumerable-properties":"1W5","@stdlib/utils/nonenumerable-property-names-in":"1W6","@stdlib/utils-nonenumerable-property-names-in":"1W7","@stdlib/utils/nonenumerable-property-names":"1W8","@stdlib/utils-nonenumerable-property-names":"1W9","@stdlib/utils/nonenumerable-property-symbols-in":"1WA","@stdlib/utils-nonenumerable-property-symbols-in":"1WB","@stdlib/utils/nonenumerable-property-symbols":"1WC","@stdlib/utils-nonenumerable-property-symbols":"1WD","@stdlib/utils/nonindex-keys":"1WE","@stdlib/utils-nonindex-keys":"1WF","@stdlib/utils/noop":"1WG","@stdlib/utils-noop":"1WH","@stdlib/utils/object-inverse-by":"1WI","@stdlib/utils-object-inverse-by":"1WJ","@stdlib/utils/object-inverse":"1WK","@stdlib/utils-object-inverse":"1WL","@stdlib/utils/omit-by":"1WM","@stdlib/utils-omit-by":"1WN","@stdlib/utils/omit":"1WO","@stdlib/utils-omit":"1WP","@stdlib/utils/open-url":"1WQ","@stdlib/utils-open-url":"1WR","@stdlib/utils":"1WT","@stdlib/utils/papply-right":"1WU","@stdlib/utils-papply-right":"1WV","@stdlib/utils/papply":"1WW","@stdlib/utils-papply":"1WX","@stdlib/utils/parallel":"1WY","@stdlib/utils-parallel":"1WZ","@stdlib/utils/parse-json":"1Wa","@stdlib/utils-parse-json":"1Wb","@stdlib/utils/pick-arguments":"1Wc","@stdlib/utils-pick-arguments":"1Wd","@stdlib/utils/pick-by":"1We","@stdlib/utils-pick-by":"1Wf","@stdlib/utils/pick":"1Wg","@stdlib/utils-pick":"1Wh","@stdlib/utils/pluck":"1Wi","@stdlib/utils-pluck":"1Wj","@stdlib/utils/pop":"1Wk","@stdlib/utils-pop":"1Wl","@stdlib/utils/prepend":"1Wm","@stdlib/utils-prepend":"1Wn","@stdlib/utils/properties-in":"1Wo","@stdlib/utils-properties-in":"1Wp","@stdlib/utils/properties":"1Wq","@stdlib/utils-properties":"1Wr","@stdlib/utils/property-descriptor-in":"1Ws","@stdlib/utils-property-descriptor-in":"1Wt","@stdlib/utils/property-descriptor":"1Wu","@stdlib/utils-property-descriptor":"1Wv","@stdlib/utils/property-descriptors-in":"1Ww","@stdlib/utils-property-descriptors-in":"1Wx","@stdlib/utils/property-descriptors":"1Wy","@stdlib/utils-property-descriptors":"1Wz","@stdlib/utils/property-names-in":"1X0","@stdlib/utils-property-names-in":"1X1","@stdlib/utils/property-names":"1X2","@stdlib/utils-property-names":"1X3","@stdlib/utils/property-symbols-in":"1X4","@stdlib/utils-property-symbols-in":"1X5","@stdlib/utils/property-symbols":"1X6","@stdlib/utils-property-symbols":"1X7","@stdlib/utils/push":"1X8","@stdlib/utils-push":"1X9","@stdlib/utils/real-max":"1XA","@stdlib/utils-real-max":"1XB","@stdlib/utils/real-min":"1XC","@stdlib/utils-real-min":"1XD","@stdlib/utils/reduce-right":"1XE","@stdlib/utils-reduce-right":"1XF","@stdlib/utils/reduce":"1XG","@stdlib/utils-reduce":"1XH","@stdlib/utils/reduce2d":"1XI","@stdlib/utils-reduce2d":"1XJ","@stdlib/utils/regexp-from-string":"1XK","@stdlib/utils-regexp-from-string":"1XL","@stdlib/utils/reject-arguments":"1XM","@stdlib/utils-reject-arguments":"1XN","@stdlib/utils/reorder-arguments":"1XO","@stdlib/utils-reorder-arguments":"1XP","@stdlib/utils/reverse-arguments":"1XQ","@stdlib/utils-reverse-arguments":"1XR","@stdlib/utils/safe-int-max":"1XS","@stdlib/utils-safe-int-max":"1XT","@stdlib/utils/safe-int-min":"1XU","@stdlib/utils-safe-int-min":"1XV","@stdlib/utils/shift":"1XW","@stdlib/utils-shift":"1XX","@stdlib/utils/size-of":"1XY","@stdlib/utils-size-of":"1XZ","@stdlib/utils/some-by-right":"1Xa","@stdlib/utils-some-by-right":"1Xb","@stdlib/utils/some-by":"1Xc","@stdlib/utils-some-by":"1Xd","@stdlib/utils/some":"1Xe","@stdlib/utils-some":"1Xf","@stdlib/utils/stack":"1Xg","@stdlib/utils-stack":"1Xh","@stdlib/utils/tabulate-by":"1Xi","@stdlib/utils-tabulate-by":"1Xj","@stdlib/utils/tabulate":"1Xk","@stdlib/utils-tabulate":"1Xl","@stdlib/utils/timeit":"1Xm","@stdlib/utils-timeit":"1Xn","@stdlib/utils/try-catch":"1Xo","@stdlib/utils-try-catch":"1Xp","@stdlib/utils/try-function":"1Xq","@stdlib/utils-try-function":"1Xr","@stdlib/utils/try-require":"1Xs","@stdlib/utils-try-require":"1Xt","@stdlib/utils/try-then":"1Xu","@stdlib/utils-try-then":"1Xv","@stdlib/utils/type-max":"1Xw","@stdlib/utils-type-max":"1Xx","@stdlib/utils/type-min":"1Xy","@stdlib/utils-type-min":"1Xz","@stdlib/utils/type-of":"1Y0","@stdlib/utils-type-of":"1Y1","@stdlib/utils/uncapitalize-keys":"1Y2","@stdlib/utils-uncapitalize-keys":"1Y3","@stdlib/utils/uncurry-right":"1Y4","@stdlib/utils-uncurry-right":"1Y5","@stdlib/utils/uncurry":"1Y6","@stdlib/utils-uncurry":"1Y7","@stdlib/utils/unshift":"1Y8","@stdlib/utils-unshift":"1Y9","@stdlib/utils/until-each-right":"1YA","@stdlib/utils-until-each-right":"1YB","@stdlib/utils/until-each":"1YC","@stdlib/utils-until-each":"1YD","@stdlib/utils/until":"1YE","@stdlib/utils-until":"1YF","@stdlib/utils/unzip":"1YG","@stdlib/utils-unzip":"1YH","@stdlib/utils/uppercase-keys":"1YI","@stdlib/utils-uppercase-keys":"1YJ","@stdlib/utils/values-in":"1YK","@stdlib/utils-values-in":"1YL","@stdlib/utils/values":"1YM","@stdlib/utils-values":"1YN","@stdlib/utils/while-each-right":"1YO","@stdlib/utils-while-each-right":"1YP","@stdlib/utils/while-each":"1YQ","@stdlib/utils-while-each":"1YR","@stdlib/utils/while":"1YS","@stdlib/utils-while":"1YT","@stdlib/utils/writable-properties-in":"1YU","@stdlib/utils-writable-properties-in":"1YV","@stdlib/utils/writable-properties":"1YW","@stdlib/utils-writable-properties":"1YX","@stdlib/utils/writable-property-names-in":"1YY","@stdlib/utils-writable-property-names-in":"1YZ","@stdlib/utils/writable-property-names":"1Ya","@stdlib/utils-writable-property-names":"1Yb","@stdlib/utils/writable-property-symbols-in":"1Yc","@stdlib/utils-writable-property-symbols-in":"1Yd","@stdlib/utils/writable-property-symbols":"1Ye","@stdlib/utils-writable-property-symbols":"1Yf","@stdlib/utils/zip":"1Yg","@stdlib/utils-zip":"1Yh","@stdlib/array/base/accessor-getter":"1Yi","@stdlib/array-base-accessor-getter":"1Yj","@stdlib/array/base/accessor-setter":"1Yk","@stdlib/array-base-accessor-setter":"1Yl","@stdlib/array/base/accessor":"1Ym","@stdlib/array-base-accessor":"1Yn","@stdlib/array/base/accessors":"1Yo","@stdlib/array-base-accessors":"1Yp","@stdlib/array/base/assert/contains":"1Yq","@stdlib/array-base-assert-contains":"1Yr","@stdlib/array/base/assert/is-accessor-array":"1Ys","@stdlib/array-base-assert-is-accessor-array":"1Yt","@stdlib/array/base/assert":"1Yu","@stdlib/array-base-assert":"1Yv","@stdlib/array/base/cartesian-power":"1Yw","@stdlib/array-base-cartesian-power":"1Yx","@stdlib/array/base/cartesian-product":"1Yy","@stdlib/array-base-cartesian-product":"1Yz","@stdlib/array/base/cartesian-square":"1Z0","@stdlib/array-base-cartesian-square":"1Z1","@stdlib/array/base/copy-indexed":"1Z2","@stdlib/array-base-copy-indexed":"1Z3","@stdlib/array/base/filled2d":"1Z4","@stdlib/array-base-filled2d":"1Z5","@stdlib/array/base/flatten":"1Z6","@stdlib/array-base-flatten":"1Z7","@stdlib/array/base/flatten2d-by":"1Z8","@stdlib/array-base-flatten2d-by":"1Z9","@stdlib/array/base/flatten2d":"1ZA","@stdlib/array-base-flatten2d":"1ZB","@stdlib/array/base/flatten3d-by":"1ZC","@stdlib/array-base-flatten3d-by":"1ZD","@stdlib/array/base/flatten3d":"1ZE","@stdlib/array-base-flatten3d":"1ZF","@stdlib/array/base/flatten4d-by":"1ZG","@stdlib/array-base-flatten4d-by":"1ZH","@stdlib/array/base/flatten4d":"1ZI","@stdlib/array-base-flatten4d":"1ZJ","@stdlib/array/base/flatten5d-by":"1ZK","@stdlib/array-base-flatten5d-by":"1ZL","@stdlib/array/base/flatten5d":"1ZM","@stdlib/array-base-flatten5d":"1ZN","@stdlib/array/base/getter":"1ZO","@stdlib/array-base-getter":"1ZP","@stdlib/array/base/last":"1ZQ","@stdlib/array-base-last":"1ZR","@stdlib/array/base/n-cartesian-product":"1ZS","@stdlib/array-base-n-cartesian-product":"1ZT","@stdlib/array/base/ones2d":"1ZU","@stdlib/array-base-ones2d":"1ZV","@stdlib/array/base/setter":"1ZW","@stdlib/array-base-setter":"1ZX","@stdlib/array/base/take":"1ZY","@stdlib/array-base-take":"1ZZ","@stdlib/array/base/to-accessor-array":"1Za","@stdlib/array-base-to-accessor-array":"1Zb","@stdlib/array/base/zero-to":"1Zc","@stdlib/array-base-zero-to":"1Zd","@stdlib/array/base/zeros2d":"1Ze","@stdlib/array-base-zeros2d":"1Zf","@stdlib/array/empty-like":"1Zg","@stdlib/array-empty-like":"1Zh","@stdlib/array/empty":"1Zi","@stdlib/array-empty":"1Zj","@stdlib/array/nans-like":"1Zk","@stdlib/array-nans-like":"1Zl","@stdlib/array/nans":"1Zm","@stdlib/array-nans":"1Zn","@stdlib/assert/is-accessor-array":"1Zo","@stdlib/assert-is-accessor-array":"1Zp","@stdlib/assert/is-camelcase":"1Zq","@stdlib/assert-is-camelcase":"1Zr","@stdlib/assert/is-constantcase":"1Zs","@stdlib/assert-is-constantcase":"1Zt","@stdlib/assert/is-current-year":"1Zu","@stdlib/assert-is-current-year":"1Zv","@stdlib/assert/is-domain-name":"1Zw","@stdlib/assert-is-domain-name":"1Zx","@stdlib/assert/is-duration-string":"1Zy","@stdlib/assert-is-duration-string":"1Zz","@stdlib/assert/is-kebabcase":"1a0","@stdlib/assert-is-kebabcase":"1a1","@stdlib/assert/is-pascalcase":"1a2","@stdlib/assert-is-pascalcase":"1a3","@stdlib/assert/is-semver":"1a4","@stdlib/assert-is-semver":"1a5","@stdlib/assert/is-snakecase":"1a6","@stdlib/assert-is-snakecase":"1a7","@stdlib/assert/is-startcase":"1a8","@stdlib/assert-is-startcase":"1a9","@stdlib/assert/napi/equal-typedarray-types":"1aA","@stdlib/assert-napi-equal-typedarray-types":"1aB","@stdlib/assert/napi/equal-types":"1aC","@stdlib/assert-napi-equal-types":"1aD","@stdlib/assert/napi/is-type":"1aE","@stdlib/assert-napi-is-type":"1aF","@stdlib/assert/napi/is-typedarray":"1aG","@stdlib/assert-napi-is-typedarray":"1aH","@stdlib/assert/napi":"1aI","@stdlib/assert-napi":"1aJ","@stdlib/assert/napi/status-ok":"1aK","@stdlib/assert-napi-status-ok":"1aL","@stdlib/blas/base/drotg":"1aM","@stdlib/blas-base-drotg":"1aN","@stdlib/blas/base/srotg":"1aO","@stdlib/blas-base-srotg":"1aP","@stdlib/boolean/ctor":"1aQ","@stdlib/boolean-ctor":"1aR","@stdlib/boolean":"1aT","@stdlib/complex/base/cast-return":"1aU","@stdlib/complex-base-cast-return":"1aV","@stdlib/complex/base":"1aW","@stdlib/complex-base":"1aX","@stdlib/console/log-each":"1aY","@stdlib/console-log-each":"1aZ","@stdlib/console/log":"1aa","@stdlib/console-log":"1ab","@stdlib/console":"1ad","@stdlib/constants/float32/abs-mask":"1ae","@stdlib/constants-float32-abs-mask":"1af","@stdlib/constants/float32/exponent-mask":"1ag","@stdlib/constants-float32-exponent-mask":"1ah","@stdlib/constants/float32/sign-mask":"1ai","@stdlib/constants-float32-sign-mask":"1aj","@stdlib/constants/float32/significand-mask":"1ak","@stdlib/constants-float32-significand-mask":"1al","@stdlib/constants/float64/high-word-abs-mask":"1am","@stdlib/constants-float64-high-word-abs-mask":"1an","@stdlib/constants/float64/high-word-sign-mask":"1ao","@stdlib/constants-float64-high-word-sign-mask":"1ap","@stdlib/function/ctor":"1aq","@stdlib/function-ctor":"1ar","@stdlib/function":"1at","@stdlib/function/to-string":"1au","@stdlib/function-to-string":"1av","@stdlib/math/base/assert/is-negative-finite":"1aw","@stdlib/math-base-assert-is-negative-finite":"1ax","@stdlib/math/base/assert/is-nonnegative-finite":"1ay","@stdlib/math-base-assert-is-nonnegative-finite":"1az","@stdlib/math/base/assert/is-nonpositive-finite":"1b0","@stdlib/math-base-assert-is-nonpositive-finite":"1b1","@stdlib/math/base/assert/is-positive-finite":"1b2","@stdlib/math-base-assert-is-positive-finite":"1b3","@stdlib/math/base/ops/cnegf":"1b4","@stdlib/math-base-ops-cnegf":"1b5","@stdlib/math/base/special/asec":"1b6","@stdlib/math-base-special-asec":"1b7","@stdlib/math/base/special/ellipj":"1b8","@stdlib/math-base-special-ellipj":"1b9","@stdlib/math/base/special/erfcx":"1bA","@stdlib/math-base-special-erfcx":"1bB","@stdlib/math/base/special/gammasgn":"1bC","@stdlib/math-base-special-gammasgn":"1bD","@stdlib/math/base/special/maxabsn":"1bE","@stdlib/math-base-special-maxabsn":"1bF","@stdlib/math/base/special/maxn":"1bG","@stdlib/math-base-special-maxn":"1bH","@stdlib/math/base/special/minabsn":"1bI","@stdlib/math-base-special-minabsn":"1bJ","@stdlib/math/base/special/minmaxabsn":"1bK","@stdlib/math-base-special-minmaxabsn":"1bL","@stdlib/math/base/special/minmaxn":"1bM","@stdlib/math-base-special-minmaxn":"1bN","@stdlib/math/base/special/minn":"1bO","@stdlib/math-base-special-minn":"1bP","@stdlib/math/base/special/rcbrt":"1bQ","@stdlib/math-base-special-rcbrt":"1bR","@stdlib/math/base/special/sqrtpi":"1bS","@stdlib/math-base-special-sqrtpi":"1bT","@stdlib/math/base/tools/evalpoly-compile-c":"1bU","@stdlib/math-base-tools-evalpoly-compile-c":"1bV","@stdlib/math/base/tools/evalrational-compile-c":"1bW","@stdlib/math-base-tools-evalrational-compile-c":"1bX","@stdlib/math/strided/ops/add-by":"1bY","@stdlib/math-strided-ops-add-by":"1bZ","@stdlib/math/strided/ops/mul-by":"1ba","@stdlib/math-strided-ops-mul-by":"1bb","@stdlib/math/strided/ops/sub-by":"1bc","@stdlib/math-strided-ops-sub-by":"1bd","@stdlib/math/strided/special/cbrt-by":"1be","@stdlib/math-strided-special-cbrt-by":"1bf","@stdlib/math/strided/special/cos-by":"1bg","@stdlib/math-strided-special-cos-by":"1bh","@stdlib/math/strided/special/dcbrt-by":"1bi","@stdlib/math-strided-special-dcbrt-by":"1bj","@stdlib/math/strided/special/sin-by":"1bk","@stdlib/math-strided-special-sin-by":"1bl","@stdlib/math/strided/special/sqrt-by":"1bm","@stdlib/math-strided-special-sqrt-by":"1bn","@stdlib/napi/argv-complex128array":"1bo","@stdlib/napi-argv-complex128array":"1bp","@stdlib/napi/argv-complex64array":"1bq","@stdlib/napi-argv-complex64array":"1br","@stdlib/napi/argv-double":"1bs","@stdlib/napi-argv-double":"1bt","@stdlib/napi/argv-float":"1bu","@stdlib/napi-argv-float":"1bv","@stdlib/napi/argv-float32array":"1bw","@stdlib/napi-argv-float32array":"1bx","@stdlib/napi/argv-float64array":"1by","@stdlib/napi-argv-float64array":"1bz","@stdlib/napi/argv-int16array":"1c0","@stdlib/napi-argv-int16array":"1c1","@stdlib/napi/argv-int32":"1c2","@stdlib/napi-argv-int32":"1c3","@stdlib/napi/argv-int32array":"1c4","@stdlib/napi-argv-int32array":"1c5","@stdlib/napi/argv-int64":"1c6","@stdlib/napi-argv-int64":"1c7","@stdlib/napi/argv-int8array":"1c8","@stdlib/napi-argv-int8array":"1c9","@stdlib/napi/argv-strided-complex128array":"1cA","@stdlib/napi-argv-strided-complex128array":"1cB","@stdlib/napi/argv-strided-complex64array":"1cC","@stdlib/napi-argv-strided-complex64array":"1cD","@stdlib/napi/argv-strided-float32array":"1cE","@stdlib/napi-argv-strided-float32array":"1cF","@stdlib/napi/argv-strided-float64array":"1cG","@stdlib/napi-argv-strided-float64array":"1cH","@stdlib/napi/argv-strided-int16array":"1cI","@stdlib/napi-argv-strided-int16array":"1cJ","@stdlib/napi/argv-strided-int32array":"1cK","@stdlib/napi-argv-strided-int32array":"1cL","@stdlib/napi/argv-strided-int8array":"1cM","@stdlib/napi-argv-strided-int8array":"1cN","@stdlib/napi/argv-strided-uint16array":"1cO","@stdlib/napi-argv-strided-uint16array":"1cP","@stdlib/napi/argv-strided-uint32array":"1cQ","@stdlib/napi-argv-strided-uint32array":"1cR","@stdlib/napi/argv-strided-uint8array":"1cS","@stdlib/napi-argv-strided-uint8array":"1cT","@stdlib/napi/argv-uint16array":"1cU","@stdlib/napi-argv-uint16array":"1cV","@stdlib/napi/argv-uint32":"1cW","@stdlib/napi-argv-uint32":"1cX","@stdlib/napi/argv-uint32array":"1cY","@stdlib/napi-argv-uint32array":"1cZ","@stdlib/napi/argv-uint8array":"1ca","@stdlib/napi-argv-uint8array":"1cb","@stdlib/napi/argv":"1cc","@stdlib/napi-argv":"1cd","@stdlib/napi/export":"1ce","@stdlib/napi-export":"1cf","@stdlib/napi":"1ch","@stdlib/ndarray/base/assert/is-complex-floating-point-data-type":"1ci","@stdlib/ndarray-base-assert-is-complex-floating-point-data-type":"1cj","@stdlib/ndarray/base/assert/is-floating-point-data-type":"1ck","@stdlib/ndarray-base-assert-is-floating-point-data-type":"1cl","@stdlib/ndarray/base/assert/is-integer-data-type":"1cm","@stdlib/ndarray-base-assert-is-integer-data-type":"1cn","@stdlib/ndarray/base/assert/is-numeric-data-type":"1co","@stdlib/ndarray-base-assert-is-numeric-data-type":"1cp","@stdlib/ndarray/base/assert/is-real-data-type":"1cq","@stdlib/ndarray-base-assert-is-real-data-type":"1cr","@stdlib/ndarray/base/assert/is-real-floating-point-data-type":"1cs","@stdlib/ndarray-base-assert-is-real-floating-point-data-type":"1ct","@stdlib/ndarray/base/assert/is-signed-integer-data-type":"1cu","@stdlib/ndarray-base-assert-is-signed-integer-data-type":"1cv","@stdlib/ndarray/base/assert/is-unsigned-integer-data-type":"1cw","@stdlib/ndarray-base-assert-is-unsigned-integer-data-type":"1cx","@stdlib/ndarray/base/binary-loop-interchange-order":"1cy","@stdlib/ndarray-base-binary-loop-interchange-order":"1cz","@stdlib/ndarray/base/binary-tiling-block-size":"1d0","@stdlib/ndarray-base-binary-tiling-block-size":"1d1","@stdlib/ndarray/base/broadcast-scalar":"1d2","@stdlib/ndarray-base-broadcast-scalar":"1d3","@stdlib/ndarray/base/empty-like":"1d4","@stdlib/ndarray-base-empty-like":"1d5","@stdlib/ndarray/base/empty":"1d6","@stdlib/ndarray-base-empty":"1d7","@stdlib/ndarray/base/nullary-loop-interchange-order":"1d8","@stdlib/ndarray-base-nullary-loop-interchange-order":"1d9","@stdlib/ndarray/base/nullary-tiling-block-size":"1dA","@stdlib/ndarray-base-nullary-tiling-block-size":"1dB","@stdlib/ndarray/base/nullary":"1dC","@stdlib/ndarray-base-nullary":"1dD","@stdlib/ndarray/base/output-policy-enum2str":"1dE","@stdlib/ndarray-base-output-policy-enum2str":"1dF","@stdlib/ndarray/base/output-policy-resolve-enum":"1dG","@stdlib/ndarray-base-output-policy-resolve-enum":"1dH","@stdlib/ndarray/base/output-policy-resolve-str":"1dI","@stdlib/ndarray-base-output-policy-resolve-str":"1dJ","@stdlib/ndarray/base/output-policy-str2enum":"1dK","@stdlib/ndarray-base-output-policy-str2enum":"1dL","@stdlib/ndarray/base/unary-by":"1dM","@stdlib/ndarray-base-unary-by":"1dN","@stdlib/ndarray/base/unary-loop-interchange-order":"1dO","@stdlib/ndarray-base-unary-loop-interchange-order":"1dP","@stdlib/ndarray/base/unary-output-dtype":"1dQ","@stdlib/ndarray-base-unary-output-dtype":"1dR","@stdlib/ndarray/base/unary-tiling-block-size":"1dS","@stdlib/ndarray-base-unary-tiling-block-size":"1dT","@stdlib/ndarray/defaults":"1dU","@stdlib/ndarray-defaults":"1dV","@stdlib/ndarray/dispatch-by":"1dW","@stdlib/ndarray-dispatch-by":"1dX","@stdlib/ndarray/empty-like":"1dY","@stdlib/ndarray-empty-like":"1dZ","@stdlib/ndarray/empty":"1da","@stdlib/ndarray-empty":"1db","@stdlib/ndarray/output-dtype-policies":"1dc","@stdlib/ndarray-output-dtype-policies":"1dd","@stdlib/ndarray/to-array":"1de","@stdlib/ndarray-to-array":"1df","@stdlib/nlp/expand-acronyms":"1dg","@stdlib/nlp-expand-acronyms":"1dh","@stdlib/nlp/sentencize":"1di","@stdlib/nlp-sentencize":"1dj","@stdlib/number/float64/reviver":"1dk","@stdlib/number-float64-reviver":"1dl","@stdlib/number/float64/to-json":"1dm","@stdlib/number-float64-to-json":"1dn","@stdlib/object/assign":"1do","@stdlib/object-assign":"1dp","@stdlib/object/ctor":"1dq","@stdlib/object-ctor":"1dr","@stdlib/object":"1dt","@stdlib/random/array/arcsine":"1du","@stdlib/random-array-arcsine":"1dv","@stdlib/random/array/beta":"1dw","@stdlib/random-array-beta":"1dx","@stdlib/random/array/betaprime":"1dy","@stdlib/random-array-betaprime":"1dz","@stdlib/random/array/cosine":"1e0","@stdlib/random-array-cosine":"1e1","@stdlib/random/array/discrete-uniform":"1e2","@stdlib/random-array-discrete-uniform":"1e3","@stdlib/random/array/exponential":"1e4","@stdlib/random-array-exponential":"1e5","@stdlib/random/array/gamma":"1e6","@stdlib/random-array-gamma":"1e7","@stdlib/random/array/geometric":"1e8","@stdlib/random-array-geometric":"1e9","@stdlib/random/array/invgamma":"1eA","@stdlib/random-array-invgamma":"1eB","@stdlib/random/array/lognormal":"1eC","@stdlib/random-array-lognormal":"1eD","@stdlib/random/array/minstd-shuffle":"1eE","@stdlib/random-array-minstd-shuffle":"1eF","@stdlib/random/array/minstd":"1eG","@stdlib/random-array-minstd":"1eH","@stdlib/random/array/mt19937":"1eI","@stdlib/random-array-mt19937":"1eJ","@stdlib/random/array/normal":"1eK","@stdlib/random-array-normal":"1eL","@stdlib/random/array":"1eM","@stdlib/random-array":"1eN","@stdlib/random/array/randu":"1eO","@stdlib/random-array-randu":"1eP","@stdlib/random/array/uniform":"1eQ","@stdlib/random-array-uniform":"1eR","@stdlib/random/exponential":"1eS","@stdlib/random-exponential":"1eT","@stdlib/random/strided/arcsine":"1eU","@stdlib/random-strided-arcsine":"1eV","@stdlib/random/strided/beta":"1eW","@stdlib/random-strided-beta":"1eX","@stdlib/random/strided/betaprime":"1eY","@stdlib/random-strided-betaprime":"1eZ","@stdlib/random/strided/cosine":"1ea","@stdlib/random-strided-cosine":"1eb","@stdlib/random/strided/discrete-uniform":"1ec","@stdlib/random-strided-discrete-uniform":"1ed","@stdlib/random/strided/exponential":"1ee","@stdlib/random-strided-exponential":"1ef","@stdlib/random/strided/gamma":"1eg","@stdlib/random-strided-gamma":"1eh","@stdlib/random/strided/invgamma":"1ei","@stdlib/random-strided-invgamma":"1ej","@stdlib/random/strided/lognormal":"1ek","@stdlib/random-strided-lognormal":"1el","@stdlib/random/strided/minstd-shuffle":"1em","@stdlib/random-strided-minstd-shuffle":"1en","@stdlib/random/strided/minstd":"1eo","@stdlib/random-strided-minstd":"1ep","@stdlib/random/strided/mt19937":"1eq","@stdlib/random-strided-mt19937":"1er","@stdlib/random/strided/normal":"1es","@stdlib/random-strided-normal":"1et","@stdlib/random/strided":"1eu","@stdlib/random-strided":"1ev","@stdlib/random/strided/randu":"1ew","@stdlib/random-strided-randu":"1ex","@stdlib/random/strided/uniform":"1ey","@stdlib/random-strided-uniform":"1ez","@stdlib/random/strided/weibull":"1f0","@stdlib/random-strided-weibull":"1f1","@stdlib/regexp/duration-string":"1f2","@stdlib/regexp-duration-string":"1f3","@stdlib/regexp/reviver":"1f4","@stdlib/regexp-reviver":"1f5","@stdlib/regexp/semver":"1f6","@stdlib/regexp-semver":"1f7","@stdlib/regexp/to-json":"1f8","@stdlib/regexp-to-json":"1f9","@stdlib/stats/base/dists/lognormal/logcdf":"1fA","@stdlib/stats-base-dists-lognormal-logcdf":"1fB","@stdlib/stats/base/dists/normal/logcdf":"1fC","@stdlib/stats-base-dists-normal-logcdf":"1fD","@stdlib/stats/base/dists/studentized-range/cdf":"1fE","@stdlib/stats-base-dists-studentized-range-cdf":"1fF","@stdlib/stats/base/dists/studentized-range":"1fG","@stdlib/stats-base-dists-studentized-range":"1fH","@stdlib/stats/base/dists/studentized-range/quantile":"1fI","@stdlib/stats-base-dists-studentized-range-quantile":"1fJ","@stdlib/strided/base/mskunary-addon-dispatch":"1fK","@stdlib/strided-base-mskunary-addon-dispatch":"1fL","@stdlib/strided/base/mskunary-dtype-signatures":"1fM","@stdlib/strided-base-mskunary-dtype-signatures":"1fN","@stdlib/strided/base/mskunary-signature-callbacks":"1fO","@stdlib/strided-base-mskunary-signature-callbacks":"1fP","@stdlib/strided/base/nullary-addon-dispatch":"1fQ","@stdlib/strided-base-nullary-addon-dispatch":"1fR","@stdlib/strided/base/unary-by":"1fS","@stdlib/strided-base-unary-by":"1fT","@stdlib/strided/base/unary-dtype-signatures":"1fU","@stdlib/strided-base-unary-dtype-signatures":"1fV","@stdlib/strided/base/unary-signature-callbacks":"1fW","@stdlib/strided-base-unary-signature-callbacks":"1fX","@stdlib/strided/dispatch-by":"1fY","@stdlib/strided-dispatch-by":"1fZ","@stdlib/strided/napi/nullary":"1fa","@stdlib/strided-napi-nullary":"1fb","@stdlib/string/base/camelcase":"1fc","@stdlib/string-base-camelcase":"1fd","@stdlib/string/base/capitalize":"1fe","@stdlib/string-base-capitalize":"1ff","@stdlib/string/base/code-point-at":"1fg","@stdlib/string-base-code-point-at":"1fh","@stdlib/string/base/constantcase":"1fi","@stdlib/string-base-constantcase":"1fj","@stdlib/string/base/distances/levenshtein":"1fk","@stdlib/string-base-distances-levenshtein":"1fl","@stdlib/string/base/distances":"1fm","@stdlib/string-base-distances":"1fn","@stdlib/string/base/dotcase":"1fo","@stdlib/string-base-dotcase":"1fp","@stdlib/string/base/ends-with":"1fq","@stdlib/string-base-ends-with":"1fr","@stdlib/string/base/first-code-point":"1fs","@stdlib/string-base-first-code-point":"1ft","@stdlib/string/base/first-grapheme-cluster":"1fu","@stdlib/string-base-first-grapheme-cluster":"1fv","@stdlib/string/base/first":"1fw","@stdlib/string-base-first":"1fx","@stdlib/string/base/for-each-code-point":"1fy","@stdlib/string-base-for-each-code-point":"1fz","@stdlib/string/base/for-each-grapheme-cluster":"1g0","@stdlib/string-base-for-each-grapheme-cluster":"1g1","@stdlib/string/base/for-each":"1g2","@stdlib/string-base-for-each":"1g3","@stdlib/string/base/headercase":"1g4","@stdlib/string-base-headercase":"1g5","@stdlib/string/base/invcase":"1g6","@stdlib/string-base-invcase":"1g7","@stdlib/string/base/kebabcase":"1g8","@stdlib/string-base-kebabcase":"1g9","@stdlib/string/base/left-pad":"1gA","@stdlib/string-base-left-pad":"1gB","@stdlib/string/base/left-trim":"1gC","@stdlib/string-base-left-trim":"1gD","@stdlib/string/base/lowercase":"1gE","@stdlib/string-base-lowercase":"1gF","@stdlib/string/base/pascalcase":"1gG","@stdlib/string-base-pascalcase":"1gH","@stdlib/string/base/percent-encode":"1gI","@stdlib/string-base-percent-encode":"1gJ","@stdlib/string/base/remove-first-code-point":"1gK","@stdlib/string-base-remove-first-code-point":"1gL","@stdlib/string/base/remove-first-grapheme-cluster":"1gM","@stdlib/string-base-remove-first-grapheme-cluster":"1gN","@stdlib/string/base/remove-first":"1gO","@stdlib/string-base-remove-first":"1gP","@stdlib/string/base/repeat":"1gQ","@stdlib/string-base-repeat":"1gR","@stdlib/string/base/replace-before":"1gS","@stdlib/string-base-replace-before":"1gT","@stdlib/string/base/replace":"1gU","@stdlib/string-base-replace":"1gV","@stdlib/string/base/right-pad":"1gW","@stdlib/string-base-right-pad":"1gX","@stdlib/string/base/right-trim":"1gY","@stdlib/string-base-right-trim":"1gZ","@stdlib/string/base/snakecase":"1ga","@stdlib/string-base-snakecase":"1gb","@stdlib/string/base/startcase":"1gc","@stdlib/string-base-startcase":"1gd","@stdlib/string/base/starts-with":"1ge","@stdlib/string-base-starts-with":"1gf","@stdlib/string/base/trim":"1gg","@stdlib/string-base-trim":"1gh","@stdlib/string/base/uncapitalize":"1gi","@stdlib/string-base-uncapitalize":"1gj","@stdlib/string/base/uppercase":"1gk","@stdlib/string-base-uppercase":"1gl","@stdlib/string/dotcase":"1gm","@stdlib/string-dotcase":"1gn","@stdlib/string/first":"1go","@stdlib/string-first":"1gp","@stdlib/string/for-each":"1gq","@stdlib/string-for-each":"1gr","@stdlib/string/headercase":"1gs","@stdlib/string-headercase":"1gt","@stdlib/string/num2words":"1gu","@stdlib/string-num2words":"1gv","@stdlib/string/replace-before":"1gw","@stdlib/string-replace-before":"1gx","@stdlib/string/to-grapheme-cluster-iterator-right":"1gy","@stdlib/string-to-grapheme-cluster-iterator-right":"1gz","@stdlib/string/to-grapheme-cluster-iterator":"1h0","@stdlib/string-to-grapheme-cluster-iterator":"1h1","@stdlib/time/base":"1h2","@stdlib/time-base":"1h3","@stdlib/time/base/parse-duration":"1h4","@stdlib/time-base-parse-duration":"1h5","@stdlib/time/current-year":"1h6","@stdlib/time-current-year":"1h7","@stdlib/time/duration2ms":"1h8","@stdlib/time-duration2ms":"1h9","@stdlib/time/ms2duration":"1hA","@stdlib/time-ms2duration":"1hB","@stdlib/utils/decorate-after":"1hC","@stdlib/utils-decorate-after":"1hD","@stdlib/utils/dsv/base":"1hE","@stdlib/utils-dsv-base":"1hF","@stdlib/utils/dsv/base/parse":"1hG","@stdlib/utils-dsv-base-parse":"1hH","@stdlib/utils/dsv":"1hI","@stdlib/utils-dsv":"1hJ","@stdlib/utils/thunk":"1hK","@stdlib/utils-thunk":"1hL","@stdlib/array/base/broadcast-array":"1hM","@stdlib/array-base-broadcast-array":"1hN","@stdlib/array/base/filled2d-by":"1hO","@stdlib/array-base-filled2d-by":"1hP","@stdlib/array/base/filled3d-by":"1hQ","@stdlib/array-base-filled3d-by":"1hR","@stdlib/array/base/filled3d":"1hS","@stdlib/array-base-filled3d":"1hT","@stdlib/array/base/filled4d-by":"1hU","@stdlib/array-base-filled4d-by":"1hV","@stdlib/array/base/filled4d":"1hW","@stdlib/array-base-filled4d":"1hX","@stdlib/array/base/filled5d-by":"1hY","@stdlib/array-base-filled5d-by":"1hZ","@stdlib/array/base/filled5d":"1ha","@stdlib/array-base-filled5d":"1hb","@stdlib/array/base/fillednd":"1hc","@stdlib/array-base-fillednd":"1hd","@stdlib/array/base/flatten-by":"1he","@stdlib/array-base-flatten-by":"1hf","@stdlib/array/base/one-to":"1hg","@stdlib/array-base-one-to":"1hh","@stdlib/array/base/ones3d":"1hi","@stdlib/array-base-ones3d":"1hj","@stdlib/array/base/ones4d":"1hk","@stdlib/array-base-ones4d":"1hl","@stdlib/array/base/ones5d":"1hm","@stdlib/array-base-ones5d":"1hn","@stdlib/array/base/onesnd":"1ho","@stdlib/array-base-onesnd":"1hp","@stdlib/array/base/unary2d":"1hq","@stdlib/array-base-unary2d":"1hr","@stdlib/array/base/zeros3d":"1hs","@stdlib/array-base-zeros3d":"1ht","@stdlib/array/base/zeros4d":"1hu","@stdlib/array-base-zeros4d":"1hv","@stdlib/array/base/zeros5d":"1hw","@stdlib/array-base-zeros5d":"1hx","@stdlib/array/base/zerosnd":"1hy","@stdlib/array-base-zerosnd":"1hz","@stdlib/array/base/binary2d":"1i0","@stdlib/array-base-binary2d":"1i1","@stdlib/array/base/binary3d":"1i2","@stdlib/array-base-binary3d":"1i3","@stdlib/array/base/binary4d":"1i4","@stdlib/array-base-binary4d":"1i5","@stdlib/array/base/binary5d":"1i6","@stdlib/array-base-binary5d":"1i7","@stdlib/array/base/binarynd":"1i8","@stdlib/array-base-binarynd":"1i9","@stdlib/array/base/broadcasted-binary2d":"1iA","@stdlib/array-base-broadcasted-binary2d":"1iB","@stdlib/array/base/broadcasted-binary3d":"1iC","@stdlib/array-base-broadcasted-binary3d":"1iD","@stdlib/array/base/broadcasted-binary4d":"1iE","@stdlib/array-base-broadcasted-binary4d":"1iF","@stdlib/array/base/broadcasted-binary5d":"1iG","@stdlib/array-base-broadcasted-binary5d":"1iH","@stdlib/array/base/broadcasted-unary2d":"1iI","@stdlib/array-base-broadcasted-unary2d":"1iJ","@stdlib/array/base/broadcasted-unary3d":"1iK","@stdlib/array-base-broadcasted-unary3d":"1iL","@stdlib/array/base/broadcasted-unary4d":"1iM","@stdlib/array-base-broadcasted-unary4d":"1iN","@stdlib/array/base/broadcasted-unary5d":"1iO","@stdlib/array-base-broadcasted-unary5d":"1iP","@stdlib/array/base/fillednd-by":"1iQ","@stdlib/array-base-fillednd-by":"1iR","@stdlib/array/base/unary3d":"1iS","@stdlib/array-base-unary3d":"1iT","@stdlib/array/base/unary4d":"1iU","@stdlib/array-base-unary4d":"1iV","@stdlib/array/base/unary5d":"1iW","@stdlib/array-base-unary5d":"1iX","@stdlib/array/base/unarynd":"1iY","@stdlib/array-base-unarynd":"1iZ","@stdlib/array/base/mskbinary2d":"1ia","@stdlib/array-base-mskbinary2d":"1ib","@stdlib/array/base/mskunary2d":"1ic","@stdlib/array-base-mskunary2d":"1id","@stdlib/array/base/mskunary3d":"1ie","@stdlib/array-base-mskunary3d":"1if","@stdlib/array/base/unary2d-by":"1ig","@stdlib/array-base-unary2d-by":"1ih","@stdlib/assert/is-multi-slice":"1ii","@stdlib/assert-is-multi-slice":"1ij","@stdlib/assert/is-slice":"1ik","@stdlib/assert-is-slice":"1il","@stdlib/math/base/special/log1pmx":"1im","@stdlib/math-base-special-log1pmx":"1in","@stdlib/slice/base":"1io","@stdlib/slice-base":"1ip","@stdlib/slice/base/seq2slice":"1iq","@stdlib/slice-base-seq2slice":"1ir","@stdlib/slice/base/slice2seq":"1is","@stdlib/slice-base-slice2seq":"1it","@stdlib/slice/base/str2multislice":"1iu","@stdlib/slice-base-str2multislice":"1iv","@stdlib/slice/base/str2slice":"1iw","@stdlib/slice-base-str2slice":"1ix","@stdlib/slice/ctor":"1iy","@stdlib/slice-ctor":"1iz","@stdlib/slice/multi":"1j0","@stdlib/slice-multi":"1j1","@stdlib/slice":"1j3","@stdlib/slice/seq2slice":"1j4","@stdlib/slice-seq2slice":"1j5","@stdlib/ndarray/fancy":"1j6","@stdlib/ndarray-fancy":"1j7","@stdlib/slice/base/length":"1j8","@stdlib/slice-base-length":"1j9","@stdlib/slice/base/normalize-multi-slice":"1jA","@stdlib/slice-base-normalize-multi-slice":"1jB","@stdlib/slice/base/normalize-slice":"1jC","@stdlib/slice-base-normalize-slice":"1jD","@stdlib/slice/base/seq2multislice":"1jE","@stdlib/slice-base-seq2multislice":"1jF","@stdlib/slice/base/shape":"1jG","@stdlib/slice-base-shape":"1jH","@stdlib/string/base/remove-last-code-point":"1jI","@stdlib/string-base-remove-last-code-point":"1jJ","@stdlib/string/base/remove-last-grapheme-cluster":"1jK","@stdlib/string-base-remove-last-grapheme-cluster":"1jL","@stdlib/string/base/remove-last":"1jM","@stdlib/string-base-remove-last":"1jN","@stdlib/ndarray/base/slice-assign":"1jO","@stdlib/ndarray-base-slice-assign":"1jP","@stdlib/ndarray/base/slice":"1jQ","@stdlib/ndarray-base-slice":"1jR","@stdlib/ndarray/slice-assign":"1jS","@stdlib/ndarray-slice-assign":"1jT","@stdlib/ndarray/slice":"1jU","@stdlib/ndarray-slice":"1jV","@stdlib/slice/base/nonreduced-dimensions":"1jW","@stdlib/slice-base-nonreduced-dimensions":"1jX","@stdlib/slice/base/reduced-dimensions":"1jY","@stdlib/slice-base-reduced-dimensions":"1jZ","@stdlib/slice/base/sargs2multislice":"1ja","@stdlib/slice-base-sargs2multislice":"1jb","@stdlib/ndarray/base/ndims":"1jc","@stdlib/ndarray-base-ndims":"1jd","@stdlib/ndarray/base/next-cartesian-index":"1je","@stdlib/ndarray-base-next-cartesian-index":"1jf","@stdlib/ndarray/base/offset":"1jg","@stdlib/ndarray-base-offset":"1jh","@stdlib/ndarray/base/shape":"1ji","@stdlib/ndarray-base-shape":"1jj","@stdlib/ndarray/base/strides":"1jk","@stdlib/ndarray-base-strides":"1jl","@stdlib/ndarray/broadcast-array":"1jm","@stdlib/ndarray-broadcast-array":"1jn","@stdlib/ndarray/iter/columns":"1jo","@stdlib/ndarray-iter-columns":"1jp","@stdlib/ndarray/iter/entries":"1jq","@stdlib/ndarray-iter-entries":"1jr","@stdlib/ndarray/iter/indices":"1js","@stdlib/ndarray-iter-indices":"1jt","@stdlib/ndarray/iter":"1ju","@stdlib/ndarray-iter":"1jv","@stdlib/ndarray/iter/rows":"1jw","@stdlib/ndarray-iter-rows":"1jx","@stdlib/ndarray/iter/to-array-each":"1jy","@stdlib/ndarray-iter-to-array-each":"1jz","@stdlib/ndarray/iter/values":"1k0","@stdlib/ndarray-iter-values":"1k1","@stdlib/ndarray/maybe-broadcast-array":"1k2","@stdlib/ndarray-maybe-broadcast-array":"1k3","@stdlib/ndarray/ndims":"1k4","@stdlib/ndarray-ndims":"1k5","@stdlib/ndarray/numel":"1k6","@stdlib/ndarray-numel":"1k7","@stdlib/ndarray/offset":"1k8","@stdlib/ndarray-offset":"1k9","@stdlib/ndarray/shape":"1kA","@stdlib/ndarray-shape":"1kB","@stdlib/ndarray/strides":"1kC","@stdlib/ndarray-strides":"1kD","@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast":"1kE","@stdlib/ndarray-base-assert-is-mostly-safe-data-type-cast":"1kF","@stdlib/ndarray/base/assign":"1kG","@stdlib/ndarray-base-assign":"1kH","@stdlib/ndarray/base/data-buffer":"1kI","@stdlib/ndarray-base-data-buffer":"1kJ","@stdlib/ndarray/base/dtype":"1kK","@stdlib/ndarray-base-dtype":"1kL","@stdlib/ndarray/base/order":"1kM","@stdlib/ndarray-base-order":"1kN","@stdlib/ndarray/base/reverse":"1kO","@stdlib/ndarray-base-reverse":"1kP","@stdlib/ndarray/base/slice-dimension":"1kQ","@stdlib/ndarray-base-slice-dimension":"1kR","@stdlib/ndarray/data-buffer":"1kS","@stdlib/ndarray-data-buffer":"1kT","@stdlib/ndarray/dtype":"1kU","@stdlib/ndarray-dtype":"1kV","@stdlib/ndarray/mostly-safe-casts":"1kW","@stdlib/ndarray-mostly-safe-casts":"1kX","@stdlib/ndarray/order":"1kY","@stdlib/ndarray-order":"1kZ","@stdlib/ndarray/slice-dimension":"1ka","@stdlib/ndarray-slice-dimension":"1kb","@stdlib/slice/base/args2multislice":"1kc","@stdlib/slice-base-args2multislice":"1kd","@stdlib/array/base/broadcasted-quaternary2d":"1ke","@stdlib/array-base-broadcasted-quaternary2d":"1kf","@stdlib/array/base/broadcasted-quinary2d":"1kg","@stdlib/array-base-broadcasted-quinary2d":"1kh","@stdlib/array/base/broadcasted-ternary2d":"1ki","@stdlib/array-base-broadcasted-ternary2d":"1kj","@stdlib/array/base/quaternary2d":"1kk","@stdlib/array-base-quaternary2d":"1kl","@stdlib/array/base/quinary2d":"1km","@stdlib/array-base-quinary2d":"1kn","@stdlib/array/base/strided2array2d":"1ko","@stdlib/array-base-strided2array2d":"1kp","@stdlib/array/base/strided2array3d":"1kq","@stdlib/array-base-strided2array3d":"1kr","@stdlib/array/base/strided2array4d":"1ks","@stdlib/array-base-strided2array4d":"1kt","@stdlib/array/base/strided2array5d":"1ku","@stdlib/array-base-strided2array5d":"1kv","@stdlib/array/base/ternary2d":"1kw","@stdlib/array-base-ternary2d":"1kx","@stdlib/array/base/ternary3d":"1ky","@stdlib/array-base-ternary3d":"1kz","@stdlib/array/base/ternary4d":"1l0","@stdlib/array-base-ternary4d":"1l1","@stdlib/array/base/ternary5d":"1l2","@stdlib/array-base-ternary5d":"1l3","@stdlib/ndarray/base/fliplr":"1l4","@stdlib/ndarray-base-fliplr":"1l5","@stdlib/ndarray/base/flipud":"1l6","@stdlib/ndarray-base-flipud":"1l7","@stdlib/ndarray/base/normalize-index":"1l8","@stdlib/ndarray-base-normalize-index":"1l9","@stdlib/ndarray/base/reverse-dimension":"1lA","@stdlib/ndarray-base-reverse-dimension":"1lB","@stdlib/ndarray/base/slice-dimension-from":"1lC","@stdlib/ndarray-base-slice-dimension-from":"1lD","@stdlib/ndarray/base/slice-dimension-to":"1lE","@stdlib/ndarray-base-slice-dimension-to":"1lF","@stdlib/ndarray/base/slice-from":"1lG","@stdlib/ndarray-base-slice-from":"1lH","@stdlib/ndarray/base/slice-to":"1lI","@stdlib/ndarray-base-slice-to":"1lJ","@stdlib/ndarray/iter/column-entries":"1lK","@stdlib/ndarray-iter-column-entries":"1lL","@stdlib/ndarray/iter/matrices":"1lM","@stdlib/ndarray-iter-matrices":"1lN","@stdlib/ndarray/iter/matrix-entries":"1lO","@stdlib/ndarray-iter-matrix-entries":"1lP","@stdlib/ndarray/iter/row-entries":"1lQ","@stdlib/ndarray-iter-row-entries":"1lR","@stdlib/ndarray/slice-dimension-from":"1lS","@stdlib/ndarray-slice-dimension-from":"1lT","@stdlib/ndarray/slice-dimension-to":"1lU","@stdlib/ndarray-slice-dimension-to":"1lV","@stdlib/string/base/reverse-code-points":"1lW","@stdlib/string-base-reverse-code-points":"1lX","@stdlib/string/base/reverse-grapheme-clusters":"1lY","@stdlib/string-base-reverse-grapheme-clusters":"1lZ","@stdlib/string/base/reverse":"1la","@stdlib/string-base-reverse":"1lb","@stdlib/string/base/truncate-middle":"1lc","@stdlib/string-base-truncate-middle":"1ld","@stdlib/string/next-code-point-index":"1le","@stdlib/string-next-code-point-index":"1lf","@stdlib/array/base/fliplr2d":"1lg","@stdlib/array-base-fliplr2d":"1lh","@stdlib/array/base/flipud2d":"1li","@stdlib/array-base-flipud2d":"1lj","@stdlib/array/base/from-strided":"1lk","@stdlib/array-base-from-strided":"1ll","@stdlib/array/base/map2d":"1lm","@stdlib/array-base-map2d":"1ln","@stdlib/array/base/map3d":"1lo","@stdlib/array-base-map3d":"1lp","@stdlib/array/base/quaternary3d":"1lq","@stdlib/array-base-quaternary3d":"1lr","@stdlib/array/base/quaternary4d":"1ls","@stdlib/array-base-quaternary4d":"1lt","@stdlib/array/base/quaternary5d":"1lu","@stdlib/array-base-quaternary5d":"1lv","@stdlib/array/base/resolve-getter":"1lw","@stdlib/array-base-resolve-getter":"1lx","@stdlib/array/base/take-indexed":"1ly","@stdlib/array-base-take-indexed":"1lz","@stdlib/array/base/take2d":"1m0","@stdlib/array-base-take2d":"1m1","@stdlib/math/base/napi/quaternary":"1m2","@stdlib/math-base-napi-quaternary":"1m3","@stdlib/math/base/napi/quinary":"1m4","@stdlib/math-base-napi-quinary":"1m5","@stdlib/math/base/ops/add3":"1m6","@stdlib/math-base-ops-add3":"1m7","@stdlib/math/base/ops/add4":"1m8","@stdlib/math-base-ops-add4":"1m9","@stdlib/math/base/ops/add5":"1mA","@stdlib/math-base-ops-add5":"1mB","@stdlib/math/base/ops/div":"1mC","@stdlib/math-base-ops-div":"1mD","@stdlib/math/base/ops/divf":"1mE","@stdlib/math-base-ops-divf":"1mF","@stdlib/math/base/special/factorial2":"1mG","@stdlib/math-base-special-factorial2":"1mH","@stdlib/array/base/fliplr3d":"1mI","@stdlib/array-base-fliplr3d":"1mJ","@stdlib/array/base/fliplr4d":"1mK","@stdlib/array-base-fliplr4d":"1mL","@stdlib/array/base/fliplr5d":"1mM","@stdlib/array-base-fliplr5d":"1mN","@stdlib/array/base/map4d":"1mO","@stdlib/array-base-map4d":"1mP","@stdlib/array/base/map5d":"1mQ","@stdlib/array-base-map5d":"1mR","@stdlib/array/base/take3d":"1mS","@stdlib/array-base-take3d":"1mT","@stdlib/assert/is-complex128matrix-like":"1mU","@stdlib/assert-is-complex128matrix-like":"1mV","@stdlib/assert/is-complex128ndarray-like":"1mW","@stdlib/assert-is-complex128ndarray-like":"1mX","@stdlib/assert/is-complex128vector-like":"1mY","@stdlib/assert-is-complex128vector-like":"1mZ","@stdlib/assert/is-complex64matrix-like":"1ma","@stdlib/assert-is-complex64matrix-like":"1mb","@stdlib/assert/is-complex64ndarray-like":"1mc","@stdlib/assert-is-complex64ndarray-like":"1md","@stdlib/assert/is-complex64vector-like":"1me","@stdlib/assert-is-complex64vector-like":"1mf","@stdlib/ndarray/base/stride":"1mg","@stdlib/ndarray-base-stride":"1mh","@stdlib/ndarray/slice-to":"1mi","@stdlib/ndarray-slice-to":"1mj","@stdlib/ndarray/stride":"1mk","@stdlib/ndarray-stride":"1ml","@stdlib/array/base/first":"1mm","@stdlib/array-base-first":"1mn","@stdlib/array/base/index-of":"1mo","@stdlib/array-base-index-of":"1mp","@stdlib/array/base/last-index-of":"1mq","@stdlib/array-base-last-index-of":"1mr","@stdlib/array/base/slice":"1ms","@stdlib/array-base-slice":"1mt","@stdlib/iter/while-each":"1mu","@stdlib/iter-while-each":"1mv","@stdlib/ndarray/slice-from":"1mw","@stdlib/ndarray-slice-from":"1mx","@stdlib/string/base/altcase":"1my","@stdlib/string-base-altcase":"1mz","@stdlib/string/base/distances/hamming":"1n0","@stdlib/string-base-distances-hamming":"1n1","@stdlib/array/base/bifurcate-entries":"1n2","@stdlib/array-base-bifurcate-entries":"1n3","@stdlib/array/base/bifurcate-indices":"1n4","@stdlib/array-base-bifurcate-indices":"1n5","@stdlib/array/base/bifurcate-values":"1n6","@stdlib/array-base-bifurcate-values":"1n7","@stdlib/array/base/dedupe":"1n8","@stdlib/array-base-dedupe":"1n9","@stdlib/array/base/flipud3d":"1nA","@stdlib/array-base-flipud3d":"1nB","@stdlib/array/base/flipud4d":"1nC","@stdlib/array-base-flipud4d":"1nD","@stdlib/array/base/flipud5d":"1nE","@stdlib/array-base-flipud5d":"1nF","@stdlib/array/base/group-entries":"1nG","@stdlib/array-base-group-entries":"1nH","@stdlib/array/base/group-indices":"1nI","@stdlib/array-base-group-indices":"1nJ","@stdlib/array/base/group-values":"1nK","@stdlib/array-base-group-values":"1nL","@stdlib/array/base/quinary3d":"1nM","@stdlib/array-base-quinary3d":"1nN","@stdlib/array/base/quinary4d":"1nO","@stdlib/array-base-quinary4d":"1nP","@stdlib/array/base/quinary5d":"1nQ","@stdlib/array-base-quinary5d":"1nR","@stdlib/array/base/to-deduped":"1nS","@stdlib/array-base-to-deduped":"1nT","@stdlib/ndarray/base/broadcast-arrays":"1nU","@stdlib/ndarray-base-broadcast-arrays":"1nV","@stdlib/ndarray/base/flags":"1nW","@stdlib/ndarray-base-flags":"1nX","@stdlib/ndarray/base/maybe-broadcast-arrays":"1nY","@stdlib/ndarray-base-maybe-broadcast-arrays":"1nZ","@stdlib/ndarray/broadcast-arrays":"1na","@stdlib/ndarray-broadcast-arrays":"1nb","@stdlib/ndarray/maybe-broadcast-arrays":"1nc","@stdlib/ndarray-maybe-broadcast-arrays":"1nd","@stdlib/array/base/bifurcate-entries-by":"1ne","@stdlib/array-base-bifurcate-entries-by":"1nf","@stdlib/array/base/bifurcate-indices-by":"1ng","@stdlib/array-base-bifurcate-indices-by":"1nh","@stdlib/array/base/bifurcate-values-by":"1ni","@stdlib/array-base-bifurcate-values-by":"1nj","@stdlib/array/base/group-entries-by":"1nk","@stdlib/array-base-group-entries-by":"1nl","@stdlib/array/base/group-indices-by":"1nm","@stdlib/array-base-group-indices-by":"1nn","@stdlib/array/base/group-values-by":"1no","@stdlib/array-base-group-values-by":"1np","@stdlib/array/defaults":"1nq","@stdlib/array-defaults":"1nr","@stdlib/ndarray/base/flag":"1ns","@stdlib/ndarray-base-flag":"1nt","@stdlib/ndarray/base/numel-dimension":"1nu","@stdlib/ndarray-base-numel-dimension":"1nv","@stdlib/ndarray/flag":"1nw","@stdlib/ndarray-flag":"1nx","@stdlib/ndarray/flags":"1ny","@stdlib/ndarray-flags":"1nz","@stdlib/ndarray/numel-dimension":"1o0","@stdlib/ndarray-numel-dimension":"1o1","@stdlib/random/array/bernoulli":"1o2","@stdlib/random-array-bernoulli":"1o3","@stdlib/random/array/chi":"1o4","@stdlib/random-array-chi":"1o5","@stdlib/random/array/chisquare":"1o6","@stdlib/random-array-chisquare":"1o7","@stdlib/random/array/poisson":"1o8","@stdlib/random-array-poisson":"1o9","@stdlib/random/array/rayleigh":"1oA","@stdlib/random-array-rayleigh":"1oB","@stdlib/random/array/t":"1oC","@stdlib/random-array-t":"1oD","@stdlib/random/array/tools/nullary":"1oE","@stdlib/random-array-tools-nullary":"1oF","@stdlib/random/array/tools/unary-factory":"1oG","@stdlib/random-array-tools-unary-factory":"1oH","@stdlib/random/array/tools/unary":"1oI","@stdlib/random-array-tools-unary":"1oJ","@stdlib/array/base/any-by-right":"1oK","@stdlib/array-base-any-by-right":"1oL","@stdlib/array/base/any-by":"1oM","@stdlib/array-base-any-by":"1oN","@stdlib/array/base/any":"1oO","@stdlib/array-base-any":"1oP","@stdlib/array/base/assert/has-same-values":"1oQ","@stdlib/array-base-assert-has-same-values":"1oR","@stdlib/array/base/assert/is-complex128array":"1oS","@stdlib/array-base-assert-is-complex128array":"1oT","@stdlib/array/base/assert/is-complex64array":"1oU","@stdlib/array-base-assert-is-complex64array":"1oV","@stdlib/array/base/at":"1oW","@stdlib/array-base-at":"1oX","@stdlib/array/base/at2d":"1oY","@stdlib/array-base-at2d":"1oZ","@stdlib/array/base/at3d":"1oa","@stdlib/array-base-at3d":"1ob","@stdlib/array/base/at4d":"1oc","@stdlib/array-base-at4d":"1od","@stdlib/array/base/at5d":"1oe","@stdlib/array-base-at5d":"1of","@stdlib/array/base/atnd":"1og","@stdlib/array-base-atnd":"1oh","@stdlib/array/base/every-by-right":"1oi","@stdlib/array-base-every-by-right":"1oj","@stdlib/array/base/every-by":"1ok","@stdlib/array-base-every-by":"1ol","@stdlib/array/base/every":"1om","@stdlib/array-base-every":"1on","@stdlib/array/base/filter":"1oo","@stdlib/array-base-filter":"1op","@stdlib/array/base/mskfilter":"1oq","@stdlib/array-base-mskfilter":"1or","@stdlib/array/base/none-by-right":"1os","@stdlib/array-base-none-by-right":"1ot","@stdlib/array/base/none-by":"1ou","@stdlib/array-base-none-by":"1ov","@stdlib/array/base/none":"1ow","@stdlib/array-base-none":"1ox","@stdlib/array/base/resolve-setter":"1oy","@stdlib/array-base-resolve-setter":"1oz","@stdlib/array/base/reverse":"1p0","@stdlib/array-base-reverse":"1p1","@stdlib/array/base/to-reversed":"1p2","@stdlib/array-base-to-reversed":"1p3","@stdlib/array/cartesian-power":"1p4","@stdlib/array-cartesian-power":"1p5","@stdlib/array/cartesian-product":"1p6","@stdlib/array-cartesian-product":"1p7","@stdlib/array/cartesian-square":"1p8","@stdlib/array-cartesian-square":"1p9","@stdlib/array/one-to-like":"1pA","@stdlib/array-one-to-like":"1pB","@stdlib/array/one-to":"1pC","@stdlib/array-one-to":"1pD","@stdlib/array/slice":"1pE","@stdlib/array-slice":"1pF","@stdlib/array/zero-to-like":"1pG","@stdlib/array-zero-to-like":"1pH","@stdlib/array/zero-to":"1pI","@stdlib/array-zero-to":"1pJ","@stdlib/assert/is-same-array":"1pK","@stdlib/assert-is-same-array":"1pL","@stdlib/assert/is-same-complex128":"1pM","@stdlib/assert-is-same-complex128":"1pN","@stdlib/assert/is-same-complex128array":"1pO","@stdlib/assert-is-same-complex128array":"1pP","@stdlib/assert/is-same-complex64":"1pQ","@stdlib/assert-is-same-complex64":"1pR","@stdlib/assert/is-same-complex64array":"1pS","@stdlib/assert-is-same-complex64array":"1pT","@stdlib/assert/is-same-float32array":"1pU","@stdlib/assert-is-same-float32array":"1pV","@stdlib/assert/is-same-float64array":"1pW","@stdlib/assert-is-same-float64array":"1pX","@stdlib/complex/float64/base/assert/is-equal":"1pY","@stdlib/complex-base-assert-is-equal":"1pZ","@stdlib/complex/base/assert/is-equalf":"1pa","@stdlib/complex-base-assert-is-equalf":"1pb","@stdlib/complex/base/assert/is-not-equal":"1pc","@stdlib/complex-base-assert-is-not-equal":"1pd","@stdlib/complex/base/assert/is-not-equalf":"1pe","@stdlib/complex-base-assert-is-not-equalf":"1pf","@stdlib/complex/base/assert/is-same-value-zero":"1pg","@stdlib/complex-base-assert-is-same-value-zero":"1ph","@stdlib/complex/base/assert/is-same-value-zerof":"1pi","@stdlib/complex-base-assert-is-same-value-zerof":"1pj","@stdlib/complex/base/assert/is-same-value":"1pk","@stdlib/complex-base-assert-is-same-value":"1pl","@stdlib/complex/base/assert/is-same-valuef":"1pm","@stdlib/complex-base-assert-is-same-valuef":"1pn","@stdlib/complex/base/assert":"1po","@stdlib/complex-base-assert":"1pp","@stdlib/constants/complex128/nan":"1pq","@stdlib/constants-complex128-nan":"1pr","@stdlib/constants/complex128/zero":"1ps","@stdlib/constants-complex128-zero":"1pt","@stdlib/constants/complex64/nan":"1pu","@stdlib/constants-complex64-nan":"1pv","@stdlib/constants/complex64/zero":"1pw","@stdlib/constants-complex64-zero":"1px","@stdlib/constants/float32/nan":"1py","@stdlib/constants-float32-nan":"1pz","@stdlib/constants/float64/nan":"1q0","@stdlib/constants-float64-nan":"1q1","@stdlib/ndarray/at":"1q2","@stdlib/ndarray-at":"1q3","@stdlib/number/float32/base/assert/is-same-value-zero":"1q4","@stdlib/number-float32-base-assert-is-same-value-zero":"1q5","@stdlib/number/float32/base/assert/is-same-value":"1q6","@stdlib/number-float32-base-assert-is-same-value":"1q7","@stdlib/number/float32/base/assert":"1q8","@stdlib/number-float32-base-assert":"1q9","@stdlib/number/float64/base/assert/is-same-value-zero":"1qA","@stdlib/number-float64-base-assert-is-same-value-zero":"1qB","@stdlib/number/float64/base/assert/is-same-value":"1qC","@stdlib/number-float64-base-assert-is-same-value":"1qD","@stdlib/number/float64/base/assert":"1qE","@stdlib/number-float64-base-assert":"1qF","@stdlib/random/array/binomial":"1qG","@stdlib/random-array-binomial":"1qH","@stdlib/random/array/cauchy":"1qI","@stdlib/random-array-cauchy":"1qJ","@stdlib/random/array/erlang":"1qK","@stdlib/random-array-erlang":"1qL","@stdlib/random/array/f":"1qM","@stdlib/random-array-f":"1qN","@stdlib/random/array/frechet":"1qO","@stdlib/random-array-frechet":"1qP","@stdlib/random/array/gumbel":"1qQ","@stdlib/random-array-gumbel":"1qR","@stdlib/random/array/hypergeometric":"1qS","@stdlib/random-array-hypergeometric":"1qT","@stdlib/random/array/kumaraswamy":"1qU","@stdlib/random-array-kumaraswamy":"1qV","@stdlib/random/array/laplace":"1qW","@stdlib/random-array-laplace":"1qX","@stdlib/random/array/levy":"1qY","@stdlib/random-array-levy":"1qZ","@stdlib/random/array/logistic":"1qa","@stdlib/random-array-logistic":"1qb","@stdlib/random/array/negative-binomial":"1qc","@stdlib/random-array-negative-binomial":"1qd","@stdlib/random/array/pareto-type1":"1qe","@stdlib/random-array-pareto-type1":"1qf","@stdlib/random/array/tools/binary-factory":"1qg","@stdlib/random-array-tools-binary-factory":"1qh","@stdlib/random/array/tools/binary":"1qi","@stdlib/random-array-tools-binary":"1qj","@stdlib/random/array/tools/ternary-factory":"1qk","@stdlib/random-array-tools-ternary-factory":"1ql","@stdlib/random/array/tools/ternary":"1qm","@stdlib/random-array-tools-ternary":"1qn","@stdlib/random/array/triangular":"1qo","@stdlib/random-array-triangular":"1qp","@stdlib/random/array/weibull":"1qq","@stdlib/random-array-weibull":"1qr","@stdlib/array/base/assert/is-complex-floating-point-data-type":"1qs","@stdlib/array-base-assert-is-complex-floating-point-data-type":"1qt","@stdlib/array/base/assert/is-data-type":"1qu","@stdlib/array-base-assert-is-data-type":"1qv","@stdlib/array/base/assert/is-floating-point-data-type":"1qw","@stdlib/array-base-assert-is-floating-point-data-type":"1qx","@stdlib/array/base/assert/is-integer-data-type":"1qy","@stdlib/array-base-assert-is-integer-data-type":"1qz","@stdlib/array/base/assert/is-mostly-safe-data-type-cast":"1r0","@stdlib/array-base-assert-is-mostly-safe-data-type-cast":"1r1","@stdlib/array/base/assert/is-numeric-data-type":"1r2","@stdlib/array-base-assert-is-numeric-data-type":"1r3","@stdlib/array/base/assert/is-real-data-type":"1r4","@stdlib/array-base-assert-is-real-data-type":"1r5","@stdlib/array/base/assert/is-real-floating-point-data-type":"1r6","@stdlib/array-base-assert-is-real-floating-point-data-type":"1r7","@stdlib/array/base/assert/is-safe-data-type-cast":"1r8","@stdlib/array-base-assert-is-safe-data-type-cast":"1r9","@stdlib/array/base/assert/is-same-kind-data-type-cast":"1rA","@stdlib/array-base-assert-is-same-kind-data-type-cast":"1rB","@stdlib/array/base/assert/is-signed-integer-data-type":"1rC","@stdlib/array-base-assert-is-signed-integer-data-type":"1rD","@stdlib/array/base/assert/is-unsigned-integer-data-type":"1rE","@stdlib/array-base-assert-is-unsigned-integer-data-type":"1rF","@stdlib/array/base/fancy-slice-assign":"1rG","@stdlib/array-base-fancy-slice-assign":"1rH","@stdlib/array/base/fancy-slice":"1rI","@stdlib/array-base-fancy-slice":"1rJ","@stdlib/array/base/min-signed-integer-dtype":"1rK","@stdlib/array-base-min-signed-integer-dtype":"1rL","@stdlib/array/base/min-unsigned-integer-dtype":"1rM","@stdlib/array-base-min-unsigned-integer-dtype":"1rN","@stdlib/array/base/mskreject":"1rO","@stdlib/array-base-mskreject":"1rP","@stdlib/array/base/reject":"1rQ","@stdlib/array-base-reject":"1rR","@stdlib/array/from-scalar":"1rS","@stdlib/array-from-scalar":"1rT","@stdlib/array/mostly-safe-casts":"1rU","@stdlib/array-mostly-safe-casts":"1rV","@stdlib/array/to-fancy":"1rW","@stdlib/array-to-fancy":"1rX","@stdlib/random/array/tools":"1rY","@stdlib/random-array-tools":"1rZ","@stdlib/random/strided/bernoulli":"1ra","@stdlib/random-strided-bernoulli":"1rb","@stdlib/random/strided/chi":"1rc","@stdlib/random-strided-chi":"1rd","@stdlib/random/strided/chisquare":"1re","@stdlib/random-strided-chisquare":"1rf","@stdlib/random/strided/geometric":"1rg","@stdlib/random-strided-geometric":"1rh","@stdlib/random/strided/poisson":"1ri","@stdlib/random-strided-poisson":"1rj","@stdlib/random/strided/rayleigh":"1rk","@stdlib/random-strided-rayleigh":"1rl","@stdlib/random/strided/t":"1rm","@stdlib/random-strided-t":"1rn","@stdlib/random/strided/tools/binary-factory":"1ro","@stdlib/random-strided-tools-binary-factory":"1rp","@stdlib/random/strided/tools":"1rq","@stdlib/random-strided-tools":"1rr","@stdlib/random/strided/tools/ternary-factory":"1rs","@stdlib/random-strided-tools-ternary-factory":"1rt","@stdlib/random/strided/tools/unary-factory":"1ru","@stdlib/random-strided-tools-unary-factory":"1rv","@stdlib/slice/base/int2slice":"1rw","@stdlib/slice-base-int2slice":"1rx","@stdlib/array/index":"1ry","@stdlib/array-index":"1rz","@stdlib/array/take":"1s0","@stdlib/array-take":"1s1","@stdlib/strided/base/reinterpret-complex":"1s2","@stdlib/strided-base-reinterpret-complex":"1s3","@stdlib/array/base/assert/is-complex-typed-array":"1s4","@stdlib/array-base-assert-is-complex-typed-array":"1s5","@stdlib/array/base/count-falsy":"1s6","@stdlib/array-base-count-falsy":"1s7","@stdlib/array/base/count-same-value":"1s8","@stdlib/array-base-count-same-value":"1s9","@stdlib/array/base/count-truthy":"1sA","@stdlib/array-base-count-truthy":"1sB","@stdlib/array/mskfilter":"1sC","@stdlib/array-mskfilter":"1sD","@stdlib/array/mskreject":"1sE","@stdlib/array-mskreject":"1sF","@stdlib/assert/is-negative-finite":"1sG","@stdlib/assert-is-negative-finite":"1sH","@stdlib/assert/is-nonnegative-finite":"1sI","@stdlib/assert-is-nonnegative-finite":"1sJ","@stdlib/assert/is-positive-finite":"1sK","@stdlib/assert-is-positive-finite":"1sL","@stdlib/random/base/shared":"1sM","@stdlib/random-base-shared":"1sN","@stdlib/array/base/count-if":"1sO","@stdlib/array-base-count-if":"1sP","@stdlib/array/base/count-same-value-zero":"1sQ","@stdlib/array-base-count-same-value-zero":"1sR","@stdlib/array/base/with":"1sS","@stdlib/array-base-with":"1sT","@stdlib/assert/is-nonpositive-finite":"1sU","@stdlib/assert-is-nonpositive-finite":"1sV","@stdlib/assert/is-ragged-nested-array":"1sW","@stdlib/assert-is-ragged-nested-array":"1sX","@stdlib/assert/is-well-formed-string":"1sY","@stdlib/assert-is-well-formed-string":"1sZ","@stdlib/complex/base/parse":"1sa","@stdlib/complex-base-parse":"1sb","@stdlib/complex/float32/parse":"1sc","@stdlib/complex-parse-float32":"1sd","@stdlib/complex/float64/parse":"1se","@stdlib/complex-parse-float64":"1sf","@stdlib/iter/until-each":"1sg","@stdlib/iter-until-each":"1sh","@stdlib/math/base/special/csc":"1si","@stdlib/math-base-special-csc":"1sj","@stdlib/math/iter/sequences/tribonacci":"1sk","@stdlib/math-iter-sequences-tribonacci":"1sl","@stdlib/string/base/for-each-right":"1sm","@stdlib/string-base-for-each-right":"1sn","@stdlib/string/base/replace-after-last":"1so","@stdlib/string-base-replace-after-last":"1sp","@stdlib/string/base/replace-after":"1sq","@stdlib/string-base-replace-after":"1sr","@stdlib/string/base/replace-before-last":"1ss","@stdlib/string-base-replace-before-last":"1st","@stdlib/utils/every-in-by":"1su","@stdlib/utils-every-in-by":"1sv","@stdlib/utils/none-own-by":"1sw","@stdlib/utils-none-own-by":"1sx","@stdlib/utils/some-in-by":"1sy","@stdlib/utils-some-in-by":"1sz","@stdlib/array/base/join":"1t0","@stdlib/array-base-join":"1t1","@stdlib/array/base/take-map":"1t2","@stdlib/array-base-take-map":"1t3","@stdlib/assert/is-same-date-object":"1t4","@stdlib/assert-is-same-date-object":"1t5","@stdlib/blas/base/zcopy":"1t6","@stdlib/blas-base-zcopy":"1t7","@stdlib/blas/base/zswap":"1t8","@stdlib/blas-base-zswap":"1t9","@stdlib/constants/float32/fourth-pi":"1tA","@stdlib/constants-float32-fourth-pi":"1tB","@stdlib/constants/float32/half-pi":"1tC","@stdlib/constants-float32-half-pi":"1tD","@stdlib/constants/float32/pi":"1tE","@stdlib/constants-float32-pi":"1tF","@stdlib/constants/float32/two-pi":"1tG","@stdlib/constants-float32-two-pi":"1tH","@stdlib/iter/do-until-each":"1tI","@stdlib/iter-do-until-each":"1tJ","@stdlib/iter/do-while-each":"1tK","@stdlib/iter-do-while-each":"1tL","@stdlib/math/base/special/acosd":"1tM","@stdlib/math-base-special-acosd":"1tN","@stdlib/math/base/special/acosf":"1tO","@stdlib/math-base-special-acosf":"1tP","@stdlib/math/base/special/acotd":"1tQ","@stdlib/math-base-special-acotd":"1tR","@stdlib/math/base/special/acotf":"1tS","@stdlib/math-base-special-acotf":"1tT","@stdlib/math/base/special/acscd":"1tU","@stdlib/math-base-special-acscd":"1tV","@stdlib/math/base/special/acscf":"1tW","@stdlib/math-base-special-acscf":"1tX","@stdlib/math/base/special/asecd":"1tY","@stdlib/math-base-special-asecd":"1tZ","@stdlib/math/base/special/asecf":"1ta","@stdlib/math-base-special-asecf":"1tb","@stdlib/math/base/special/asind":"1tc","@stdlib/math-base-special-asind":"1td","@stdlib/math/base/special/asinf":"1te","@stdlib/math-base-special-asinf":"1tf","@stdlib/math/base/special/atand":"1tg","@stdlib/math-base-special-atand":"1th","@stdlib/math/base/special/atanf":"1ti","@stdlib/math-base-special-atanf":"1tj","@stdlib/math/base/special/cosd":"1tk","@stdlib/math-base-special-cosd":"1tl","@stdlib/math/base/special/cotd":"1tm","@stdlib/math-base-special-cotd":"1tn","@stdlib/math/base/special/cscd":"1to","@stdlib/math-base-special-cscd":"1tp","@stdlib/math/base/special/rad2degf":"1tq","@stdlib/math-base-special-rad2degf":"1tr","@stdlib/math/base/special/secd":"1ts","@stdlib/math-base-special-secd":"1tt","@stdlib/math/base/special/tand":"1tu","@stdlib/math-base-special-tand":"1tv","@stdlib/math/base/tools/evalpolyf":"1tw","@stdlib/math-base-tools-evalpolyf":"1tx","@stdlib/math/base/tools/evalrationalf":"1ty","@stdlib/math-base-tools-evalrationalf":"1tz","@stdlib/string/base/last-code-point":"1u0","@stdlib/string-base-last-code-point":"1u1","@stdlib/string/base/last-grapheme-cluster":"1u2","@stdlib/string-base-last-grapheme-cluster":"1u3","@stdlib/string/base/last":"1u4","@stdlib/string-base-last":"1u5","@stdlib/string/base/stickycase":"1u6","@stdlib/string-base-stickycase":"1u7","@stdlib/string/to-well-formed":"1u8","@stdlib/string-to-well-formed":"1u9","@stdlib/utils/any-in-by":"1uA","@stdlib/utils-any-in-by":"1uB","@stdlib/utils/any-own-by":"1uC","@stdlib/utils-any-own-by":"1uD","@stdlib/utils/every-own-by":"1uE","@stdlib/utils-every-own-by":"1uF","@stdlib/utils/none-in-by":"1uG","@stdlib/utils-none-in-by":"1uH","@stdlib/utils/parse-ndjson":"1uI","@stdlib/utils-parse-ndjson":"1uJ","@stdlib/utils/some-own-by":"1uK","@stdlib/utils-some-own-by":"1uL","@stdlib/array/base/mskfilter-map":"1uM","@stdlib/array-base-mskfilter-map":"1uN","@stdlib/array/base/mskreject-map":"1uO","@stdlib/array-base-mskreject-map":"1uP","@stdlib/array/bool":"1uQ","@stdlib/array-bool":"1uR","@stdlib/assert/napi/has-property":"1uS","@stdlib/assert-napi-has-property":"1uT","@stdlib/blas/base/dger":"1uU","@stdlib/blas-base-dger":"1uV","@stdlib/blas/base/drot":"1uW","@stdlib/blas-base-drot":"1uX","@stdlib/blas/base/idamax":"1uY","@stdlib/blas-base-idamax":"1uZ","@stdlib/blas/base/isamax":"1ua","@stdlib/blas-base-isamax":"1ub","@stdlib/blas/base/shared":"1uc","@stdlib/blas-base-shared":"1ud","@stdlib/blas/base/srot":"1ue","@stdlib/blas-base-srot":"1uf","@stdlib/blas/base/xerbla":"1ug","@stdlib/blas-base-xerbla":"1uh","@stdlib/complex/float32/base/assert/is-equal":"1ui","@stdlib/complex-float32-base-assert-is-equal":"1uj","@stdlib/complex/float32/base/assert/is-not-equal":"1uk","@stdlib/complex-float32-base-assert-is-not-equal":"1ul","@stdlib/complex/float32/base/assert/is-same-value-zero":"1um","@stdlib/complex-float32-base-assert-is-same-value-zero":"1un","@stdlib/complex/float32/base/assert/is-same-value":"1uo","@stdlib/complex-float32-base-assert-is-same-value":"1up","@stdlib/complex/float32":"1uq","@stdlib/complex/float64/base/assert/is-not-equal":"1us","@stdlib/complex-float64-base-assert-is-not-equal":"1ut","@stdlib/complex/float64/base/assert/is-same-value-zero":"1uu","@stdlib/complex-float64-base-assert-is-same-value-zero":"1uv","@stdlib/complex/float64/base/assert/is-same-value":"1uw","@stdlib/complex-float64-base-assert-is-same-value":"1ux","@stdlib/complex/float64":"1uy","@stdlib/constants/float32/phi":"1v0","@stdlib/constants-float32-phi":"1v1","@stdlib/fs/append-file":"1v2","@stdlib/fs-append-file":"1v3","@stdlib/math/base/special/acscdf":"1v4","@stdlib/math-base-special-acscdf":"1v5","@stdlib/math/base/special/asecdf":"1v6","@stdlib/math-base-special-asecdf":"1v7","@stdlib/math/base/special/asindf":"1v8","@stdlib/math-base-special-asindf":"1v9","@stdlib/math/base/special/kernel-log1p":"1vA","@stdlib/math-base-special-kernel-log1p":"1vB","@stdlib/math/base/special/rcbrtf":"1vC","@stdlib/math-base-special-rcbrtf":"1vD","@stdlib/math/base/tools/normhermitepolyf":"1vE","@stdlib/math-base-tools-normhermitepolyf":"1vF","@stdlib/napi/argv-complex128":"1vG","@stdlib/napi-argv-complex128":"1vH","@stdlib/napi/argv-complex64":"1vI","@stdlib/napi-argv-complex64":"1vJ","@stdlib/napi/create-complex-like":"1vK","@stdlib/napi-create-complex-like":"1vL","@stdlib/napi/create-double":"1vM","@stdlib/napi-create-double":"1vN","@stdlib/napi/create-int32":"1vO","@stdlib/napi-create-int32":"1vP","@stdlib/napi/create-uint32":"1vQ","@stdlib/napi-create-uint32":"1vR","@stdlib/string/base/for-each-code-point-right":"1vS","@stdlib/string-base-for-each-code-point-right":"1vT","@stdlib/string/last":"1vU","@stdlib/string-last":"1vV","@stdlib/assert/is-booleanarray":"1vW","@stdlib/assert-is-booleanarray":"1vX","@stdlib/blas/base/assert/is-layout":"1vY","@stdlib/blas-base-assert-is-layout":"1vZ","@stdlib/blas/base/assert/is-matrix-triangle":"1va","@stdlib/blas-base-assert-is-matrix-triangle":"1vb","@stdlib/blas/base/assert/is-transpose-operation":"1vc","@stdlib/blas-base-assert-is-transpose-operation":"1vd","@stdlib/blas/base/assert":"1ve","@stdlib/blas-base-assert":"1vf","@stdlib/blas/base/cscal":"1vg","@stdlib/blas-base-cscal":"1vh","@stdlib/blas/base/dcabs1":"1vi","@stdlib/blas-base-dcabs1":"1vj","@stdlib/blas/base/diagonal-types":"1vk","@stdlib/blas-base-diagonal-types":"1vl","@stdlib/blas/base/layout-enum2str":"1vm","@stdlib/blas-base-layout-enum2str":"1vn","@stdlib/blas/base/layout-resolve-enum":"1vo","@stdlib/blas-base-layout-resolve-enum":"1vp","@stdlib/blas/base/layout-resolve-str":"1vq","@stdlib/blas-base-layout-resolve-str":"1vr","@stdlib/blas/base/layout-str2enum":"1vs","@stdlib/blas-base-layout-str2enum":"1vt","@stdlib/blas/base/layouts":"1vu","@stdlib/blas-base-layouts":"1vv","@stdlib/blas/base/matrix-triangles":"1vw","@stdlib/blas-base-matrix-triangles":"1vx","@stdlib/blas/base/operation-sides":"1vy","@stdlib/blas-base-operation-sides":"1vz","@stdlib/blas/base/scabs1":"1w0","@stdlib/blas-base-scabs1":"1w1","@stdlib/blas/base/transpose-operations":"1w2","@stdlib/blas-base-transpose-operations":"1w3","@stdlib/strided/base/reinterpret-boolean":"1w4","@stdlib/strided-base-reinterpret-boolean":"1w5","@stdlib/array/base/assert/is-boolean-data-type":"1w6","@stdlib/array-base-assert-is-boolean-data-type":"1w7","@stdlib/array/base/assert/is-booleanarray":"1w8","@stdlib/array-base-assert-is-booleanarray":"1w9","@stdlib/array/base/cuany":"1wA","@stdlib/array-base-cuany":"1wB","@stdlib/array/base/cuevery":"1wC","@stdlib/array-base-cuevery":"1wD","@stdlib/array/base/mskput":"1wE","@stdlib/array-base-mskput":"1wF","@stdlib/array/base/place":"1wG","@stdlib/array-base-place":"1wH","@stdlib/array/base/put":"1wI","@stdlib/array-base-put":"1wJ","@stdlib/array/base/where":"1wK","@stdlib/array-base-where":"1wL","@stdlib/array/mskput":"1wM","@stdlib/array-mskput":"1wN","@stdlib/array/place":"1wO","@stdlib/array-place":"1wP","@stdlib/array/put":"1wQ","@stdlib/array-put":"1wR","@stdlib/assert/is-same-booleanarray":"1wS","@stdlib/assert-is-same-booleanarray":"1wT","@stdlib/blas/base/assert/is-diagonal-type":"1wU","@stdlib/blas-base-assert-is-diagonal-type":"1wV","@stdlib/blas/base/assert/is-operation-side":"1wW","@stdlib/blas-base-assert-is-operation-side":"1wX","@stdlib/blas/base/scnrm2":"1wY","@stdlib/blas-base-scnrm2":"1wZ","@stdlib/blas/base/srotm":"1wa","@stdlib/blas-base-srotm":"1wb","@stdlib/blas/base/sspmv":"1wc","@stdlib/blas-base-sspmv":"1wd","@stdlib/blas/base/ssymv":"1we","@stdlib/blas-base-ssymv":"1wf","@stdlib/blas/base/transpose-operation-enum2str":"1wg","@stdlib/blas-base-transpose-operation-enum2str":"1wh","@stdlib/blas/base/transpose-operation-resolve-enum":"1wi","@stdlib/blas-base-transpose-operation-resolve-enum":"1wj","@stdlib/blas/base/transpose-operation-resolve-str":"1wk","@stdlib/blas-base-transpose-operation-resolve-str":"1wl","@stdlib/blas/base/transpose-operation-str2enum":"1wm","@stdlib/blas-base-transpose-operation-str2enum":"1wn","@stdlib/blas/base/zscal":"1wo","@stdlib/blas-base-zscal":"1wp","@stdlib/math/base/special/lnf":"1wq","@stdlib/math-base-special-lnf":"1wr","@stdlib/math/base/special/nanmax":"1ws","@stdlib/math-base-special-nanmax":"1wt","@stdlib/math/base/special/nanmin":"1wu","@stdlib/math-base-special-nanmin":"1wv","@stdlib/array/base/cunone":"1ww","@stdlib/array-base-cunone":"1wx","@stdlib/blas/base/diagonal-type-enum2str":"1wy","@stdlib/blas-base-diagonal-type-enum2str":"1wz","@stdlib/blas/base/diagonal-type-resolve-enum":"1x0","@stdlib/blas-base-diagonal-type-resolve-enum":"1x1","@stdlib/blas/base/diagonal-type-resolve-str":"1x2","@stdlib/blas-base-diagonal-type-resolve-str":"1x3","@stdlib/blas/base/diagonal-type-str2enum":"1x4","@stdlib/blas-base-diagonal-type-str2enum":"1x5","@stdlib/blas/base/drotm":"1x6","@stdlib/blas-base-drotm":"1x7","@stdlib/blas/base/dspmv":"1x8","@stdlib/blas-base-dspmv":"1x9","@stdlib/blas/base/dsymv":"1xA","@stdlib/blas-base-dsymv":"1xB","@stdlib/blas/base/matrix-triangle-enum2str":"1xC","@stdlib/blas-base-matrix-triangle-enum2str":"1xD","@stdlib/blas/base/matrix-triangle-resolve-enum":"1xE","@stdlib/blas-base-matrix-triangle-resolve-enum":"1xF","@stdlib/blas/base/matrix-triangle-resolve-str":"1xG","@stdlib/blas-base-matrix-triangle-resolve-str":"1xH","@stdlib/blas/base/matrix-triangle-str2enum":"1xI","@stdlib/blas-base-matrix-triangle-str2enum":"1xJ","@stdlib/blas/base/operation-side-enum2str":"1xK","@stdlib/blas-base-operation-side-enum2str":"1xL","@stdlib/blas/base/operation-side-resolve-enum":"1xM","@stdlib/blas-base-operation-side-resolve-enum":"1xN","@stdlib/blas/base/operation-side-resolve-str":"1xO","@stdlib/blas-base-operation-side-resolve-str":"1xP","@stdlib/blas/base/operation-side-str2enum":"1xQ","@stdlib/blas-base-operation-side-str2enum":"1xR","@stdlib/iter/cuany":"1xS","@stdlib/iter-cuany":"1xT","@stdlib/strided/base/stride2offset":"1xU","@stdlib/strided-base-stride2offset":"1xV","@stdlib/utils/async/parallel":"1xW","@stdlib/utils-async-parallel":"1xX","@stdlib/blas/base/csrot":"1xY","@stdlib/blas-base-csrot":"1xZ","@stdlib/blas/base/dznrm2":"1xa","@stdlib/blas-base-dznrm2":"1xb","@stdlib/blas/base/zaxpy":"1xc","@stdlib/blas-base-zaxpy":"1xd","@stdlib/blas/base/zdrot":"1xe","@stdlib/blas-base-zdrot":"1xf","@stdlib/lapack/base/dlaswp":"1xg","@stdlib/lapack-base-dlaswp":"1xh","@stdlib/lapack/base":"1xi","@stdlib/lapack-base":"1xj","@stdlib/lapack":"1xl","@stdlib/ndarray/base/assert/is-boolean-data-type":"1xm","@stdlib/ndarray-base-assert-is-boolean-data-type":"1xn","@stdlib/blas/base/caxpy":"1xo","@stdlib/blas-base-caxpy":"1xp","@stdlib/blas/base/scasum":"1xq","@stdlib/blas-base-scasum":"1xr","@stdlib/complex/float32/base/add":"1xs","@stdlib/complex-float32-base-add":"1xt","@stdlib/complex/float32/base/assert":"1xu","@stdlib/complex-float32-base-assert":"1xv","@stdlib/complex/float32/base/mul":"1xw","@stdlib/complex-float32-base-mul":"1xx","@stdlib/complex/float32/base":"1xy","@stdlib/complex-float32-base":"1xz","@stdlib/complex/float32/conj":"1y0","@stdlib/complex-float32-conj":"1y1","@stdlib/complex/float32/imag":"1y2","@stdlib/complex-float32-imag":"1y3","@stdlib/complex/float32/real":"1y4","@stdlib/complex-float32-real":"1y5","@stdlib/complex/float32/reim":"1y6","@stdlib/complex-float32-reim":"1y7","@stdlib/complex/float64/base/add":"1y8","@stdlib/complex-float64-base-add":"1y9","@stdlib/complex/float64/base/assert":"1yA","@stdlib/complex-float64-base-assert":"1yB","@stdlib/complex/float64/base/mul":"1yC","@stdlib/complex-float64-base-mul":"1yD","@stdlib/complex/float64/base":"1yE","@stdlib/complex-float64-base":"1yF","@stdlib/complex/float64/conj":"1yG","@stdlib/complex-float64-conj":"1yH","@stdlib/complex/float64/imag":"1yI","@stdlib/complex-float64-imag":"1yJ","@stdlib/complex/float64/real":"1yK","@stdlib/complex-float64-real":"1yL","@stdlib/complex/float64/reim":"1yM","@stdlib/complex-float64-reim":"1yN","@stdlib/constants/float64/max-safe-nth-factorial":"1yO","@stdlib/constants-float64-max-safe-nth-factorial":"1yP","@stdlib/math/base/special/fmod":"1yQ","@stdlib/math-base-special-fmod":"1yR","@stdlib/fs/resolve-parent-paths":"1yS","@stdlib/fs-resolve-parent-paths":"1yT","@stdlib/iter/cusome":"1yU","@stdlib/iter-cusome":"1yV","@stdlib/ndarray/base/for-each":"1yW","@stdlib/ndarray-base-for-each":"1yX","@stdlib/blas/base/dgemv":"1yY","@stdlib/blas-base-dgemv":"1yZ","@stdlib/blas/base/dsyr":"1ya","@stdlib/blas-base-dsyr":"1yb","@stdlib/blas/base/dsyr2":"1yc","@stdlib/blas-base-dsyr2":"1yd","@stdlib/blas/base/dtrmv":"1ye","@stdlib/blas-base-dtrmv":"1yf","@stdlib/blas/base/sgemv":"1yg","@stdlib/blas-base-sgemv":"1yh","@stdlib/blas/base/ssyr":"1yi","@stdlib/blas-base-ssyr":"1yj","@stdlib/blas/base/ssyr2":"1yk","@stdlib/blas-base-ssyr2":"1yl","@stdlib/blas/base/strmv":"1ym","@stdlib/blas-base-strmv":"1yn","@stdlib/lapack/base/dlacpy":"1yo","@stdlib/lapack-base-dlacpy":"1yp","@stdlib/lapack/base/dlassq":"1yq","@stdlib/lapack-base-dlassq":"1yr","@stdlib/lapack/base/dpttrf":"1ys","@stdlib/lapack-base-dpttrf":"1yt","@stdlib/lapack/base/slacpy":"1yu","@stdlib/lapack-base-slacpy":"1yv","@stdlib/lapack/base/spttrf":"1yw","@stdlib/lapack-base-spttrf":"1yx","@stdlib/array/base/remove-at":"1yy","@stdlib/array-base-remove-at":"1yz","@stdlib/array/base/without":"1z0","@stdlib/array-base-without":"1z1","@stdlib/blas/base/dgemm":"1z2","@stdlib/blas-base-dgemm":"1z3","@stdlib/blas/base/dtrsv":"1z4","@stdlib/blas-base-dtrsv":"1z5","@stdlib/blas/base/sgemm":"1z6","@stdlib/blas-base-sgemm":"1z7","@stdlib/blas/base/sspr":"1z8","@stdlib/blas-base-sspr":"1z9","@stdlib/blas/base/strsv":"1zA","@stdlib/blas-base-strsv":"1zB","@stdlib/constants/float32/max-base2-exponent-subnormal":"1zC","@stdlib/constants-float32-max-base2-exponent-subnormal":"1zD","@stdlib/constants/float32/max-base2-exponent":"1zE","@stdlib/constants-float32-max-base2-exponent":"1zF","@stdlib/constants/float32/min-base2-exponent-subnormal":"1zG","@stdlib/constants-float32-min-base2-exponent-subnormal":"1zH","@stdlib/iter/cunone-by":"1zI","@stdlib/iter-cunone-by":"1zJ","@stdlib/lapack/base/dge-trans":"1zK","@stdlib/lapack-base-dge-trans":"1zL","@stdlib/lapack/base/sge-trans":"1zM","@stdlib/lapack-base-sge-trans":"1zN","@stdlib/lapack/base/slaswp":"1zO","@stdlib/lapack-base-slaswp":"1zP","@stdlib/math/base/assert/is-integerf":"1zQ","@stdlib/math-base-assert-is-integerf":"1zR","@stdlib/math/base/special/roundf":"1zS","@stdlib/math-base-special-roundf":"1zT","@stdlib/ndarray/base/map":"1zU","@stdlib/ndarray-base-map":"1zV","@stdlib/ndarray/base/ndarraylike2ndarray":"1zW","@stdlib/ndarray-base-ndarraylike2ndarray":"1zX","@stdlib/ndarray/iter/interleave-subarrays":"1zY","@stdlib/ndarray-iter-interleave-subarrays":"1zZ","@stdlib/ndarray/iter/select-dimension":"1za","@stdlib/ndarray-iter-select-dimension":"1zb","@stdlib/ndarray/iter/stacks":"1zc","@stdlib/ndarray-iter-stacks":"1zd","@stdlib/ndarray/iter/subarrays":"1ze","@stdlib/ndarray-iter-subarrays":"1zf","@stdlib/ndarray/ndarraylike2ndarray":"1zg","@stdlib/ndarray-ndarraylike2ndarray":"1zh","@stdlib/array/base/assert/has-equal-values-indexed":"1zi","@stdlib/array-base-assert-has-equal-values-indexed":"1zj","@stdlib/array/base/assert/has-equal-values":"1zk","@stdlib/array-base-assert-has-equal-values":"1zl","@stdlib/assert/has-atob-support":"1zm","@stdlib/assert-has-atob-support":"1zn","@stdlib/assert/has-btoa-support":"1zo","@stdlib/assert-has-btoa-support":"1zp","@stdlib/assert/is-equal-array":"1zq","@stdlib/assert-is-equal-array":"1zr","@stdlib/assert/is-same-accessor-array":"1zs","@stdlib/assert-is-same-accessor-array":"1zt","@stdlib/assert/is-same-array-like-object":"1zu","@stdlib/assert-is-same-array-like-object":"1zv","@stdlib/assert/is-same-array-like":"1zw","@stdlib/assert-is-same-array-like":"1zx","@stdlib/assert/is-wasm-memory":"1zy","@stdlib/assert-is-wasm-memory":"1zz","@stdlib/blas/base/daxpy-wasm":"200","@stdlib/blas-base-daxpy-wasm":"201","@stdlib/blas/base/dspr":"202","@stdlib/blas-base-dspr":"203","@stdlib/blas/ext/base/cfill":"204","@stdlib/blas-ext-base-cfill":"205","@stdlib/constants/float32/max-safe-nth-factorial":"206","@stdlib/constants-float32-max-safe-nth-factorial":"207","@stdlib/constants/float32/max-safe-nth-fibonacci":"208","@stdlib/constants-float32-max-safe-nth-fibonacci":"209","@stdlib/constants/float64/num-high-word-significand-bits":"20A","@stdlib/constants-float64-num-high-word-significand-bits":"20B","@stdlib/lapack/base/dlamch":"20C","@stdlib/lapack-base-dlamch":"20D","@stdlib/math/base/assert/is-nonnegative-integerf":"20E","@stdlib/math-base-assert-is-nonnegative-integerf":"20F","@stdlib/math/base/special/acotdf":"20G","@stdlib/math-base-special-acotdf":"20H","@stdlib/math/base/special/acovercosf":"20I","@stdlib/math-base-special-acovercosf":"20J","@stdlib/math/base/special/acoversinf":"20K","@stdlib/math-base-special-acoversinf":"20L","@stdlib/math/base/special/atandf":"20M","@stdlib/math-base-special-atandf":"20N","@stdlib/math/base/special/avercosf":"20O","@stdlib/math-base-special-avercosf":"20P","@stdlib/math/base/special/aversinf":"20Q","@stdlib/math-base-special-aversinf":"20R","@stdlib/math/base/special/ldexpf":"20S","@stdlib/math-base-special-ldexpf":"20T","@stdlib/math/base/special/logf":"20U","@stdlib/math-base-special-logf":"20V","@stdlib/math/base/special/maxabsf":"20W","@stdlib/math-base-special-maxabsf":"20X","@stdlib/math/base/special/maxf":"20Y","@stdlib/math-base-special-maxf":"20Z","@stdlib/math/base/special/minabsf":"20a","@stdlib/math-base-special-minabsf":"20b","@stdlib/math/base/special/minf":"20c","@stdlib/math-base-special-minf":"20d","@stdlib/math/base/special/xlogyf":"20e","@stdlib/math-base-special-xlogyf":"20f","@stdlib/napi/argv-strided-complex128array2d":"20g","@stdlib/napi-argv-strided-complex128array2d":"20h","@stdlib/napi/argv-strided-complex64array2d":"20i","@stdlib/napi-argv-strided-complex64array2d":"20j","@stdlib/napi/argv-strided-float32array2d":"20k","@stdlib/napi-argv-strided-float32array2d":"20l","@stdlib/napi/argv-strided-float64array2d":"20m","@stdlib/napi-argv-strided-float64array2d":"20n","@stdlib/napi/argv-strided-int16array2d":"20o","@stdlib/napi-argv-strided-int16array2d":"20p","@stdlib/napi/argv-strided-int32array2d":"20q","@stdlib/napi-argv-strided-int32array2d":"20r","@stdlib/napi/argv-strided-int8array2d":"20s","@stdlib/napi-argv-strided-int8array2d":"20t","@stdlib/napi/argv-strided-uint16array2d":"20u","@stdlib/napi-argv-strided-uint16array2d":"20v","@stdlib/napi/argv-strided-uint32array2d":"20w","@stdlib/napi-argv-strided-uint32array2d":"20x","@stdlib/napi/argv-strided-uint8array2d":"20y","@stdlib/napi-argv-strided-uint8array2d":"20z","@stdlib/ndarray/base/assert/has-equal-shape":"210","@stdlib/ndarray-base-assert-has-equal-shape":"211","@stdlib/ndarray/base/fill":"212","@stdlib/ndarray-base-fill":"213","@stdlib/ndarray/base/to-reversed":"214","@stdlib/ndarray-base-to-reversed":"215","@stdlib/strided/base/read-dataview":"216","@stdlib/strided-base-read-dataview":"217","@stdlib/strided/base/strided2object":"218","@stdlib/strided-base-strided2object":"219","@stdlib/strided/base/write-dataview":"21A","@stdlib/strided-base-write-dataview":"21B","@stdlib/string/base/atob":"21C","@stdlib/string-base-atob":"21D","@stdlib/wasm/base/array2dtype":"21E","@stdlib/wasm-base-array2dtype":"21F","@stdlib/wasm/base/arrays2ptrs":"21G","@stdlib/wasm-base-arrays2ptrs":"21H","@stdlib/wasm/base/dtype2wasm":"21I","@stdlib/wasm-base-dtype2wasm":"21J","@stdlib/wasm/base":"21K","@stdlib/wasm-base":"21L","@stdlib/wasm/base/strided2object":"21M","@stdlib/wasm-base-strided2object":"21N","@stdlib/wasm/memory":"21O","@stdlib/wasm-memory":"21P","@stdlib/wasm/module-wrapper":"21Q","@stdlib/wasm-module-wrapper":"21R","@stdlib/wasm":"21T","@stdlib/array/base/cunone-by-right":"21U","@stdlib/array-base-cunone-by-right":"21V","@stdlib/array/base/cunone-by":"21W","@stdlib/array-base-cunone-by":"21X","@stdlib/array/base/cusome-by-right":"21Y","@stdlib/array-base-cusome-by-right":"21Z","@stdlib/array/fixed-endian-float64":"21a","@stdlib/array-fixed-endian-float64":"21b","@stdlib/assert/is-ndarray-like-with-data-type":"21c","@stdlib/assert-is-ndarray-like-with-data-type":"21d","@stdlib/blas/ext/base/zfill":"21e","@stdlib/blas-ext-base-zfill":"21f","@stdlib/blas/tools":"21g","@stdlib/blas-tools":"21h","@stdlib/blas/tools/swap-factory":"21i","@stdlib/blas-tools-swap-factory":"21j","@stdlib/constants/float32/max-safe-fibonacci":"21k","@stdlib/constants-float32-max-safe-fibonacci":"21l","@stdlib/string/base/base64-to-uint8array":"21m","@stdlib/string-base-base64-to-uint8array":"21n","@stdlib/array/base/assert/is-byte-order":"21o","@stdlib/array-base-assert-is-byte-order":"21p","@stdlib/array/base/cuany-by-right":"21q","@stdlib/array-base-cuany-by-right":"21r","@stdlib/array/base/cuany-by":"21s","@stdlib/array-base-cuany-by":"21t","@stdlib/array/base/cuevery-by":"21u","@stdlib/array-base-cuevery-by":"21v","@stdlib/array/base/cusome-by":"21w","@stdlib/array-base-cusome-by":"21x","@stdlib/array/base/cusome":"21y","@stdlib/array-base-cusome":"21z","@stdlib/array/base/nulls":"220","@stdlib/array-base-nulls":"221","@stdlib/array/byte-orders":"222","@stdlib/array-byte-orders":"223","@stdlib/array/fixed-endian-factory":"224","@stdlib/array-fixed-endian-factory":"225","@stdlib/array/fixed-endian-float32":"226","@stdlib/array-fixed-endian-float32":"227","@stdlib/array/little-endian-factory":"228","@stdlib/array-little-endian-factory":"229","@stdlib/array/little-endian-float32":"22A","@stdlib/array-little-endian-float32":"22B","@stdlib/array/little-endian-float64":"22C","@stdlib/array-little-endian-float64":"22D","@stdlib/array/base/cuevery-by-right":"22E","@stdlib/array-base-cuevery-by-right":"22F","@stdlib/array/base/mskbinary3d":"22G","@stdlib/array-base-mskbinary3d":"22H","@stdlib/assert/is-same-typed-array-like":"22I","@stdlib/assert-is-same-typed-array-like":"22J","@stdlib/blas/base/ccopy-wasm":"22K","@stdlib/blas-base-ccopy-wasm":"22L","@stdlib/blas/base/cscal-wasm":"22M","@stdlib/blas-base-cscal-wasm":"22N","@stdlib/blas/base/csrot-wasm":"22O","@stdlib/blas-base-csrot-wasm":"22P","@stdlib/blas/base/cswap-wasm":"22Q","@stdlib/blas-base-cswap-wasm":"22R","@stdlib/blas/base/dasum-wasm":"22S","@stdlib/blas-base-dasum-wasm":"22T","@stdlib/blas/base/dcopy-wasm":"22U","@stdlib/blas-base-dcopy-wasm":"22V","@stdlib/blas/base/ddot-wasm":"22W","@stdlib/blas-base-ddot-wasm":"22X","@stdlib/blas/base/dnrm2-wasm":"22Y","@stdlib/blas-base-dnrm2-wasm":"22Z","@stdlib/blas/base/drot-wasm":"22a","@stdlib/blas-base-drot-wasm":"22b","@stdlib/blas/base/drotm-wasm":"22c","@stdlib/blas-base-drotm-wasm":"22d","@stdlib/blas/base/dscal-wasm":"22e","@stdlib/blas-base-dscal-wasm":"22f","@stdlib/blas/base/dswap-wasm":"22g","@stdlib/blas-base-dswap-wasm":"22h","@stdlib/blas/base/idamax-wasm":"22i","@stdlib/blas-base-idamax-wasm":"22j","@stdlib/blas/base/sasum-wasm":"22k","@stdlib/blas-base-sasum-wasm":"22l","@stdlib/blas/base/saxpy-wasm":"22m","@stdlib/blas-base-saxpy-wasm":"22n","@stdlib/blas/base/scopy-wasm":"22o","@stdlib/blas-base-scopy-wasm":"22p","@stdlib/blas/base/sdot-wasm":"22q","@stdlib/blas-base-sdot-wasm":"22r","@stdlib/blas/base/snrm2-wasm":"22s","@stdlib/blas-base-snrm2-wasm":"22t","@stdlib/blas/base/srot-wasm":"22u","@stdlib/blas-base-srot-wasm":"22v","@stdlib/blas/ext/base/dapxsumkbn-wasm":"22w","@stdlib/blas-ext-base-dapxsumkbn-wasm":"22x","@stdlib/constants/float32/e":"22y","@stdlib/constants-float32-e":"22z","@stdlib/constants/float32/half-ln-two":"230","@stdlib/constants-float32-half-ln-two":"231","@stdlib/constants/float32/ln-two":"232","@stdlib/constants-float32-ln-two":"233","@stdlib/constants/float32/max-base10-exponent-subnormal":"234","@stdlib/constants-float32-max-base10-exponent-subnormal":"235","@stdlib/constants/float32/max-base10-exponent":"236","@stdlib/constants-float32-max-base10-exponent":"237","@stdlib/constants/float32/min-base10-exponent-subnormal":"238","@stdlib/constants-float32-min-base10-exponent-subnormal":"239","@stdlib/constants/float32/min-base10-exponent":"23A","@stdlib/constants-float32-min-base10-exponent":"23B","@stdlib/constants/float32/min-base2-exponent":"23C","@stdlib/constants-float32-min-base2-exponent":"23D","@stdlib/constants/float64/max-safe-nth-double-factorial":"23E","@stdlib/constants-float64-max-safe-nth-double-factorial":"23F","@stdlib/fs/read-ndjson":"23G","@stdlib/fs-read-ndjson":"23H","@stdlib/iter/cuany-by":"23I","@stdlib/iter-cuany-by":"23J","@stdlib/iter/cuevery-by":"23K","@stdlib/iter-cuevery-by":"23L","@stdlib/iter/cuevery":"23M","@stdlib/iter-cuevery":"23N","@stdlib/iter/cunone":"23O","@stdlib/iter-cunone":"23P","@stdlib/iter/cusome-by":"23Q","@stdlib/iter-cusome-by":"23R","@stdlib/math/base/assert/is-evenf":"23S","@stdlib/math-base-assert-is-evenf":"23T","@stdlib/math/base/special/acosdf":"23U","@stdlib/math-base-special-acosdf":"23V","@stdlib/math/base/special/ahavercosf":"23W","@stdlib/math-base-special-ahavercosf":"23X","@stdlib/math/base/special/ahaversinf":"23Y","@stdlib/math-base-special-ahaversinf":"23Z","@stdlib/math/base/special/cfloorf":"23a","@stdlib/math-base-special-cfloorf":"23b","@stdlib/math/base/special/croundf":"23c","@stdlib/math-base-special-croundf":"23d","@stdlib/math/base/special/fmodf":"23e","@stdlib/math-base-special-fmodf":"23f","@stdlib/math/base/special/gcdf":"23g","@stdlib/math-base-special-gcdf":"23h","@stdlib/math/base/special/nanmaxf":"23i","@stdlib/math-base-special-nanmaxf":"23j","@stdlib/math/base/special/nanminf":"23k","@stdlib/math-base-special-nanminf":"23l","@stdlib/math/base/special/sec":"23m","@stdlib/math-base-special-sec":"23n","@stdlib/array/base/broadcasted-quaternary3d":"23o","@stdlib/array-base-broadcasted-quaternary3d":"23p","@stdlib/array/base/broadcasted-quaternary4d":"23q","@stdlib/array-base-broadcasted-quaternary4d":"23r","@stdlib/array/base/broadcasted-quaternary5d":"23s","@stdlib/array-base-broadcasted-quaternary5d":"23t","@stdlib/array/base/broadcasted-quinary4d":"23u","@stdlib/array-base-broadcasted-quinary4d":"23v","@stdlib/array/base/broadcasted-ternary3d":"23w","@stdlib/array-base-broadcasted-ternary3d":"23x","@stdlib/array/base/broadcasted-ternary4d":"23y","@stdlib/array-base-broadcasted-ternary4d":"23z","@stdlib/array/base/broadcasted-ternary5d":"240","@stdlib/array-base-broadcasted-ternary5d":"241","@stdlib/array/base/mskbinary4d":"242","@stdlib/array-base-mskbinary4d":"243","@stdlib/array/base/mskbinary5d":"244","@stdlib/array-base-mskbinary5d":"245","@stdlib/array/base/mskunary4d":"246","@stdlib/array-base-mskunary4d":"247","@stdlib/array/base/mskunary5d":"248","@stdlib/array-base-mskunary5d":"249","@stdlib/array/base/unary3d-by":"24A","@stdlib/array-base-unary3d-by":"24B","@stdlib/array/base/unary4d-by":"24C","@stdlib/array-base-unary4d-by":"24D","@stdlib/array/base/unary5d-by":"24E","@stdlib/array-base-unary5d-by":"24F","@stdlib/constants/float32/ln-half":"24G","@stdlib/constants-float32-ln-half":"24H","@stdlib/constants/float32/ln-pi":"24I","@stdlib/constants-float32-ln-pi":"24J","@stdlib/constants/float32/ln-ten":"24K","@stdlib/constants-float32-ln-ten":"24L","@stdlib/constants/float32/max-safe-nth-lucas":"24M","@stdlib/constants-float32-max-safe-nth-lucas":"24N","@stdlib/constants/float32/sqrt-half-pi":"24O","@stdlib/constants-float32-sqrt-half-pi":"24P","@stdlib/constants/float32/sqrt-half":"24Q","@stdlib/constants-float32-sqrt-half":"24R","@stdlib/constants/float32/sqrt-phi":"24S","@stdlib/constants-float32-sqrt-phi":"24T","@stdlib/constants/float32/sqrt-pi":"24U","@stdlib/constants-float32-sqrt-pi":"24V","@stdlib/constants/float32/sqrt-three":"24W","@stdlib/constants-float32-sqrt-three":"24X","@stdlib/constants/float32/sqrt-two-pi":"24Y","@stdlib/constants-float32-sqrt-two-pi":"24Z","@stdlib/constants/float32/sqrt-two":"24a","@stdlib/constants-float32-sqrt-two":"24b","@stdlib/constants/float64/max-safe-nth-tribonacci":"24c","@stdlib/constants-float64-max-safe-nth-tribonacci":"24d","@stdlib/math/base/assert/is-oddf":"24e","@stdlib/math-base-assert-is-oddf":"24f","@stdlib/math/base/special/lcmf":"24g","@stdlib/math-base-special-lcmf":"24h","@stdlib/math/base/special/negalucasf":"24i","@stdlib/math-base-special-negalucasf":"24j","@stdlib/math/base/special/nonfibonaccif":"24k","@stdlib/math-base-special-nonfibonaccif":"24l","@stdlib/math/base/special/sqrtpif":"24m","@stdlib/math-base-special-sqrtpif":"24n","@stdlib/ndarray/base/from-scalar-like":"24o","@stdlib/ndarray-base-from-scalar-like":"24p","@stdlib/ndarray/base/min-signed-integer-dtype":"24q","@stdlib/ndarray-base-min-signed-integer-dtype":"24r","@stdlib/ndarray/base/min-unsigned-integer-dtype":"24s","@stdlib/ndarray-base-min-unsigned-integer-dtype":"24t","@stdlib/ndarray/filter-map":"24u","@stdlib/ndarray-filter-map":"24v","@stdlib/ndarray/filter":"24w","@stdlib/ndarray-filter":"24x","@stdlib/ndarray/for-each":"24y","@stdlib/ndarray-for-each":"24z","@stdlib/ndarray/index":"250","@stdlib/ndarray-index":"251","@stdlib/ndarray/map":"252","@stdlib/ndarray-map":"253","@stdlib/ndarray/reject":"254","@stdlib/ndarray-reject":"255","@stdlib/ndarray/to-fancy":"256","@stdlib/ndarray-to-fancy":"257","@stdlib/ndarray/to-json":"258","@stdlib/ndarray-to-json":"259","@stdlib/stats/base/dists/planck/cdf":"25A","@stdlib/stats-base-dists-planck-cdf":"25B","@stdlib/stats/base/dists/planck/entropy":"25C","@stdlib/stats-base-dists-planck-entropy":"25D","@stdlib/stats/base/dists/planck/kurtosis":"25E","@stdlib/stats-base-dists-planck-kurtosis":"25F","@stdlib/stats/base/dists/planck/logcdf":"25G","@stdlib/stats-base-dists-planck-logcdf":"25H","@stdlib/stats/base/dists/planck/logpmf":"25I","@stdlib/stats-base-dists-planck-logpmf":"25J","@stdlib/stats/base/dists/planck/mean":"25K","@stdlib/stats-base-dists-planck-mean":"25L","@stdlib/stats/base/dists/planck/median":"25M","@stdlib/stats-base-dists-planck-median":"25N","@stdlib/stats/base/dists/planck/mode":"25O","@stdlib/stats-base-dists-planck-mode":"25P","@stdlib/stats/base/dists/planck/pmf":"25Q","@stdlib/stats-base-dists-planck-pmf":"25R","@stdlib/stats/base/dists/planck/quantile":"25S","@stdlib/stats-base-dists-planck-quantile":"25T","@stdlib/stats/base/dists/planck/skewness":"25U","@stdlib/stats-base-dists-planck-skewness":"25V","@stdlib/stats/base/dists/planck/stdev":"25W","@stdlib/stats-base-dists-planck-stdev":"25X","@stdlib/stats/base/dists/planck/variance":"25Y","@stdlib/stats-base-dists-planck-variance":"25Z","@stdlib/array/base/assert/is-sorted-ascending":"25a","@stdlib/array-base-assert-is-sorted-ascending":"25b","@stdlib/array/base/fill":"25c","@stdlib/array-base-fill":"25d","@stdlib/array/base/indices-complement":"25e","@stdlib/array-base-indices-complement":"25f","@stdlib/array/base/mskfilter2":"25g","@stdlib/array-base-mskfilter2":"25h","@stdlib/array/base/mskfiltern":"25i","@stdlib/array-base-mskfiltern":"25j","@stdlib/array/base/scatter-filled":"25k","@stdlib/array-base-scatter-filled":"25l","@stdlib/array/base/scattered":"25m","@stdlib/array-base-scattered":"25n","@stdlib/array/base/take-indexed2":"25o","@stdlib/array-base-take-indexed2":"25p","@stdlib/math/base/assert/is-probabilityf":"25q","@stdlib/math-base-assert-is-probabilityf":"25r","@stdlib/math/base/special/dirac-deltaf":"25s","@stdlib/math-base-special-dirac-deltaf":"25t","@stdlib/ndarray/base/assert/is-column-major-string":"25u","@stdlib/ndarray-base-assert-is-column-major-string":"25v","@stdlib/ndarray/base/assert/is-row-major-string":"25w","@stdlib/ndarray-base-assert-is-row-major-string":"25x","@stdlib/ndarray/base/normalize-indices":"25y","@stdlib/ndarray-base-normalize-indices":"25z","@stdlib/ndarray/base/spread-dimensions":"260","@stdlib/ndarray-base-spread-dimensions":"261","@stdlib/ndarray/base/to-normalized-indices":"262","@stdlib/ndarray-base-to-normalized-indices":"263","@stdlib/ndarray/base/to-unique-normalized-indices":"264","@stdlib/ndarray-base-to-unique-normalized-indices":"265","@stdlib/blas/base/zdscal":"266","@stdlib/blas-base-zdscal":"267","@stdlib/lapack/base/zlacgv":"268","@stdlib/lapack-base-zlacgv":"269","@stdlib/lapack/base/zlacpy":"26A","@stdlib/lapack-base-zlacpy":"26B","@stdlib/lapack/base/zrot":"26C","@stdlib/lapack-base-zrot":"26D","@stdlib/math/base/special/heavisidef":"26E","@stdlib/math-base-special-heavisidef":"26F","@stdlib/ndarray/base/unary-accumulate":"26G","@stdlib/ndarray-base-unary-accumulate":"26H","@stdlib/stats/strided/dmax":"26I","@stdlib/stats-strided-dmax":"26J","@stdlib/array/base/for-each":"26K","@stdlib/array-base-for-each":"26L","@stdlib/blas/base/wasm/ccopy":"26M","@stdlib/blas-base-wasm-ccopy":"26N","@stdlib/blas/base/wasm/cscal":"26O","@stdlib/blas-base-wasm-cscal":"26P","@stdlib/blas/base/wasm/csrot":"26Q","@stdlib/blas-base-wasm-csrot":"26R","@stdlib/blas/base/wasm/cswap":"26S","@stdlib/blas-base-wasm-cswap":"26T","@stdlib/blas/base/wasm/dasum":"26U","@stdlib/blas-base-wasm-dasum":"26V","@stdlib/blas/base/wasm/daxpy":"26W","@stdlib/blas-base-wasm-daxpy":"26X","@stdlib/blas/base/wasm/dcopy":"26Y","@stdlib/blas-base-wasm-dcopy":"26Z","@stdlib/blas/base/wasm/ddot":"26a","@stdlib/blas-base-wasm-ddot":"26b","@stdlib/blas/base/wasm/dnrm2":"26c","@stdlib/blas-base-wasm-dnrm2":"26d","@stdlib/blas/base/wasm/drot":"26e","@stdlib/blas-base-wasm-drot":"26f","@stdlib/blas/base/wasm/drotm":"26g","@stdlib/blas-base-wasm-drotm":"26h","@stdlib/blas/base/wasm/dscal":"26i","@stdlib/blas-base-wasm-dscal":"26j","@stdlib/blas/base/wasm/dswap":"26k","@stdlib/blas-base-wasm-dswap":"26l","@stdlib/blas/base/wasm/idamax":"26m","@stdlib/blas-base-wasm-idamax":"26n","@stdlib/blas/base/wasm/isamax":"26o","@stdlib/blas-base-wasm-isamax":"26p","@stdlib/blas/base/wasm":"26q","@stdlib/blas-base-wasm":"26r","@stdlib/blas/base/wasm/sasum":"26s","@stdlib/blas-base-wasm-sasum":"26t","@stdlib/blas/base/wasm/saxpy":"26u","@stdlib/blas-base-wasm-saxpy":"26v","@stdlib/blas/base/wasm/scopy":"26w","@stdlib/blas-base-wasm-scopy":"26x","@stdlib/blas/base/wasm/sdot":"26y","@stdlib/blas-base-wasm-sdot":"26z","@stdlib/blas/base/wasm/snrm2":"270","@stdlib/blas-base-wasm-snrm2":"271","@stdlib/blas/base/wasm/srot":"272","@stdlib/blas-base-wasm-srot":"273","@stdlib/blas/base/wasm/sscal":"274","@stdlib/blas-base-wasm-sscal":"275","@stdlib/blas/base/wasm/zcopy":"276","@stdlib/blas-base-wasm-zcopy":"277","@stdlib/blas/base/wasm/zdrot":"278","@stdlib/blas-base-wasm-zdrot":"279","@stdlib/blas/base/wasm/zswap":"27A","@stdlib/blas-base-wasm-zswap":"27B","@stdlib/blas/ext/base/wasm/dapxsumkbn":"27C","@stdlib/blas-ext-base-wasm-dapxsumkbn":"27D","@stdlib/blas/ext/base/wasm":"27E","@stdlib/blas-ext-base-wasm":"27F","@stdlib/complex/float64/base/mul-add":"27G","@stdlib/complex-float64-base-mul-add":"27H","@stdlib/complex/float64/base/scale":"27I","@stdlib/complex-float64-base-scale":"27J","@stdlib/dstructs/circular-buffer":"27K","@stdlib/dstructs-circular-buffer":"27L","@stdlib/dstructs/compact-adjacency-matrix":"27M","@stdlib/dstructs-compact-adjacency-matrix":"27N","@stdlib/dstructs/doubly-linked-list":"27O","@stdlib/dstructs-doubly-linked-list":"27P","@stdlib/dstructs/fifo":"27Q","@stdlib/dstructs-fifo":"27R","@stdlib/dstructs/linked-list":"27S","@stdlib/dstructs-linked-list":"27T","@stdlib/dstructs/named-typed-tuple":"27U","@stdlib/dstructs-named-typed-tuple":"27V","@stdlib/dstructs":"27X","@stdlib/dstructs/stack":"27Y","@stdlib/dstructs-stack":"27Z","@stdlib/function/thunk":"27a","@stdlib/function-thunk":"27b","@stdlib/lapack/base/clacgv":"27c","@stdlib/lapack-base-clacgv":"27d","@stdlib/lapack/base/clacpy":"27e","@stdlib/lapack-base-clacpy":"27f","@stdlib/lapack/base/claset":"27g","@stdlib/lapack-base-claset":"27h","@stdlib/lapack/base/crot":"27i","@stdlib/lapack-base-crot":"27j","@stdlib/lapack/base/zlaset":"27k","@stdlib/lapack-base-zlaset":"27l","@stdlib/math/array":"27m","@stdlib/math-array":"27n","@stdlib/math/array/special/abs":"27o","@stdlib/math-array-special-abs":"27p","@stdlib/math/array/special":"27q","@stdlib/math-array-special":"27r","@stdlib/math/array/tools":"27s","@stdlib/math-array-tools":"27t","@stdlib/math/array/tools/unary-factory":"27u","@stdlib/math-array-tools-unary-factory":"27v","@stdlib/math/array/tools/unary":"27w","@stdlib/math-array-tools-unary":"27x","@stdlib/math/base/special/hyp2f1":"27y","@stdlib/math-base-special-hyp2f1":"27z","@stdlib/napi/argv-bool":"280","@stdlib/napi-argv-bool":"281","@stdlib/ndarray/base/assert/is-output-data-type-policy":"282","@stdlib/ndarray-base-assert-is-output-data-type-policy":"283","@stdlib/number/float32/base/add":"284","@stdlib/number-float32-base-add":"285","@stdlib/number/float32/base/div":"286","@stdlib/number-float32-base-div":"287","@stdlib/number/float32/base/mul":"288","@stdlib/number-float32-base-mul":"289","@stdlib/number/float32/base/sub":"28A","@stdlib/number-float32-base-sub":"28B","@stdlib/number/float64/base/add":"28C","@stdlib/number-float64-base-add":"28D","@stdlib/number/float64/base/add3":"28E","@stdlib/number-float64-base-add3":"28F","@stdlib/number/float64/base/add4":"28G","@stdlib/number-float64-base-add4":"28H","@stdlib/number/float64/base/add5":"28I","@stdlib/number-float64-base-add5":"28J","@stdlib/number/float64/base/div":"28K","@stdlib/number-float64-base-div":"28L","@stdlib/number/float64/base/mul":"28M","@stdlib/number-float64-base-mul":"28N","@stdlib/number/float64/base/sub":"28O","@stdlib/number-float64-base-sub":"28P","@stdlib/number/uint32/base/mul":"28Q","@stdlib/number-uint32-base-mul":"28R","@stdlib/stats/base/dists/bradford/cdf":"28S","@stdlib/stats-base-dists-bradford-cdf":"28T","@stdlib/stats/base/dists/bradford/entropy":"28U","@stdlib/stats-base-dists-bradford-entropy":"28V","@stdlib/stats/base/dists/bradford/mean":"28W","@stdlib/stats-base-dists-bradford-mean":"28X","@stdlib/stats/base/dists/bradford/median":"28Y","@stdlib/stats-base-dists-bradford-median":"28Z","@stdlib/stats/base/dists/bradford/mode":"28a","@stdlib/stats-base-dists-bradford-mode":"28b","@stdlib/stats/base/dists/bradford/stdev":"28c","@stdlib/stats-base-dists-bradford-stdev":"28d","@stdlib/stats/base/dists/bradford/variance":"28e","@stdlib/stats-base-dists-bradford-variance":"28f","@stdlib/stats/base/dists/planck/mgf":"28g","@stdlib/stats-base-dists-planck-mgf":"28h","@stdlib/stats/strided/dcumax":"28i","@stdlib/stats-strided-dcumax":"28j","@stdlib/stats/strided/dcumaxabs":"28k","@stdlib/stats-strided-dcumaxabs":"28l","@stdlib/stats/strided/dcuminabs":"28m","@stdlib/stats-strided-dcuminabs":"28n","@stdlib/stats/strided/dmaxabs":"28o","@stdlib/stats-strided-dmaxabs":"28p","@stdlib/stats/strided/dmaxabssorted":"28q","@stdlib/stats-strided-dmaxabssorted":"28r","@stdlib/stats/strided/dmaxsorted":"28s","@stdlib/stats-strided-dmaxsorted":"28t","@stdlib/stats/strided/dmeankbn":"28u","@stdlib/stats-strided-dmeankbn":"28v","@stdlib/stats/strided/dmeankbn2":"28w","@stdlib/stats-strided-dmeankbn2":"28x","@stdlib/stats/strided/dmeanli":"28y","@stdlib/stats-strided-dmeanli":"28z","@stdlib/stats/strided/dmeanlipw":"290","@stdlib/stats-strided-dmeanlipw":"291","@stdlib/stats/strided/dmeanors":"292","@stdlib/stats-strided-dmeanors":"293","@stdlib/stats/strided/dmeanpw":"294","@stdlib/stats-strided-dmeanpw":"295","@stdlib/stats/strided/dmeanwd":"296","@stdlib/stats-strided-dmeanwd":"297","@stdlib/stats/strided/dmediansorted":"298","@stdlib/stats-strided-dmediansorted":"299","@stdlib/stats/strided/dmidrange":"29A","@stdlib/stats-strided-dmidrange":"29B","@stdlib/stats/strided/dmin":"29C","@stdlib/stats-strided-dmin":"29D","@stdlib/stats/strided/dminabs":"29E","@stdlib/stats-strided-dminabs":"29F","@stdlib/stats/strided/dminsorted":"29G","@stdlib/stats-strided-dminsorted":"29H","@stdlib/stats/strided/dnanmax":"29I","@stdlib/stats-strided-dnanmax":"29J","@stdlib/stats/strided/dnanmaxabs":"29K","@stdlib/stats-strided-dnanmaxabs":"29L","@stdlib/stats/strided/dnanmean":"29M","@stdlib/stats-strided-dnanmean":"29N","@stdlib/array/base/banded/filled2d-by":"29O","@stdlib/array-base-banded-filled2d-by":"29P","@stdlib/array/base/banded/to-compact":"29Q","@stdlib/array-base-banded-to-compact":"29R","@stdlib/array/base/fill-by":"29S","@stdlib/array-base-fill-by":"29T","@stdlib/array/base/map":"29U","@stdlib/array-base-map":"29V","@stdlib/array/base/symmetric-banded/filled2d-by":"29W","@stdlib/array-base-symmetric-banded-filled2d-by":"29X","@stdlib/array/base/symmetric-banded/to-compact":"29Y","@stdlib/array-base-symmetric-banded-to-compact":"29Z","@stdlib/array/base/symmetric/filled2d-by":"29a","@stdlib/array-base-symmetric-filled2d-by":"29b","@stdlib/blas/base/wasm/srotm":"29c","@stdlib/blas-base-wasm-srotm":"29d","@stdlib/blas/ext/base/wasm/dapxsum":"29e","@stdlib/blas-ext-base-wasm-dapxsum":"29f","@stdlib/blas/ext/base/wasm/dapxsumors":"29g","@stdlib/blas-ext-base-wasm-dapxsumors":"29h","@stdlib/blas/ext/base/wasm/dapxsumpw":"29i","@stdlib/blas-ext-base-wasm-dapxsumpw":"29j","@stdlib/blas/ext/base/wasm/dasumpw":"29k","@stdlib/blas-ext-base-wasm-dasumpw":"29l","@stdlib/blas/ext/base/wasm/dnansumpw":"29m","@stdlib/blas-ext-base-wasm-dnansumpw":"29n","@stdlib/complex/float32/base/identity":"29o","@stdlib/complex-float32-base-identity":"29p","@stdlib/complex/float32/base/neg":"29q","@stdlib/complex-float32-base-neg":"29r","@stdlib/complex/float32/base/sub":"29s","@stdlib/complex-float32-base-sub":"29t","@stdlib/complex/float64/base/div":"29u","@stdlib/complex-float64-base-div":"29v","@stdlib/complex/float64/base/identity":"29w","@stdlib/complex-float64-base-identity":"29x","@stdlib/complex/float64/base/neg":"29y","@stdlib/complex-float64-base-neg":"29z","@stdlib/complex/float64/base/sub":"2A0","@stdlib/complex-float64-base-sub":"2A1","@stdlib/console/log-each-map":"2A2","@stdlib/console-log-each-map":"2A3","@stdlib/constants/float32/apery":"2A4","@stdlib/constants-float32-apery":"2A5","@stdlib/constants/float32/gamma-lanczos-g":"2A6","@stdlib/constants-float32-gamma-lanczos-g":"2A7","@stdlib/constants/float32/ln-sqrt-two-pi":"2A8","@stdlib/constants-float32-ln-sqrt-two-pi":"2A9","@stdlib/constants/float32/ln-two-pi":"2AA","@stdlib/constants-float32-ln-two-pi":"2AB","@stdlib/constants/float32/log10-e":"2AC","@stdlib/constants-float32-log10-e":"2AD","@stdlib/constants/float32/log2-e":"2AE","@stdlib/constants-float32-log2-e":"2AF","@stdlib/constants/float32/max-safe-nth-double-factorial":"2AG","@stdlib/constants-float32-max-safe-nth-double-factorial":"2AH","@stdlib/constants/float32/max-safe-nth-tribonacci":"2AI","@stdlib/constants-float32-max-safe-nth-tribonacci":"2AJ","@stdlib/constants/float32/num-significand-bits":"2AK","@stdlib/constants-float32-num-significand-bits":"2AL","@stdlib/constants/float32/pi-squared":"2AM","@stdlib/constants-float32-pi-squared":"2AN","@stdlib/math/base/special/sincosd":"2AO","@stdlib/math-base-special-sincosd":"2AP","@stdlib/math/base/special/sind":"2AQ","@stdlib/math-base-special-sind":"2AR","@stdlib/ndarray/base/assert/is-scalar-mostly-safe-compatible":"2AS","@stdlib/ndarray-base-assert-is-scalar-mostly-safe-compatible":"2AT","@stdlib/ndarray/base/every":"2AU","@stdlib/ndarray-base-every":"2AV","@stdlib/ndarray/base/fill-by":"2AW","@stdlib/ndarray-base-fill-by":"2AX","@stdlib/ndarray/base/unary-reduce-subarray":"2AY","@stdlib/ndarray-base-unary-reduce-subarray":"2AZ","@stdlib/ndarray/fill-by":"2Aa","@stdlib/ndarray-fill-by":"2Ab","@stdlib/ndarray/fill":"2Ac","@stdlib/ndarray-fill":"2Ad","@stdlib/number/float32/base/identity":"2Ae","@stdlib/number-float32-base-identity":"2Af","@stdlib/number/float64/base/identity":"2Ag","@stdlib/number-float64-base-identity":"2Ah","@stdlib/number/int32/base/mul":"2Ai","@stdlib/number-int32-base-mul":"2Aj","@stdlib/number/int32/base/muldw":"2Ak","@stdlib/number-int32-base-muldw":"2Al","@stdlib/number/uint32/base/muldw":"2Am","@stdlib/number-uint32-base-muldw":"2An","@stdlib/stats/base/dists/bradford/pdf":"2Ao","@stdlib/stats-base-dists-bradford-pdf":"2Ap","@stdlib/stats/base/dists/bradford/quantile":"2Aq","@stdlib/stats-base-dists-bradford-quantile":"2Ar","@stdlib/stats/incr/nanmean":"2As","@stdlib/stats-incr-nanmean":"2At","@stdlib/stats/incr/nanmeanabs":"2Au","@stdlib/stats-incr-nanmeanabs":"2Av","@stdlib/stats/incr/nanskewness":"2Aw","@stdlib/stats-incr-nanskewness":"2Ax","@stdlib/stats/strided/dnanmeanors":"2Ay","@stdlib/stats-strided-dnanmeanors":"2Az","@stdlib/stats/strided/dnanmeanpn":"2B0","@stdlib/stats-strided-dnanmeanpn":"2B1","@stdlib/stats/strided/dnanmeanpw":"2B2","@stdlib/stats-strided-dnanmeanpw":"2B3","@stdlib/stats/strided/dnanmeanwd":"2B4","@stdlib/stats-strided-dnanmeanwd":"2B5","@stdlib/stats/strided/dnanmin":"2B6","@stdlib/stats-strided-dnanmin":"2B7","@stdlib/stats/strided/dnanminabs":"2B8","@stdlib/stats-strided-dnanminabs":"2B9","@stdlib/stats/strided/dnanrange":"2BA","@stdlib/stats-strided-dnanrange":"2BB","@stdlib/stats/strided/dnanstdevch":"2BC","@stdlib/stats-strided-dnanstdevch":"2BD","@stdlib/stats/strided/dnanstdevpn":"2BE","@stdlib/stats-strided-dnanstdevpn":"2BF","@stdlib/stats/strided/dnanstdevtk":"2BG","@stdlib/stats-strided-dnanstdevtk":"2BH","@stdlib/stats/strided/dnanstdevwd":"2BI","@stdlib/stats-strided-dnanstdevwd":"2BJ","@stdlib/stats/strided/dnanstdevyc":"2BK","@stdlib/stats-strided-dnanstdevyc":"2BL","@stdlib/stats/strided/dnanvariance":"2BM","@stdlib/stats-strided-dnanvariance":"2BN","@stdlib/stats/strided/dnanvariancech":"2BO","@stdlib/stats-strided-dnanvariancech":"2BP","@stdlib/stats/strided/dnanvariancepn":"2BQ","@stdlib/stats-strided-dnanvariancepn":"2BR","@stdlib/stats/strided/dnanvariancetk":"2BS","@stdlib/stats-strided-dnanvariancetk":"2BT","@stdlib/stats/strided/dnanvariancewd":"2BU","@stdlib/stats-strided-dnanvariancewd":"2BV","@stdlib/stats/strided/dnanvarianceyc":"2BW","@stdlib/stats-strided-dnanvarianceyc":"2BX","@stdlib/stats/strided/drange":"2BY","@stdlib/stats-strided-drange":"2BZ","@stdlib/stats/strided/dsemch":"2Ba","@stdlib/stats-strided-dsemch":"2Bb","@stdlib/stats/strided/dsemtk":"2Bc","@stdlib/stats-strided-dsemtk":"2Bd","@stdlib/stats/strided/dsemwd":"2Be","@stdlib/stats-strided-dsemwd":"2Bf","@stdlib/stats/strided/dsemyc":"2Bg","@stdlib/stats-strided-dsemyc":"2Bh","@stdlib/stats/strided/dsmean":"2Bi","@stdlib/stats-strided-dsmean":"2Bj","@stdlib/stats/strided/dsmeanpn":"2Bk","@stdlib/stats-strided-dsmeanpn":"2Bl","@stdlib/stats/strided/dsmeanpw":"2Bm","@stdlib/stats-strided-dsmeanpw":"2Bn","@stdlib/stats/strided/dsmeanwd":"2Bo","@stdlib/stats-strided-dsmeanwd":"2Bp","@stdlib/stats/strided/dsnanmean":"2Bq","@stdlib/stats-strided-dsnanmean":"2Br","@stdlib/stats/strided/dsnanmeanors":"2Bs","@stdlib/stats-strided-dsnanmeanors":"2Bt","@stdlib/stats/strided/dsnanmeanpn":"2Bu","@stdlib/stats-strided-dsnanmeanpn":"2Bv","@stdlib/stats/strided/dsnanmeanwd":"2Bw","@stdlib/stats-strided-dsnanmeanwd":"2Bx","@stdlib/stats/strided/dstdevch":"2By","@stdlib/stats-strided-dstdevch":"2Bz","@stdlib/stats/strided/dstdevpn":"2C0","@stdlib/stats-strided-dstdevpn":"2C1","@stdlib/stats/strided/dstdevtk":"2C2","@stdlib/stats-strided-dstdevtk":"2C3","@stdlib/stats/strided/dstdevwd":"2C4","@stdlib/stats-strided-dstdevwd":"2C5","@stdlib/stats/strided/dstdevyc":"2C6","@stdlib/stats-strided-dstdevyc":"2C7","@stdlib/stats/strided/dsvariance":"2C8","@stdlib/stats-strided-dsvariance":"2C9","@stdlib/stats/strided/dsvariancepn":"2CA","@stdlib/stats-strided-dsvariancepn":"2CB","@stdlib/stats/strided/dvariance":"2CC","@stdlib/stats-strided-dvariance":"2CD","@stdlib/stats/strided/dvariancech":"2CE","@stdlib/stats-strided-dvariancech":"2CF","@stdlib/stats/strided/dvariancepn":"2CG","@stdlib/stats-strided-dvariancepn":"2CH","@stdlib/stats/strided/dvariancetk":"2CI","@stdlib/stats-strided-dvariancetk":"2CJ","@stdlib/stats/strided/dvariancewd":"2CK","@stdlib/stats-strided-dvariancewd":"2CL","@stdlib/stats/strided/dvarianceyc":"2CM","@stdlib/stats-strided-dvarianceyc":"2CN","@stdlib/stats/strided/dvarmtk":"2CO","@stdlib/stats-strided-dvarmtk":"2CP","@stdlib/stats/strided/scumax":"2CQ","@stdlib/stats-strided-scumax":"2CR","@stdlib/stats/strided/scumaxabs":"2CS","@stdlib/stats-strided-scumaxabs":"2CT","@stdlib/stats/strided/scumin":"2CU","@stdlib/stats-strided-scumin":"2CV","@stdlib/stats/strided/scuminabs":"2CW","@stdlib/stats-strided-scuminabs":"2CX","@stdlib/stats/strided/sdsmean":"2CY","@stdlib/stats-strided-sdsmean":"2CZ","@stdlib/stats/strided/sdsmeanors":"2Ca","@stdlib/stats-strided-sdsmeanors":"2Cb","@stdlib/stats/strided/smax":"2Cc","@stdlib/stats-strided-smax":"2Cd","@stdlib/stats/strided/smaxabs":"2Ce","@stdlib/stats-strided-smaxabs":"2Cf","@stdlib/stats/strided/smaxabssorted":"2Cg","@stdlib/stats-strided-smaxabssorted":"2Ch","@stdlib/stats/strided/smaxsorted":"2Ci","@stdlib/stats-strided-smaxsorted":"2Cj","@stdlib/stats/strided/smeanli":"2Ck","@stdlib/stats-strided-smeanli":"2Cl","@stdlib/stats/strided/smeanpw":"2Cm","@stdlib/stats-strided-smeanpw":"2Cn","@stdlib/stats/strided/smeanwd":"2Co","@stdlib/stats-strided-smeanwd":"2Cp","@stdlib/stats/strided/smediansorted":"2Cq","@stdlib/stats-strided-smediansorted":"2Cr","@stdlib/stats/strided/smin":"2Cs","@stdlib/stats-strided-smin":"2Ct","@stdlib/stats/strided/sminabs":"2Cu","@stdlib/stats-strided-sminabs":"2Cv","@stdlib/stats/strided/sminsorted":"2Cw","@stdlib/stats-strided-sminsorted":"2Cx","@stdlib/stats/strided/smskmax":"2Cy","@stdlib/stats-strided-smskmax":"2Cz","@stdlib/stats/strided/smskmin":"2D0","@stdlib/stats-strided-smskmin":"2D1","@stdlib/stats/strided/smskrange":"2D2","@stdlib/stats-strided-smskrange":"2D3","@stdlib/stats/strided/snanmax":"2D4","@stdlib/stats-strided-snanmax":"2D5","@stdlib/stats/strided/snanmaxabs":"2D6","@stdlib/stats-strided-snanmaxabs":"2D7","@stdlib/stats/strided/snanmeanors":"2D8","@stdlib/stats-strided-snanmeanors":"2D9","@stdlib/stats/strided/snanmeanpn":"2DA","@stdlib/stats-strided-snanmeanpn":"2DB","@stdlib/stats/strided/snanmeanwd":"2DC","@stdlib/stats-strided-snanmeanwd":"2DD","@stdlib/stats/strided/snanmin":"2DE","@stdlib/stats-strided-snanmin":"2DF","@stdlib/stats/strided/snanminabs":"2DG","@stdlib/stats-strided-snanminabs":"2DH","@stdlib/stats/strided/snanrange":"2DI","@stdlib/stats-strided-snanrange":"2DJ","@stdlib/stats/strided/srange":"2DK","@stdlib/stats-strided-srange":"2DL","@stdlib/stats/strided/sstdevch":"2DM","@stdlib/stats-strided-sstdevch":"2DN","@stdlib/stats/strided/sstdevpn":"2DO","@stdlib/stats-strided-sstdevpn":"2DP","@stdlib/stats/strided/sstdevtk":"2DQ","@stdlib/stats-strided-sstdevtk":"2DR","@stdlib/string/base/slice-grapheme-clusters":"2DS","@stdlib/string-base-slice-grapheme-clusters":"2DT","@stdlib/string/base/slice":"2DU","@stdlib/string-base-slice":"2DV","@stdlib/string/num-code-points":"2DW","@stdlib/string-num-code-points":"2DX","@stdlib/array/base/index-of-same-value":"2DY","@stdlib/array-base-index-of-same-value":"2DZ","@stdlib/array/base/last-index-of-same-value":"2Da","@stdlib/array-base-last-index-of-same-value":"2Db","@stdlib/array/base/linspace2d":"2Dc","@stdlib/array-base-linspace2d":"2Dd","@stdlib/array/base/reshape":"2De","@stdlib/array-base-reshape":"2Df","@stdlib/constants/float32/catalan":"2Dg","@stdlib/constants-float32-catalan":"2Dh","@stdlib/constants/float32/eulergamma":"2Di","@stdlib/constants-float32-eulergamma":"2Dj","@stdlib/constants/float32/fourth-root-eps":"2Dk","@stdlib/constants-float32-fourth-root-eps":"2Dl","@stdlib/constants/float32/max-ln":"2Dm","@stdlib/constants-float32-max-ln":"2Dn","@stdlib/constants/float32/max-safe-lucas":"2Do","@stdlib/constants-float32-max-safe-lucas":"2Dp","@stdlib/constants/float32/min-ln":"2Dq","@stdlib/constants-float32-min-ln":"2Dr","@stdlib/math/base/special/atan2d":"2Ds","@stdlib/math-base-special-atan2d":"2Dt","@stdlib/math/base/special/csignumf":"2Du","@stdlib/math-base-special-csignumf":"2Dv","@stdlib/math/base/special/fibonaccif":"2Dw","@stdlib/math-base-special-fibonaccif":"2Dx","@stdlib/ndarray/base/includes":"2Dy","@stdlib/ndarray-base-includes":"2Dz","@stdlib/ndarray/every":"2E0","@stdlib/ndarray-every":"2E1","@stdlib/ndarray/includes":"2E2","@stdlib/ndarray-includes":"2E3","@stdlib/stats/incr/nanstdev":"2E4","@stdlib/stats-incr-nanstdev":"2E5","@stdlib/stats/strided/dcumin":"2E6","@stdlib/stats-strided-dcumin":"2E7","@stdlib/stats/strided/dmskmax":"2E8","@stdlib/stats-strided-dmskmax":"2E9","@stdlib/stats/strided/dmskmin":"2EA","@stdlib/stats-strided-dmskmin":"2EB","@stdlib/stats/strided/dmskrange":"2EC","@stdlib/stats-strided-dmskrange":"2ED","@stdlib/stats/strided/dsmeanors":"2EE","@stdlib/stats-strided-dsmeanors":"2EF","@stdlib/stats/strided/smidrange":"2EG","@stdlib/stats-strided-smidrange":"2EH","@stdlib/stats/strided/sstdevyc":"2EI","@stdlib/stats-strided-sstdevyc":"2EJ","@stdlib/stats/strided/svariancech":"2EK","@stdlib/stats-strided-svariancech":"2EL","@stdlib/stats/strided/svariancepn":"2EM","@stdlib/stats-strided-svariancepn":"2EN","@stdlib/stats/strided/svariancetk":"2EO","@stdlib/stats-strided-svariancetk":"2EP","@stdlib/stats/strided/svarianceyc":"2EQ","@stdlib/stats-strided-svarianceyc":"2ER","@stdlib/string/base/slice-code-points":"2ES","@stdlib/string-base-slice-code-points":"2ET","@stdlib/array/base/count-ifs":"2EU","@stdlib/array-base-count-ifs":"2EV","@stdlib/math/base/special/fibonacci-indexf":"2EW","@stdlib/math-base-special-fibonacci-indexf":"2EX","@stdlib/stats/array/max":"2EY","@stdlib/stats-array-max":"2EZ","@stdlib/stats/array/mskmax":"2Ea","@stdlib/stats-array-mskmax":"2Eb","@stdlib/stats/array/nanmax":"2Ec","@stdlib/stats-array-nanmax":"2Ed","@stdlib/stats/array/varianceyc":"2Ee","@stdlib/stats-array-varianceyc":"2Ef","@stdlib/array/base/banded":"2Eg","@stdlib/array-base-banded":"2Eh","@stdlib/array/base/symmetric-banded":"2Ei","@stdlib/array-base-symmetric-banded":"2Ej","@stdlib/array/base/symmetric":"2Ek","@stdlib/array-base-symmetric":"2El","@stdlib/blas/base/wasm/sswap":"2Em","@stdlib/blas-base-wasm-sswap":"2En","@stdlib/math/base/special/lucasf":"2Eo","@stdlib/math-base-special-lucasf":"2Ep","@stdlib/ndarray/base/every-by":"2Eq","@stdlib/ndarray-base-every-by":"2Er","@stdlib/ndarray/base/unary-reduce-strided1d":"2Es","@stdlib/ndarray-base-unary-reduce-strided1d":"2Et","@stdlib/object/every-in-by":"2Eu","@stdlib/object-every-in-by":"2Ev","@stdlib/stats/array/min":"2Ew","@stdlib/stats-array-min":"2Ex","@stdlib/stats/base/ndarray/dmax":"2Ey","@stdlib/stats-base-ndarray-dmax":"2Ez","@stdlib/stats/base/ndarray/max":"2F0","@stdlib/stats-base-ndarray-max":"2F1","@stdlib/stats/base/ndarray":"2F2","@stdlib/stats-base-ndarray":"2F3","@stdlib/stats/base/ndarray/smax":"2F4","@stdlib/stats-base-ndarray-smax":"2F5","@stdlib/stats/max":"2F6","@stdlib/stats-max":"2F7","@stdlib/stats/tools/reduce/unary-strided-dispatch-factory":"2F8","@stdlib/stats-tools-reduce-unary-strided-dispatch-factory":"2F9","@stdlib/stats/tools/reduce/unary-strided-dispatch":"2FA","@stdlib/stats-tools-reduce-unary-strided-dispatch":"2FB","@stdlib/blas/base/wasm/dsdot":"2FC","@stdlib/blas-base-wasm-dsdot":"2FD","@stdlib/blas/ext/base/ndarray/dcusum":"2FE","@stdlib/blas-ext-base-ndarray-dcusum":"2FF","@stdlib/blas/ext/base/ndarray/dsum":"2FG","@stdlib/blas-ext-base-ndarray-dsum":"2FH","@stdlib/blas/ext/base/ndarray/gcusum":"2FI","@stdlib/blas-ext-base-ndarray-gcusum":"2FJ","@stdlib/blas/ext/base/ndarray/gsum":"2FK","@stdlib/blas-ext-base-ndarray-gsum":"2FL","@stdlib/blas/ext/base/ndarray":"2FM","@stdlib/blas-ext-base-ndarray":"2FN","@stdlib/blas/ext/base/ndarray/scusum":"2FO","@stdlib/blas-ext-base-ndarray-scusum":"2FP","@stdlib/blas/ext/base/ndarray/ssum":"2FQ","@stdlib/blas-ext-base-ndarray-ssum":"2FR","@stdlib/blas/ext/cusum":"2FS","@stdlib/blas-ext-cusum":"2FT","@stdlib/blas/ext/sum":"2FU","@stdlib/blas-ext-sum":"2FV","@stdlib/constants/float32/max-nth-double-factorial":"2FW","@stdlib/constants-float32-max-nth-double-factorial":"2FX","@stdlib/constants/float32/max-nth-factorial":"2FY","@stdlib/constants-float32-max-nth-factorial":"2FZ","@stdlib/constants/float64/max-nth-double-factorial":"2Fa","@stdlib/constants-float64-max-nth-double-factorial":"2Fb","@stdlib/constants/float64/max-nth-factorial":"2Fc","@stdlib/constants-float64-max-nth-factorial":"2Fd","@stdlib/ndarray/base/assert/is-boolean-index-data-type":"2Fe","@stdlib/ndarray-base-assert-is-boolean-index-data-type":"2Ff","@stdlib/ndarray/base/assert/is-index-data-type":"2Fg","@stdlib/ndarray-base-assert-is-index-data-type":"2Fh","@stdlib/ndarray/base/assert/is-input-casting-policy":"2Fi","@stdlib/ndarray-base-assert-is-input-casting-policy":"2Fj","@stdlib/ndarray/base/assert/is-integer-index-data-type":"2Fk","@stdlib/ndarray-base-assert-is-integer-index-data-type":"2Fl","@stdlib/ndarray/base/assert/is-mask-index-data-type":"2Fm","@stdlib/ndarray-base-assert-is-mask-index-data-type":"2Fn","@stdlib/ndarray/base/unary-input-casting-dtype":"2Fo","@stdlib/ndarray-base-unary-input-casting-dtype":"2Fp","@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory":"2Fq","@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-factory":"2Fr","@stdlib/ndarray/base/unary-reduce-strided1d-dispatch":"2Fs","@stdlib/ndarray-base-unary-reduce-strided1d-dispatch":"2Ft","@stdlib/ndarray/base/unary-strided1d-dispatch-factory":"2Fu","@stdlib/ndarray-base-unary-strided1d-dispatch-factory":"2Fv","@stdlib/ndarray/base/unary-strided1d-dispatch":"2Fw","@stdlib/ndarray-base-unary-strided1d-dispatch":"2Fx","@stdlib/ndarray/base/unary-strided1d":"2Fy","@stdlib/ndarray-base-unary-strided1d":"2Fz","@stdlib/ndarray/input-casting-policies":"2G0","@stdlib/ndarray-input-casting-policies":"2G1","@stdlib/stats/base/ndarray/cumax":"2G2","@stdlib/stats-base-ndarray-cumax":"2G3","@stdlib/stats/base/ndarray/dcumax":"2G4","@stdlib/stats-base-ndarray-dcumax":"2G5","@stdlib/stats/base/ndarray/scumax":"2G6","@stdlib/stats-base-ndarray-scumax":"2G7","@stdlib/stats/cumax":"2G8","@stdlib/stats-cumax":"2G9","@stdlib/blas/base/wasm/sdsdot":"2GA","@stdlib/blas-base-wasm-sdsdot":"2GB","@stdlib/blas/ext/base/wasm/dnanasumors":"2GC","@stdlib/blas-ext-base-wasm-dnanasumors":"2GD","@stdlib/blas/ext/base/wasm/sapxsumkbn":"2GE","@stdlib/blas-ext-base-wasm-sapxsumkbn":"2GF","@stdlib/lapack/base/zlaswp":"2GG","@stdlib/lapack-base-zlaswp":"2GH","@stdlib/math/base/special/logitf":"2GI","@stdlib/math-base-special-logitf":"2GJ","@stdlib/random/tools":"2GK","@stdlib/random-tools":"2GL","@stdlib/random/tools/unary-factory":"2GM","@stdlib/random-tools-unary-factory":"2GN","@stdlib/random/tools/unary":"2GO","@stdlib/random-tools-unary":"2GP","@stdlib/stats/array/maxabs":"2GQ","@stdlib/stats-array-maxabs":"2GR","@stdlib/stats/array/maxsorted":"2GS","@stdlib/stats-array-maxsorted":"2GT","@stdlib/stats/incr/nanmaxabs":"2GU","@stdlib/stats-incr-nanmaxabs":"2GV","@stdlib/stats/incr/nanmstdev":"2GW","@stdlib/stats-incr-nanmstdev":"2GX","@stdlib/stats/strided/wasm/dmeanors":"2GY","@stdlib/stats-strided-wasm-dmeanors":"2GZ","@stdlib/array/base/assert/any-has-own-property":"2Ga","@stdlib/array-base-assert-any-has-own-property":"2Gb","@stdlib/array/base/assert/any-has-property":"2Gc","@stdlib/array-base-assert-any-has-property":"2Gd","@stdlib/array/base/assert/any-is-entry-in":"2Ge","@stdlib/array-base-assert-any-is-entry-in":"2Gf","@stdlib/array/base/assert/any-is-entry":"2Gg","@stdlib/array-base-assert-any-is-entry":"2Gh","@stdlib/ndarray/base/binary-output-dtype":"2Gi","@stdlib/ndarray-base-binary-output-dtype":"2Gj","@stdlib/ndarray/base/binary":"2Gk","@stdlib/ndarray-base-binary":"2Gl","@stdlib/ndarray/base/output-dtype":"2Gm","@stdlib/ndarray-base-output-dtype":"2Gn","@stdlib/ndarray/base/promote-dtypes":"2Go","@stdlib/ndarray-base-promote-dtypes":"2Gp","@stdlib/stats/array/minabs":"2Gq","@stdlib/stats-array-minabs":"2Gr","@stdlib/stats/array/minsorted":"2Gs","@stdlib/stats-array-minsorted":"2Gt","@stdlib/stats/array/mskmin":"2Gu","@stdlib/stats-array-mskmin":"2Gv","@stdlib/blas/ext/base/dnancusumkbn":"2Gw","@stdlib/blas-ext-base-dnancusumkbn":"2Gx","@stdlib/blas/ext/base/wasm/dapx":"2Gy","@stdlib/blas-ext-base-wasm-dapx":"2Gz","@stdlib/lapack/base/claswp":"2H0","@stdlib/lapack-base-claswp":"2H1","@stdlib/math/base/special/bernoullif":"2H2","@stdlib/math-base-special-bernoullif":"2H3","@stdlib/math/base/special/gammasgnf":"2H4","@stdlib/math-base-special-gammasgnf":"2H5","@stdlib/ndarray/base/loop-interchange-order":"2H6","@stdlib/ndarray-base-loop-interchange-order":"2H7","@stdlib/ndarray/vector/ctor":"2H8","@stdlib/ndarray-vector-ctor":"2H9","@stdlib/ndarray/vector/float32":"2HA","@stdlib/ndarray-vector-float32":"2HB","@stdlib/ndarray/vector/float64":"2HC","@stdlib/ndarray-vector-float64":"2HD","@stdlib/random/tools/binary-factory":"2HE","@stdlib/random-tools-binary-factory":"2HF","@stdlib/random/tools/binary":"2HG","@stdlib/random-tools-binary":"2HH","@stdlib/random/uniform":"2HI","@stdlib/random-uniform":"2HJ","@stdlib/stats/array/mean":"2HK","@stdlib/stats-array-mean":"2HL","@stdlib/stats/array/mskrange":"2HM","@stdlib/stats-array-mskrange":"2HN","@stdlib/stats/array/nanmin":"2HO","@stdlib/stats-array-nanmin":"2HP","@stdlib/array/base/any-has-own-property":"2HQ","@stdlib/array-base-any-has-own-property":"2HR","@stdlib/array/base/any-has-property":"2HS","@stdlib/array-base-any-has-property":"2HT","@stdlib/array/base/any-is-entry-in":"2HU","@stdlib/array-base-any-is-entry-in":"2HV","@stdlib/array/base/any-is-entry":"2HW","@stdlib/array-base-any-is-entry":"2HX","@stdlib/assert/is-equal-booleanarray":"2HY","@stdlib/assert-is-equal-booleanarray":"2HZ","@stdlib/assert/is-equal-date-object":"2Ha","@stdlib/assert-is-equal-date-object":"2Hb","@stdlib/assert/is-equal-int16array":"2Hc","@stdlib/assert-is-equal-int16array":"2Hd","@stdlib/assert/is-equal-int32array":"2He","@stdlib/assert-is-equal-int32array":"2Hf","@stdlib/assert/is-equal-int8array":"2Hg","@stdlib/assert-is-equal-int8array":"2Hh","@stdlib/assert/is-equal-uint16array":"2Hi","@stdlib/assert-is-equal-uint16array":"2Hj","@stdlib/assert/is-equal-uint32array":"2Hk","@stdlib/assert-is-equal-uint32array":"2Hl","@stdlib/assert/is-equal-uint8array":"2Hm","@stdlib/assert-is-equal-uint8array":"2Hn","@stdlib/assert/is-equal-uint8clampedarray":"2Ho","@stdlib/assert-is-equal-uint8clampedarray":"2Hp","@stdlib/blas/base/csscal":"2Hq","@stdlib/blas-base-csscal":"2Hr","@stdlib/blas/ext/base/csum":"2Hs","@stdlib/blas-ext-base-csum":"2Ht","@stdlib/blas/ext/base/csumkbn":"2Hu","@stdlib/blas-ext-base-csumkbn":"2Hv","@stdlib/blas/ext/base/gnannsumpw":"2Hw","@stdlib/blas-ext-base-gnannsumpw":"2Hx","@stdlib/blas/ext/base/ndarray/csum":"2Hy","@stdlib/blas-ext-base-ndarray-csum":"2Hz","@stdlib/blas/ext/base/ndarray/zsum":"2I0","@stdlib/blas-ext-base-ndarray-zsum":"2I1","@stdlib/blas/ext/base/zsum":"2I2","@stdlib/blas-ext-base-zsum":"2I3","@stdlib/blas/ext/base/zsumkbn":"2I4","@stdlib/blas-ext-base-zsumkbn":"2I5","@stdlib/complex/float32/base/scale":"2I6","@stdlib/complex-float32-base-scale":"2I7","@stdlib/lapack/base/dgttrf":"2I8","@stdlib/lapack-base-dgttrf":"2I9","@stdlib/lapack/base/dlapy2":"2IA","@stdlib/lapack-base-dlapy2":"2IB","@stdlib/lapack/base/dlapy3":"2IC","@stdlib/lapack-base-dlapy3":"2ID","@stdlib/lapack/base/iladlc":"2IE","@stdlib/lapack-base-iladlc":"2IF","@stdlib/lapack/base/iladlr":"2IG","@stdlib/lapack-base-iladlr":"2IH","@stdlib/math/base/special/atan2f":"2II","@stdlib/math-base-special-atan2f":"2IJ","@stdlib/math/base/special/binomcoeff":"2IK","@stdlib/math-base-special-binomcoeff":"2IL","@stdlib/math/base/special/cinvf":"2IM","@stdlib/math-base-special-cinvf":"2IN","@stdlib/math/base/special/factorial2f":"2IO","@stdlib/math-base-special-factorial2f":"2IP","@stdlib/math/base/special/kernel-cosf":"2IQ","@stdlib/math-base-special-kernel-cosf":"2IR","@stdlib/math/base/special/kernel-sinf":"2IS","@stdlib/math-base-special-kernel-sinf":"2IT","@stdlib/math/base/special/negafibonaccif":"2IU","@stdlib/math-base-special-negafibonaccif":"2IV","@stdlib/math/base/special/rempio2f":"2IW","@stdlib/math-base-special-rempio2f":"2IX","@stdlib/math/base/special/spencef":"2IY","@stdlib/math-base-special-spencef":"2IZ","@stdlib/math/base/special/tribonaccif":"2Ia","@stdlib/math-base-special-tribonaccif":"2Ib","@stdlib/math/base/special/wrapf":"2Ic","@stdlib/math-base-special-wrapf":"2Id","@stdlib/ndarray/base/count-falsy":"2Ie","@stdlib/ndarray-base-count-falsy":"2If","@stdlib/ndarray/base/count-if":"2Ig","@stdlib/ndarray-base-count-if":"2Ih","@stdlib/ndarray/base/count-truthy":"2Ii","@stdlib/ndarray-base-count-truthy":"2Ij","@stdlib/ndarray/base/some-by":"2Ik","@stdlib/ndarray-base-some-by":"2Il","@stdlib/ndarray/base/unary-reduce-strided1d-by":"2Im","@stdlib/ndarray-base-unary-reduce-strided1d-by":"2In","@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory":"2Io","@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by-factory":"2Ip","@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by":"2Iq","@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by":"2Ir","@stdlib/ndarray/base/unary-reduce-subarray-by":"2Is","@stdlib/ndarray-base-unary-reduce-subarray-by":"2It","@stdlib/ndarray/count-falsy":"2Iu","@stdlib/ndarray-count-falsy":"2Iv","@stdlib/ndarray/count-if":"2Iw","@stdlib/ndarray-count-if":"2Ix","@stdlib/ndarray/count-truthy":"2Iy","@stdlib/ndarray-count-truthy":"2Iz","@stdlib/ndarray/some-by":"2J0","@stdlib/ndarray-some-by":"2J1","@stdlib/ndarray/vector/bool":"2J2","@stdlib/ndarray-vector-bool":"2J3","@stdlib/ndarray/vector/complex128":"2J4","@stdlib/ndarray-vector-complex128":"2J5","@stdlib/ndarray/vector/complex64":"2J6","@stdlib/ndarray-vector-complex64":"2J7","@stdlib/ndarray/vector/int16":"2J8","@stdlib/ndarray-vector-int16":"2J9","@stdlib/ndarray/vector/int32":"2JA","@stdlib/ndarray-vector-int32":"2JB","@stdlib/ndarray/vector/int8":"2JC","@stdlib/ndarray-vector-int8":"2JD","@stdlib/ndarray/vector":"2JE","@stdlib/ndarray-vector":"2JF","@stdlib/ndarray/vector/uint16":"2JG","@stdlib/ndarray-vector-uint16":"2JH","@stdlib/ndarray/vector/uint32":"2JI","@stdlib/ndarray-vector-uint32":"2JJ","@stdlib/ndarray/vector/uint8":"2JK","@stdlib/ndarray-vector-uint8":"2JL","@stdlib/ndarray/vector/uint8c":"2JM","@stdlib/ndarray-vector-uint8c":"2JN","@stdlib/stats/array/max-by":"2JO","@stdlib/stats-array-max-by":"2JP","@stdlib/stats/array/mediansorted":"2JQ","@stdlib/stats-array-mediansorted":"2JR","@stdlib/stats/array/min-by":"2JS","@stdlib/stats-array-min-by":"2JT","@stdlib/stats/array/nanmax-by":"2JU","@stdlib/stats-array-nanmax-by":"2JV","@stdlib/stats/array/nanmaxabs":"2JW","@stdlib/stats-array-nanmaxabs":"2JX","@stdlib/stats/array/nanmin-by":"2JY","@stdlib/stats-array-nanmin-by":"2JZ","@stdlib/stats/array/nanminabs":"2Ja","@stdlib/stats-array-nanminabs":"2Jb","@stdlib/stats/array/nanrange":"2Jc","@stdlib/stats-array-nanrange":"2Jd","@stdlib/stats/array":"2Je","@stdlib/stats-array":"2Jf","@stdlib/stats/array/range":"2Jg","@stdlib/stats-array-range":"2Jh","@stdlib/stats/base/ndarray/max-by":"2Ji","@stdlib/stats-base-ndarray-max-by":"2Jj","@stdlib/stats/max-by":"2Jk","@stdlib/stats-max-by":"2Jl","@stdlib/stats/strided/dmean":"2Jm","@stdlib/stats-strided-dmean":"2Jn","@stdlib/stats/strided/dmeanpn":"2Jo","@stdlib/stats-strided-dmeanpn":"2Jp","@stdlib/stats/strided/dnanmskmax":"2Jq","@stdlib/stats-strided-dnanmskmax":"2Jr","@stdlib/stats/strided/dnanmskmin":"2Js","@stdlib/stats-strided-dnanmskmin":"2Jt","@stdlib/stats/strided/dnanmskrange":"2Ju","@stdlib/stats-strided-dnanmskrange":"2Jv","@stdlib/stats/strided/dnanstdev":"2Jw","@stdlib/stats-strided-dnanstdev":"2Jx","@stdlib/stats/strided/dsem":"2Jy","@stdlib/stats-strided-dsem":"2Jz","@stdlib/stats/strided/dsempn":"2K0","@stdlib/stats-strided-dsempn":"2K1","@stdlib/stats/strided/dstdev":"2K2","@stdlib/stats-strided-dstdev":"2K3","@stdlib/stats/strided":"2K4","@stdlib/stats-strided":"2K5","@stdlib/stats/strided/snanmskmax":"2K6","@stdlib/stats-strided-snanmskmax":"2K7","@stdlib/stats/strided/snanmskmin":"2K8","@stdlib/stats-strided-snanmskmin":"2K9","@stdlib/stats/strided/snanmskrange":"2KA","@stdlib/stats-strided-snanmskrange":"2KB","@stdlib/stats/strided/wasm/dmeanwd":"2KC","@stdlib/stats-strided-wasm-dmeanwd":"2KD","@stdlib/array/struct-factory":"2KE","@stdlib/array-struct-factory":"2KF","@stdlib/assert/napi/is-dataview":"2KG","@stdlib/assert-napi-is-dataview":"2KH","@stdlib/dstructs/struct":"2KI","@stdlib/dstructs-struct":"2KJ","@stdlib/math/base/special/cosf":"2KK","@stdlib/math-base-special-cosf":"2KL","@stdlib/math/base/special/cosm1f":"2KM","@stdlib/math-base-special-cosm1f":"2KN","@stdlib/math/base/special/covercosf":"2KO","@stdlib/math-base-special-covercosf":"2KP","@stdlib/math/base/special/coversinf":"2KQ","@stdlib/math-base-special-coversinf":"2KR","@stdlib/math/base/special/cphasef":"2KS","@stdlib/math-base-special-cphasef":"2KT","@stdlib/math/base/special/cscf":"2KU","@stdlib/math-base-special-cscf":"2KV","@stdlib/math/base/special/frexpf":"2KW","@stdlib/math-base-special-frexpf":"2KX","@stdlib/math/base/special/gamma-lanczos-sum-expg-scaledf":"2KY","@stdlib/math-base-special-gamma-lanczos-sum-expg-scaledf":"2KZ","@stdlib/math/base/special/hacovercosf":"2Ka","@stdlib/math-base-special-hacovercosf":"2Kb","@stdlib/math/base/special/hacoversinf":"2Kc","@stdlib/math-base-special-hacoversinf":"2Kd","@stdlib/math/base/special/havercosf":"2Ke","@stdlib/math-base-special-havercosf":"2Kf","@stdlib/math/base/special/haversinf":"2Kg","@stdlib/math-base-special-haversinf":"2Kh","@stdlib/math/base/special/kernel-tanf":"2Ki","@stdlib/math-base-special-kernel-tanf":"2Kj","@stdlib/math/base/special/minmaxabsf":"2Kk","@stdlib/math-base-special-minmaxabsf":"2Kl","@stdlib/math/base/special/minmaxf":"2Km","@stdlib/math-base-special-minmaxf":"2Kn","@stdlib/math/base/special/modff":"2Ko","@stdlib/math-base-special-modff":"2Kp","@stdlib/math/base/special/secf":"2Kq","@stdlib/math-base-special-secf":"2Kr","@stdlib/math/base/special/sinf":"2Ks","@stdlib/math-base-special-sinf":"2Kt","@stdlib/math/base/special/tanf":"2Ku","@stdlib/math-base-special-tanf":"2Kv","@stdlib/math/base/special/vercosf":"2Kw","@stdlib/math-base-special-vercosf":"2Kx","@stdlib/math/base/special/versinf":"2Ky","@stdlib/math-base-special-versinf":"2Kz","@stdlib/napi/argv-dataview-cast":"2L0","@stdlib/napi-argv-dataview-cast":"2L1","@stdlib/napi/argv-dataview":"2L2","@stdlib/napi-argv-dataview":"2L3","@stdlib/ndarray/base/assert/is-struct-data-type":"2L4","@stdlib/ndarray-base-assert-is-struct-data-type":"2L5","@stdlib/number/float64/base/ulp-difference":"2L6","@stdlib/number-float64-base-ulp-difference":"2L7","@stdlib/number/uint16/base/add":"2L8","@stdlib/number-uint16-base-add":"2L9","@stdlib/number/uint16/base/mul":"2LA","@stdlib/number-uint16-base-mul":"2LB","@stdlib/number/uint16/base/sub":"2LC","@stdlib/number-uint16-base-sub":"2LD","@stdlib/number/uint32/base/add":"2LE","@stdlib/number-uint32-base-add":"2LF","@stdlib/number/uint32/base/sub":"2LG","@stdlib/number-uint32-base-sub":"2LH","@stdlib/number/uint8/base/add":"2LI","@stdlib/number-uint8-base-add":"2LJ","@stdlib/number/uint8/base/mul":"2LK","@stdlib/number-uint8-base-mul":"2LL","@stdlib/number/uint8/base/sub":"2LM","@stdlib/number-uint8-base-sub":"2LN","@stdlib/stats/array/meankbn":"2LO","@stdlib/stats-array-meankbn":"2LP","@stdlib/stats/array/meankbn2":"2LQ","@stdlib/stats-array-meankbn2":"2LR","@stdlib/stats/array/meanors":"2LS","@stdlib/stats-array-meanors":"2LT","@stdlib/stats/array/meanpn":"2LU","@stdlib/stats-array-meanpn":"2LV","@stdlib/stats/array/meanpw":"2LW","@stdlib/stats-array-meanpw":"2LX","@stdlib/stats/array/meanwd":"2LY","@stdlib/stats-array-meanwd":"2LZ","@stdlib/stats/array/nanmean":"2La","@stdlib/stats-array-nanmean":"2Lb","@stdlib/stats/array/nanmskmax":"2Lc","@stdlib/stats-array-nanmskmax":"2Ld","@stdlib/stats/base/ztest/alternative-enum2str":"2Le","@stdlib/stats-base-ztest-alternative-enum2str":"2Lf","@stdlib/stats/base/ztest/alternative-resolve-enum":"2Lg","@stdlib/stats-base-ztest-alternative-resolve-enum":"2Lh","@stdlib/stats/base/ztest/alternative-resolve-str":"2Li","@stdlib/stats-base-ztest-alternative-resolve-str":"2Lj","@stdlib/stats/base/ztest/alternative-str2enum":"2Lk","@stdlib/stats-base-ztest-alternative-str2enum":"2Ll","@stdlib/stats/base/ztest/alternatives":"2Lm","@stdlib/stats-base-ztest-alternatives":"2Ln","@stdlib/stats/base/ztest/one-sample/results/factory":"2Lo","@stdlib/stats-base-ztest-one-sample-results-factory":"2Lp","@stdlib/stats/base/ztest/one-sample/results/float32":"2Lq","@stdlib/stats-base-ztest-one-sample-results-float32":"2Lr","@stdlib/stats/base/ztest/one-sample/results/float64":"2Ls","@stdlib/stats-base-ztest-one-sample-results-float64":"2Lt","@stdlib/stats/base/ztest/one-sample/results/struct-factory":"2Lu","@stdlib/stats-base-ztest-one-sample-results-struct-factory":"2Lv","@stdlib/stats/base/ztest/one-sample/results/to-json":"2Lw","@stdlib/stats-base-ztest-one-sample-results-to-json":"2Lx","@stdlib/stats/base/ztest/one-sample/results/to-string":"2Ly","@stdlib/stats-base-ztest-one-sample-results-to-string":"2Lz","@stdlib/stats/strided/dvarm":"2M0","@stdlib/stats-strided-dvarm":"2M1","@stdlib/stats/strided/dvarmpn":"2M2","@stdlib/stats-strided-dvarmpn":"2M3","@stdlib/stats/strided/dztest":"2M4","@stdlib/stats-strided-dztest":"2M5","@stdlib/stats/strided/max-by":"2M6","@stdlib/stats-strided-max-by":"2M7","@stdlib/stats/strided/max":"2M8","@stdlib/stats-strided-max":"2M9","@stdlib/stats/strided/maxabs":"2MA","@stdlib/stats-strided-maxabs":"2MB","@stdlib/stats/strided/maxsorted":"2MC","@stdlib/stats-strided-maxsorted":"2MD","@stdlib/stats/strided/mean":"2ME","@stdlib/stats-strided-mean":"2MF","@stdlib/stats/strided/meankbn":"2MG","@stdlib/stats-strided-meankbn":"2MH","@stdlib/stats/strided/meankbn2":"2MI","@stdlib/stats-strided-meankbn2":"2MJ","@stdlib/stats/strided/meanors":"2MK","@stdlib/stats-strided-meanors":"2ML","@stdlib/stats/strided/meanpn":"2MM","@stdlib/stats-strided-meanpn":"2MN","@stdlib/stats/strided/meanpw":"2MO","@stdlib/stats-strided-meanpw":"2MP","@stdlib/stats/strided/meanwd":"2MQ","@stdlib/stats-strided-meanwd":"2MR","@stdlib/stats/strided/mediansorted":"2MS","@stdlib/stats-strided-mediansorted":"2MT","@stdlib/stats/strided/min-by":"2MU","@stdlib/stats-strided-min-by":"2MV","@stdlib/stats/strided/min":"2MW","@stdlib/stats-strided-min":"2MX","@stdlib/stats/strided/minabs":"2MY","@stdlib/stats-strided-minabs":"2MZ","@stdlib/stats/strided/minsorted":"2Ma","@stdlib/stats-strided-minsorted":"2Mb","@stdlib/stats/strided/mskmax":"2Mc","@stdlib/stats-strided-mskmax":"2Md","@stdlib/stats/strided/mskmin":"2Me","@stdlib/stats-strided-mskmin":"2Mf","@stdlib/stats/strided/mskrange":"2Mg","@stdlib/stats-strided-mskrange":"2Mh","@stdlib/stats/strided/nanmax-by":"2Mi","@stdlib/stats-strided-nanmax-by":"2Mj","@stdlib/stats/strided/nanmax":"2Mk","@stdlib/stats-strided-nanmax":"2Ml","@stdlib/stats/strided/nanmaxabs":"2Mm","@stdlib/stats-strided-nanmaxabs":"2Mn","@stdlib/stats/strided/nanmin-by":"2Mo","@stdlib/stats-strided-nanmin-by":"2Mp","@stdlib/stats/strided/nanmin":"2Mq","@stdlib/stats-strided-nanmin":"2Mr","@stdlib/stats/strided/nanminabs":"2Ms","@stdlib/stats-strided-nanminabs":"2Mt","@stdlib/stats/strided/smean":"2Mu","@stdlib/stats-strided-smean":"2Mv","@stdlib/stats/strided/smeanpn":"2Mw","@stdlib/stats-strided-smeanpn":"2Mx","@stdlib/stats/strided/sstdev":"2My","@stdlib/stats-strided-sstdev":"2Mz","@stdlib/stats/strided/svariance":"2N0","@stdlib/stats-strided-svariance":"2N1","@stdlib/stats/strided/svariancewd":"2N2","@stdlib/stats-strided-svariancewd":"2N3","@stdlib/stats/strided/sztest":"2N4","@stdlib/stats-strided-sztest":"2N5","@stdlib/stats/strided/ztest":"2N6","@stdlib/stats-strided-ztest":"2N7","@stdlib/array/base/assert/has-almost-equal-values":"2N8","@stdlib/array-base-assert-has-almost-equal-values":"2N9","@stdlib/assert/has-float16array-support":"2NA","@stdlib/assert-has-float16array-support":"2NB","@stdlib/assert/is-almost-equal-float64array":"2NC","@stdlib/assert-is-almost-equal-float64array":"2ND","@stdlib/assert/is-almost-equal":"2NE","@stdlib/assert-is-almost-equal":"2NF","@stdlib/assert/is-float16array":"2NG","@stdlib/assert-is-float16array":"2NH","@stdlib/assert/is-struct-constructor-like":"2NI","@stdlib/assert-is-struct-constructor-like":"2NJ","@stdlib/assert/is-struct":"2NK","@stdlib/assert-is-struct":"2NL","@stdlib/blas/base/assert/is-matrix-orientation":"2NM","@stdlib/blas-base-assert-is-matrix-orientation":"2NN","@stdlib/blas/base/gger":"2NO","@stdlib/blas-base-gger":"2NP","@stdlib/blas/base/igamax":"2NQ","@stdlib/blas-base-igamax":"2NR","@stdlib/blas/base/matrix-orientation-enum2str":"2NS","@stdlib/blas-base-matrix-orientation-enum2str":"2NT","@stdlib/blas/base/matrix-orientation-resolve-enum":"2NU","@stdlib/blas-base-matrix-orientation-resolve-enum":"2NV","@stdlib/blas/base/matrix-orientation-resolve-str":"2NW","@stdlib/blas-base-matrix-orientation-resolve-str":"2NX","@stdlib/blas/base/matrix-orientation-str2enum":"2NY","@stdlib/blas-base-matrix-orientation-str2enum":"2NZ","@stdlib/blas/base/matrix-orientations":"2Na","@stdlib/blas-base-matrix-orientations":"2Nb","@stdlib/blas/base/sger":"2Nc","@stdlib/blas-base-sger":"2Nd","@stdlib/blas/base/wasm/dznrm2":"2Ne","@stdlib/blas-base-wasm-dznrm2":"2Nf","@stdlib/blas/base/wasm/scasum":"2Ng","@stdlib/blas-base-wasm-scasum":"2Nh","@stdlib/blas/base/wasm/scnrm2":"2Ni","@stdlib/blas-base-wasm-scnrm2":"2Nj","@stdlib/blas/ext/base/dindex-of":"2Nk","@stdlib/blas-ext-base-dindex-of":"2Nl","@stdlib/blas/ext/base/dlast-index-of":"2Nm","@stdlib/blas-ext-base-dlast-index-of":"2Nn","@stdlib/blas/ext/base/gindex-of":"2No","@stdlib/blas-ext-base-gindex-of":"2Np","@stdlib/blas/ext/base/glast-index-of":"2Nq","@stdlib/blas-ext-base-glast-index-of":"2Nr","@stdlib/blas/ext/base/ndarray/dindex-of":"2Ns","@stdlib/blas-ext-base-ndarray-dindex-of":"2Nt","@stdlib/blas/ext/base/ndarray/dlast-index-of":"2Nu","@stdlib/blas-ext-base-ndarray-dlast-index-of":"2Nv","@stdlib/blas/ext/base/ndarray/gindex-of":"2Nw","@stdlib/blas-ext-base-ndarray-gindex-of":"2Nx","@stdlib/blas/ext/base/ndarray/glast-index-of":"2Ny","@stdlib/blas-ext-base-ndarray-glast-index-of":"2Nz","@stdlib/blas/ext/base/ndarray/sindex-of":"2O0","@stdlib/blas-ext-base-ndarray-sindex-of":"2O1","@stdlib/blas/ext/base/ndarray/slast-index-of":"2O2","@stdlib/blas-ext-base-ndarray-slast-index-of":"2O3","@stdlib/blas/ext/base/sindex-of":"2O4","@stdlib/blas-ext-base-sindex-of":"2O5","@stdlib/blas/ext/base/slast-index-of":"2O6","@stdlib/blas-ext-base-slast-index-of":"2O7","@stdlib/blas/ext/base/wasm/dnansumkbn2":"2O8","@stdlib/blas-ext-base-wasm-dnansumkbn2":"2O9","@stdlib/complex/float32/base/assert/is-almost-equal":"2OA","@stdlib/complex-float32-base-assert-is-almost-equal":"2OB","@stdlib/complex/float64/base/assert/is-almost-equal":"2OC","@stdlib/complex-float64-base-assert-is-almost-equal":"2OD","@stdlib/lapack/base/dlaset":"2OE","@stdlib/lapack-base-dlaset":"2OF","@stdlib/lapack/base/shared":"2OG","@stdlib/lapack-base-shared":"2OH","@stdlib/lapack/base/xerbla":"2OI","@stdlib/lapack-base-xerbla":"2OJ","@stdlib/math/base/special/kernel-log1pf":"2OK","@stdlib/math-base-special-kernel-log1pf":"2OL","@stdlib/math/base/special/round-nearest-even":"2OM","@stdlib/math-base-special-round-nearest-even":"2ON","@stdlib/math/base/special/sech":"2OO","@stdlib/math-base-special-sech":"2OP","@stdlib/ndarray/base/assert/is-data-type-string":"2OQ","@stdlib/ndarray-base-assert-is-data-type-string":"2OR","@stdlib/ndarray/base/ndarraylike2scalar":"2OS","@stdlib/ndarray-base-ndarraylike2scalar":"2OT","@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct":"2OU","@stdlib/ndarray-base-unary-reduce-strided1d-assign-struct":"2OV","@stdlib/number/float32/base/assert/is-almost-equal":"2OW","@stdlib/number-float32-base-assert-is-almost-equal":"2OX","@stdlib/number/float32/base/ulp-difference":"2OY","@stdlib/number-float32-base-ulp-difference":"2OZ","@stdlib/number/float64/base/assert/is-almost-equal":"2Oa","@stdlib/number-float64-base-assert-is-almost-equal":"2Ob","@stdlib/object/every-own-by":"2Oc","@stdlib/object-every-own-by":"2Od","@stdlib/object/none-in-by":"2Oe","@stdlib/object-none-in-by":"2Of","@stdlib/object/some-in-by":"2Og","@stdlib/object-some-in-by":"2Oh","@stdlib/stats/array/nanmeanors":"2Oi","@stdlib/stats-array-nanmeanors":"2Oj","@stdlib/stats/array/nanmeanpn":"2Ok","@stdlib/stats-array-nanmeanpn":"2Ol","@stdlib/stats/array/nanmeanwd":"2Om","@stdlib/stats-array-nanmeanwd":"2On","@stdlib/stats/array/nanmskmin":"2Oo","@stdlib/stats-array-nanmskmin":"2Op","@stdlib/stats/array/nanmskrange":"2Oq","@stdlib/stats-array-nanmskrange":"2Or","@stdlib/stats/array/nanrange-by":"2Os","@stdlib/stats-array-nanrange-by":"2Ot","@stdlib/stats/array/nanstdev":"2Ou","@stdlib/stats-array-nanstdev":"2Ov","@stdlib/stats/array/nanstdevch":"2Ow","@stdlib/stats-array-nanstdevch":"2Ox","@stdlib/stats/array/nanvariance":"2Oy","@stdlib/stats-array-nanvariance":"2Oz","@stdlib/stats/array/nanvariancech":"2P0","@stdlib/stats-array-nanvariancech":"2P1","@stdlib/stats/array/nanvariancepn":"2P2","@stdlib/stats-array-nanvariancepn":"2P3","@stdlib/stats/array/nanvariancetk":"2P4","@stdlib/stats-array-nanvariancetk":"2P5","@stdlib/stats/array/nanvariancewd":"2P6","@stdlib/stats-array-nanvariancewd":"2P7","@stdlib/stats/array/nanvarianceyc":"2P8","@stdlib/stats-array-nanvarianceyc":"2P9","@stdlib/stats/array/range-by":"2PA","@stdlib/stats-array-range-by":"2PB","@stdlib/stats/array/stdev":"2PC","@stdlib/stats-array-stdev":"2PD","@stdlib/stats/array/stdevch":"2PE","@stdlib/stats-array-stdevch":"2PF","@stdlib/stats/array/stdevpn":"2PG","@stdlib/stats-array-stdevpn":"2PH","@stdlib/stats/array/stdevtk":"2PI","@stdlib/stats-array-stdevtk":"2PJ","@stdlib/stats/array/stdevwd":"2PK","@stdlib/stats-array-stdevwd":"2PL","@stdlib/stats/array/stdevyc":"2PM","@stdlib/stats-array-stdevyc":"2PN","@stdlib/stats/array/variance":"2PO","@stdlib/stats-array-variance":"2PP","@stdlib/stats/array/variancech":"2PQ","@stdlib/stats-array-variancech":"2PR","@stdlib/stats/array/variancepn":"2PS","@stdlib/stats-array-variancepn":"2PT","@stdlib/stats/array/variancetk":"2PU","@stdlib/stats-array-variancetk":"2PV","@stdlib/stats/array/variancewd":"2PW","@stdlib/stats-array-variancewd":"2PX","@stdlib/stats/base/dists/bradford/skewness":"2PY","@stdlib/stats-base-dists-bradford-skewness":"2PZ","@stdlib/stats/base/ndarray/cumin":"2Pa","@stdlib/stats-base-ndarray-cumin":"2Pb","@stdlib/stats/base/ndarray/dcumin":"2Pc","@stdlib/stats-base-ndarray-dcumin":"2Pd","@stdlib/stats/base/ndarray/dmin":"2Pe","@stdlib/stats-base-ndarray-dmin":"2Pf","@stdlib/stats/base/ndarray/drange":"2Pg","@stdlib/stats-base-ndarray-drange":"2Ph","@stdlib/stats/base/ndarray/dztest":"2Pi","@stdlib/stats-base-ndarray-dztest":"2Pj","@stdlib/stats/base/ndarray/min-by":"2Pk","@stdlib/stats-base-ndarray-min-by":"2Pl","@stdlib/stats/base/ndarray/min":"2Pm","@stdlib/stats-base-ndarray-min":"2Pn","@stdlib/stats/base/ndarray/range":"2Po","@stdlib/stats-base-ndarray-range":"2Pp","@stdlib/stats/base/ndarray/scumin":"2Pq","@stdlib/stats-base-ndarray-scumin":"2Pr","@stdlib/stats/base/ndarray/smin":"2Ps","@stdlib/stats-base-ndarray-smin":"2Pt","@stdlib/stats/base/ndarray/srange":"2Pu","@stdlib/stats-base-ndarray-srange":"2Pv","@stdlib/stats/base/ndarray/sztest":"2Pw","@stdlib/stats-base-ndarray-sztest":"2Px","@stdlib/stats/base/ndarray/ztest":"2Py","@stdlib/stats-base-ndarray-ztest":"2Pz","@stdlib/stats/base/ztest/two-sample/results/factory":"2Q0","@stdlib/stats-base-ztest-two-sample-results-factory":"2Q1","@stdlib/stats/base/ztest/two-sample/results/float32":"2Q2","@stdlib/stats-base-ztest-two-sample-results-float32":"2Q3","@stdlib/stats/base/ztest/two-sample/results/float64":"2Q4","@stdlib/stats-base-ztest-two-sample-results-float64":"2Q5","@stdlib/stats/base/ztest/two-sample/results/struct-factory":"2Q6","@stdlib/stats-base-ztest-two-sample-results-struct-factory":"2Q7","@stdlib/stats/base/ztest/two-sample/results/to-json":"2Q8","@stdlib/stats-base-ztest-two-sample-results-to-json":"2Q9","@stdlib/stats/base/ztest/two-sample/results/to-string":"2QA","@stdlib/stats-base-ztest-two-sample-results-to-string":"2QB","@stdlib/stats/incr/nanmsum":"2QC","@stdlib/stats-incr-nanmsum":"2QD","@stdlib/stats/strided/covarmtk":"2QE","@stdlib/stats-strided-covarmtk":"2QF","@stdlib/stats/strided/dcovarmtk":"2QG","@stdlib/stats-strided-dcovarmtk":"2QH","@stdlib/stats/strided/dcovmatmtk":"2QI","@stdlib/stats-strided-dcovmatmtk":"2QJ","@stdlib/stats/strided/dmeanstdev":"2QK","@stdlib/stats-strided-dmeanstdev":"2QL","@stdlib/stats/strided/dmeanstdevpn":"2QM","@stdlib/stats-strided-dmeanstdevpn":"2QN","@stdlib/stats/strided/dmeanvar":"2QO","@stdlib/stats-strided-dmeanvar":"2QP","@stdlib/stats/strided/dmeanvarpn":"2QQ","@stdlib/stats-strided-dmeanvarpn":"2QR","@stdlib/stats/strided/nanmean":"2QS","@stdlib/stats-strided-nanmean":"2QT","@stdlib/stats/strided/nanmeanors":"2QU","@stdlib/stats-strided-nanmeanors":"2QV","@stdlib/stats/strided/nanmeanpn":"2QW","@stdlib/stats-strided-nanmeanpn":"2QX","@stdlib/stats/strided/nanmeanwd":"2QY","@stdlib/stats-strided-nanmeanwd":"2QZ","@stdlib/stats/strided/nanmskmax":"2Qa","@stdlib/stats-strided-nanmskmax":"2Qb","@stdlib/stats/strided/nanmskmin":"2Qc","@stdlib/stats-strided-nanmskmin":"2Qd","@stdlib/stats/strided/nanmskrange":"2Qe","@stdlib/stats-strided-nanmskrange":"2Qf","@stdlib/stats/strided/nanrange-by":"2Qg","@stdlib/stats-strided-nanrange-by":"2Qh","@stdlib/stats/strided/nanrange":"2Qi","@stdlib/stats-strided-nanrange":"2Qj","@stdlib/stats/strided/nanvariance":"2Qk","@stdlib/stats-strided-nanvariance":"2Ql","@stdlib/stats/strided/nanvariancech":"2Qm","@stdlib/stats-strided-nanvariancech":"2Qn","@stdlib/stats/strided/nanvariancepn":"2Qo","@stdlib/stats-strided-nanvariancepn":"2Qp","@stdlib/stats/strided/nanvariancetk":"2Qq","@stdlib/stats-strided-nanvariancetk":"2Qr","@stdlib/stats/strided/nanvariancewd":"2Qs","@stdlib/stats-strided-nanvariancewd":"2Qt","@stdlib/stats/strided/nanvarianceyc":"2Qu","@stdlib/stats-strided-nanvarianceyc":"2Qv","@stdlib/stats/strided/range-by":"2Qw","@stdlib/stats-strided-range-by":"2Qx","@stdlib/stats/strided/range":"2Qy","@stdlib/stats-strided-range":"2Qz","@stdlib/stats/strided/scovarmtk":"2R0","@stdlib/stats-strided-scovarmtk":"2R1","@stdlib/stats/strided/smeankbn":"2R2","@stdlib/stats-strided-smeankbn":"2R3","@stdlib/stats/strided/smeankbn2":"2R4","@stdlib/stats-strided-smeankbn2":"2R5","@stdlib/stats/strided/smeanlipw":"2R6","@stdlib/stats-strided-smeanlipw":"2R7","@stdlib/stats/strided/smeanors":"2R8","@stdlib/stats-strided-smeanors":"2R9","@stdlib/stats/strided/stdev":"2RA","@stdlib/stats-strided-stdev":"2RB","@stdlib/stats/strided/stdevch":"2RC","@stdlib/stats-strided-stdevch":"2RD","@stdlib/stats/strided/stdevpn":"2RE","@stdlib/stats-strided-stdevpn":"2RF","@stdlib/stats/strided/stdevtk":"2RG","@stdlib/stats-strided-stdevtk":"2RH","@stdlib/stats/strided/stdevwd":"2RI","@stdlib/stats-strided-stdevwd":"2RJ","@stdlib/stats/strided/stdevyc":"2RK","@stdlib/stats-strided-stdevyc":"2RL","@stdlib/stats/strided/sztest2":"2RM","@stdlib/stats-strided-sztest2":"2RN","@stdlib/stats/strided/variance":"2RO","@stdlib/stats-strided-variance":"2RP","@stdlib/stats/strided/variancech":"2RQ","@stdlib/stats-strided-variancech":"2RR","@stdlib/stats/strided/variancepn":"2RS","@stdlib/stats-strided-variancepn":"2RT","@stdlib/stats/strided/variancetk":"2RU","@stdlib/stats-strided-variancetk":"2RV","@stdlib/stats/strided/variancewd":"2RW","@stdlib/stats-strided-variancewd":"2RX","@stdlib/stats/strided/varianceyc":"2RY","@stdlib/stats-strided-varianceyc":"2RZ","@stdlib/stats/strided/ztest2":"2Ra","@stdlib/stats-strided-ztest2":"2Rb","@stdlib/wasm/types":"2Rc","@stdlib/wasm-types":"2Rd","@stdlib/array/base/zip2object":"2Re","@stdlib/array-base-zip2object":"2Rf","@stdlib/assert/is-almost-equal-array":"2Rg","@stdlib/assert-is-almost-equal-array":"2Rh","@stdlib/assert/is-almost-equal-complex128array":"2Ri","@stdlib/assert-is-almost-equal-complex128array":"2Rj","@stdlib/assert/is-almost-equal-complex64array":"2Rk","@stdlib/assert-is-almost-equal-complex64array":"2Rl","@stdlib/assert/is-almost-equal-float32array":"2Rm","@stdlib/assert-is-almost-equal-float32array":"2Rn","@stdlib/blas/ext/index-of":"2Ro","@stdlib/blas-ext-index-of":"2Rp","@stdlib/math/base/special/cospif":"2Rq","@stdlib/math-base-special-cospif":"2Rr","@stdlib/math/base/special/cpolarf":"2Rs","@stdlib/math-base-special-cpolarf":"2Rt","@stdlib/math/base/special/kernel-sincos":"2Ru","@stdlib/math-base-special-kernel-sincos":"2Rv","@stdlib/math/base/special/sinpif":"2Rw","@stdlib/math-base-special-sinpif":"2Rx","@stdlib/object/assign-in":"2Ry","@stdlib/object-assign-in":"2Rz","@stdlib/stats/array/nanstdevpn":"2S0","@stdlib/stats-array-nanstdevpn":"2S1","@stdlib/stats/array/nanstdevtk":"2S2","@stdlib/stats-array-nanstdevtk":"2S3","@stdlib/stats/array/nanstdevwd":"2S4","@stdlib/stats-array-nanstdevwd":"2S5","@stdlib/stats/array/nanstdevyc":"2S6","@stdlib/stats-array-nanstdevyc":"2S7","@stdlib/stats/base/ndarray/dztest2":"2S8","@stdlib/stats-base-ndarray-dztest2":"2S9","@stdlib/stats/base/ndarray/sztest2":"2SA","@stdlib/stats-base-ndarray-sztest2":"2SB","@stdlib/stats/base/ndarray/ztest2":"2SC","@stdlib/stats-base-ndarray-ztest2":"2SD","@stdlib/stats/strided/dztest2":"2SE","@stdlib/stats-strided-dztest2":"2SF","@stdlib/stats/strided/nanstdev":"2SG","@stdlib/stats-strided-nanstdev":"2SH","@stdlib/stats/strided/nanstdevch":"2SI","@stdlib/stats-strided-nanstdevch":"2SJ","@stdlib/stats/strided/nanstdevpn":"2SK","@stdlib/stats-strided-nanstdevpn":"2SL","@stdlib/stats/strided/nanstdevtk":"2SM","@stdlib/stats-strided-nanstdevtk":"2SN","@stdlib/stats/strided/nanstdevwd":"2SO","@stdlib/stats-strided-nanstdevwd":"2SP","@stdlib/stats/strided/nanstdevyc":"2SQ","@stdlib/stats-strided-nanstdevyc":"2SR","@stdlib/array/base/entries2objects":"2SS","@stdlib/array-base-entries2objects":"2ST","@stdlib/array/base/entries2views":"2SU","@stdlib/array-base-entries2views":"2SV","@stdlib/array/base/group-values-on-key":"2SW","@stdlib/array-base-group-values-on-key":"2SX","@stdlib/array/base/nested2objects":"2SY","@stdlib/array-base-nested2objects":"2SZ","@stdlib/array/base/nested2views":"2Sa","@stdlib/array-base-nested2views":"2Sb","@stdlib/array/base/rekey-views":"2Sc","@stdlib/array-base-rekey-views":"2Sd","@stdlib/array/base/rekey":"2Se","@stdlib/array-base-rekey":"2Sf","@stdlib/array/base/zip":"2Sg","@stdlib/array-base-zip":"2Sh","@stdlib/array/base/zip2objects":"2Si","@stdlib/array-base-zip2objects":"2Sj","@stdlib/array/base/zip2views":"2Sk","@stdlib/array-base-zip2views":"2Sl","@stdlib/blas/base/ggemm":"2Sm","@stdlib/blas-base-ggemm":"2Sn","@stdlib/blas/base/ggemv":"2So","@stdlib/blas-base-ggemv":"2Sp","@stdlib/blas/base/gsyr":"2Sq","@stdlib/blas-base-gsyr":"2Sr","@stdlib/blas/base/ndarray/ddot":"2Ss","@stdlib/blas-base-ndarray-ddot":"2St","@stdlib/blas/base/ndarray/gdot":"2Su","@stdlib/blas-base-ndarray-gdot":"2Sv","@stdlib/blas/base/ndarray/sdot":"2Sw","@stdlib/blas-base-ndarray-sdot":"2Sx","@stdlib/blas/ext/base/gfind-index":"2Sy","@stdlib/blas-ext-base-gfind-index":"2Sz","@stdlib/blas/ext/base/gfind-last-index":"2T0","@stdlib/blas-ext-base-gfind-last-index":"2T1","@stdlib/blas/ext/base/ndarray/dsorthp":"2T2","@stdlib/blas-ext-base-ndarray-dsorthp":"2T3","@stdlib/blas/ext/base/ndarray/gfind-index":"2T4","@stdlib/blas-ext-base-ndarray-gfind-index":"2T5","@stdlib/blas/ext/base/ndarray/gfind-last-index":"2T6","@stdlib/blas-ext-base-ndarray-gfind-last-index":"2T7","@stdlib/blas/ext/base/ndarray/gsorthp":"2T8","@stdlib/blas-ext-base-ndarray-gsorthp":"2T9","@stdlib/blas/ext/base/ndarray/ssorthp":"2TA","@stdlib/blas-ext-base-ndarray-ssorthp":"2TB","@stdlib/blas/ext/find-index":"2TC","@stdlib/blas-ext-find-index":"2TD","@stdlib/blas/ext/find-last-index":"2TE","@stdlib/blas-ext-find-last-index":"2TF","@stdlib/lapack/base/dladiv":"2TG","@stdlib/lapack-base-dladiv":"2TH","@stdlib/math/base/assert/is-negative-integerf":"2TI","@stdlib/math-base-assert-is-negative-integerf":"2TJ","@stdlib/math/base/special/absgammalnf":"2TK","@stdlib/math-base-special-absgammalnf":"2TL","@stdlib/math/base/special/cosdf":"2TM","@stdlib/math-base-special-cosdf":"2TN","@stdlib/math/base/special/cotdf":"2TO","@stdlib/math-base-special-cotdf":"2TP","@stdlib/math/base/special/cotf":"2TQ","@stdlib/math-base-special-cotf":"2TR","@stdlib/math/base/special/cscdf":"2TS","@stdlib/math-base-special-cscdf":"2TT","@stdlib/math/base/special/factoriallnf":"2TU","@stdlib/math-base-special-factoriallnf":"2TV","@stdlib/math/base/special/kernel-sincosf":"2TW","@stdlib/math-base-special-kernel-sincosf":"2TX","@stdlib/math/base/special/secdf":"2TY","@stdlib/math-base-special-secdf":"2TZ","@stdlib/math/base/special/sincf":"2Ta","@stdlib/math-base-special-sincf":"2Tb","@stdlib/math/base/special/sincosf":"2Tc","@stdlib/math-base-special-sincosf":"2Td","@stdlib/math/base/special/sindf":"2Te","@stdlib/math-base-special-sindf":"2Tf","@stdlib/math/base/special/tandf":"2Tg","@stdlib/math-base-special-tandf":"2Th","@stdlib/math/base/special/trigammaf":"2Ti","@stdlib/math-base-special-trigammaf":"2Tj","@stdlib/ndarray/base/binary-reduce-strided1d":"2Tk","@stdlib/ndarray-base-binary-reduce-strided1d":"2Tl","@stdlib/ndarray/base/from-array":"2Tm","@stdlib/ndarray-base-from-array":"2Tn","@stdlib/ndarray/base/zip2views1d":"2To","@stdlib/ndarray-base-zip2views1d":"2Tp","@stdlib/net/http2-secure-server":"2Tq","@stdlib/net-http2-secure-server":"2Tr","@stdlib/number/int16/base/identity":"2Ts","@stdlib/number-int16-base-identity":"2Tt","@stdlib/number/int32/base/identity":"2Tu","@stdlib/number-int32-base-identity":"2Tv","@stdlib/number/int8/base/identity":"2Tw","@stdlib/number-int8-base-identity":"2Tx","@stdlib/number/uint16/base/identity":"2Ty","@stdlib/number-uint16-base-identity":"2Tz","@stdlib/number/uint32/base/identity":"2U0","@stdlib/number-uint32-base-identity":"2U1","@stdlib/number/uint8/base/identity":"2U2","@stdlib/number-uint8-base-identity":"2U3","@stdlib/stats/base/dists/bradford":"2U4","@stdlib/stats-base-dists-bradford":"2U5","@stdlib/stats/base/dists/planck":"2U6","@stdlib/stats-base-dists-planck":"2U7","@stdlib/stats/base/ndarray/covarmtk":"2U8","@stdlib/stats-base-ndarray-covarmtk":"2U9","@stdlib/stats/base/ndarray/dcovarmtk":"2UA","@stdlib/stats-base-ndarray-dcovarmtk":"2UB","@stdlib/stats/base/ndarray/dmaxabs":"2UC","@stdlib/stats-base-ndarray-dmaxabs":"2UD","@stdlib/stats/base/ndarray/dmean":"2UE","@stdlib/stats-base-ndarray-dmean":"2UF","@stdlib/stats/base/ndarray/dminabs":"2UG","@stdlib/stats-base-ndarray-dminabs":"2UH","@stdlib/stats/base/ndarray/dnanmax":"2UI","@stdlib/stats-base-ndarray-dnanmax":"2UJ","@stdlib/stats/base/ndarray/dnanmin":"2UK","@stdlib/stats-base-ndarray-dnanmin":"2UL","@stdlib/stats/base/ndarray/maxabs":"2UM","@stdlib/stats-base-ndarray-maxabs":"2UN","@stdlib/stats/base/ndarray/mean":"2UO","@stdlib/stats-base-ndarray-mean":"2UP","@stdlib/stats/base/ndarray/minabs":"2UQ","@stdlib/stats-base-ndarray-minabs":"2UR","@stdlib/stats/base/ndarray/nanmax":"2US","@stdlib/stats-base-ndarray-nanmax":"2UT","@stdlib/stats/base/ndarray/nanmin":"2UU","@stdlib/stats-base-ndarray-nanmin":"2UV","@stdlib/stats/base/ndarray/scovarmtk":"2UW","@stdlib/stats-base-ndarray-scovarmtk":"2UX","@stdlib/stats/base/ndarray/smaxabs":"2UY","@stdlib/stats-base-ndarray-smaxabs":"2UZ","@stdlib/stats/base/ndarray/smean":"2Ua","@stdlib/stats-base-ndarray-smean":"2Ub","@stdlib/stats/base/ndarray/sminabs":"2Uc","@stdlib/stats-base-ndarray-sminabs":"2Ud","@stdlib/stats/base/ndarray/snanmax":"2Ue","@stdlib/stats-base-ndarray-snanmax":"2Uf","@stdlib/stats/base/ndarray/snanmin":"2Ug","@stdlib/stats-base-ndarray-snanmin":"2Uh","@stdlib/stats/cumin":"2Ui","@stdlib/stats-cumin":"2Uj","@stdlib/stats/maxabs":"2Uk","@stdlib/stats-maxabs":"2Ul","@stdlib/stats/mean":"2Um","@stdlib/stats-mean":"2Un","@stdlib/stats/min-by":"2Uo","@stdlib/stats-min-by":"2Up","@stdlib/stats/min":"2Uq","@stdlib/stats-min":"2Ur","@stdlib/stats/minabs":"2Us","@stdlib/stats-minabs":"2Ut","@stdlib/stats/nanmax":"2Uu","@stdlib/stats-nanmax":"2Uv","@stdlib/stats/nanmin":"2Uw","@stdlib/stats-nanmin":"2Ux","@stdlib/stats/range":"2Uy","@stdlib/stats-range":"2Uz","@stdlib/lapack/base/dlarf1f":"2V0","@stdlib/lapack-base-dlarf1f":"2V1","@stdlib/math/base/special/fast/absf":"2V2","@stdlib/math-base-special-fast-absf":"2V3","@stdlib/ndarray/base/any":"2V4","@stdlib/ndarray-base-any":"2V5","@stdlib/ndarray/base/nullary-strided1d":"2V6","@stdlib/ndarray-base-nullary-strided1d":"2V7","@stdlib/ndarray/with":"2V8","@stdlib/ndarray-with":"2V9","@stdlib/stats/base/ndarray/dnanmean":"2VA","@stdlib/stats-base-ndarray-dnanmean":"2VB","@stdlib/stats/base/ndarray/nanmean":"2VC","@stdlib/stats-base-ndarray-nanmean":"2VD","@stdlib/stats/base/ndarray/snanmean":"2VE","@stdlib/stats-base-ndarray-snanmean":"2VF","@stdlib/stats/nanmean":"2VG","@stdlib/stats-nanmean":"2VH","@stdlib/blas/base/wasm/zscal":"2VI","@stdlib/blas-base-wasm-zscal":"2VJ","@stdlib/blas/ext/last-index-of":"2VK","@stdlib/blas-ext-last-index-of":"2VL","@stdlib/complex/float32/base/mul-add":"2VM","@stdlib/complex-float32-base-mul-add":"2VN","@stdlib/math/base/special/fast/hypotf":"2VO","@stdlib/math-base-special-fast-hypotf":"2VP","@stdlib/ndarray/base/any-by":"2VQ","@stdlib/ndarray-base-any-by":"2VR","@stdlib/ndarray/base/binary-input-casting-dtype":"2VS","@stdlib/ndarray-base-binary-input-casting-dtype":"2VT","@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory":"2VU","@stdlib/ndarray-base-binary-reduce-strided1d-dispatch-factory":"2VV","@stdlib/ndarray/base/binary-reduce-strided1d-dispatch":"2VW","@stdlib/ndarray-base-binary-reduce-strided1d-dispatch":"2VX","@stdlib/ndarray/base/broadcast-array-except-dimensions":"2VY","@stdlib/ndarray-base-broadcast-array-except-dimensions":"2VZ","@stdlib/ndarray/base/find":"2Va","@stdlib/ndarray-base-find":"2Vb","@stdlib/ndarray/base/flatten-shape":"2Vc","@stdlib/ndarray-base-flatten-shape":"2Vd","@stdlib/ndarray/base/nullary-strided1d-dispatch":"2Ve","@stdlib/ndarray-base-nullary-strided1d-dispatch":"2Vf","@stdlib/ndarray/base/unary-addon-dispatch":"2Vg","@stdlib/ndarray-base-unary-addon-dispatch":"2Vh","@stdlib/ndarray/fill-slice":"2Vi","@stdlib/ndarray-fill-slice":"2Vj","@stdlib/ndarray/flatten":"2Vk","@stdlib/ndarray-flatten":"2Vl","@stdlib/stats/base/ndarray/dmaxsorted":"2Vm","@stdlib/stats-base-ndarray-dmaxsorted":"2Vn","@stdlib/stats/base/ndarray/maxsorted":"2Vo","@stdlib/stats-base-ndarray-maxsorted":"2Vp","@stdlib/stats/base/ndarray/smaxsorted":"2Vq","@stdlib/stats-base-ndarray-smaxsorted":"2Vr","@stdlib/stats/strided/sdsnanmeanors":"2Vs","@stdlib/stats-strided-sdsnanmeanors":"2Vt","@stdlib/stats/strided/snanmean":"2Vu","@stdlib/stats-strided-snanmean":"2Vv","@stdlib/stats/strided/sstdevwd":"2Vw","@stdlib/stats-strided-sstdevwd":"2Vx","@stdlib/array/base/insert-at":"2Vy","@stdlib/array-base-insert-at":"2Vz","@stdlib/array/base/to-inserted-at":"2W0","@stdlib/array-base-to-inserted-at":"2W1","@stdlib/blas/ext/base/gindex-of-row":"2W2","@stdlib/blas-ext-base-gindex-of-row":"2W3","@stdlib/math/base/special/fast/maxf":"2W4","@stdlib/math-base-special-fast-maxf":"2W5","@stdlib/ndarray/base/assert/is-data-type-object":"2W6","@stdlib/ndarray-base-assert-is-data-type-object":"2W7","@stdlib/ndarray/base/assert/is-equal-data-type":"2W8","@stdlib/ndarray-base-assert-is-equal-data-type":"2W9","@stdlib/ndarray/base/dtype-alignment":"2WA","@stdlib/ndarray-base-dtype-alignment":"2WB","@stdlib/ndarray/base/dtypes2enums":"2WC","@stdlib/ndarray-base-dtypes2enums":"2WD","@stdlib/ndarray/base/nullary-strided1d-dispatch-factory":"2WE","@stdlib/ndarray-base-nullary-strided1d-dispatch-factory":"2WF","@stdlib/ndarray/dtype-ctor":"2WG","@stdlib/ndarray-dtype-ctor":"2WH","@stdlib/ndarray/flatten-by":"2WI","@stdlib/ndarray-flatten-by":"2WJ","@stdlib/stats/strided/wasm/dnanvariancewd":"2WK","@stdlib/stats-strided-wasm-dnanvariancewd":"2WL","@stdlib/blas/ext/sorthp":"2WM","@stdlib/blas-ext-sorthp":"2WN","@stdlib/math/base/special/fast/minf":"2WO","@stdlib/math-base-special-fast-minf":"2WP","@stdlib/ndarray/any-by":"2WQ","@stdlib/ndarray-any-by":"2WR","@stdlib/ndarray/any":"2WS","@stdlib/ndarray-any":"2WT","@stdlib/ndarray/base/dtype-enums":"2WU","@stdlib/ndarray-base-dtype-enums":"2WV","@stdlib/ndarray/base/dtype-objects":"2WW","@stdlib/ndarray-base-dtype-objects":"2WX","@stdlib/ndarray/base/dtype-strings":"2WY","@stdlib/ndarray-base-dtype-strings":"2WZ","@stdlib/ndarray/base/pop":"2Wa","@stdlib/ndarray-base-pop":"2Wb","@stdlib/ndarray/base/shift":"2Wc","@stdlib/ndarray-base-shift":"2Wd","@stdlib/stats/incr/nangmean":"2We","@stdlib/stats-incr-nangmean":"2Wf","@stdlib/stats/incr/nanhmean":"2Wg","@stdlib/stats-incr-nanhmean":"2Wh","@stdlib/stats/incr/nanmin":"2Wi","@stdlib/stats-incr-nanmin":"2Wj","@stdlib/assert/has-is-concat-spreadable-symbol-support":"2Wk","@stdlib/assert-has-is-concat-spreadable-symbol-support":"2Wl","@stdlib/blas/ext/to-sortedhp":"2Wm","@stdlib/blas-ext-to-sortedhp":"2Wn","@stdlib/ndarray/base/assert/is-complex-floating-point-data-type-char":"2Wo","@stdlib/ndarray-base-assert-is-complex-floating-point-data-type-char":"2Wp","@stdlib/ndarray/base/copy":"2Wq","@stdlib/ndarray-base-copy":"2Wr","@stdlib/ndarray/base/dtype-chars":"2Ws","@stdlib/ndarray-base-dtype-chars":"2Wt","@stdlib/ndarray/base/flatten-shape-from":"2Wu","@stdlib/ndarray-base-flatten-shape-from":"2Wv","@stdlib/ndarray/base/some":"2Ww","@stdlib/ndarray-base-some":"2Wx","@stdlib/ndarray/concat":"2Wy","@stdlib/ndarray-concat":"2Wz","@stdlib/ndarray/find":"2X0","@stdlib/ndarray-find":"2X1","@stdlib/ndarray/flatten-from":"2X2","@stdlib/ndarray-flatten-from":"2X3","@stdlib/ndarray/pop":"2X4","@stdlib/ndarray-pop":"2X5","@stdlib/ndarray/reverse-dimension":"2X6","@stdlib/ndarray-reverse-dimension":"2X7","@stdlib/ndarray/reverse":"2X8","@stdlib/ndarray-reverse":"2X9","@stdlib/ndarray/shift":"2XA","@stdlib/ndarray-shift":"2XB","@stdlib/ndarray/to-reversed":"2XC","@stdlib/ndarray-to-reversed":"2XD","@stdlib/stats/base/ndarray/meankbn":"2XE","@stdlib/stats-base-ndarray-meankbn":"2XF","@stdlib/stats/base/ndarray/meankbn2":"2XG","@stdlib/stats-base-ndarray-meankbn2":"2XH","@stdlib/stats/base/ndarray/meanors":"2XI","@stdlib/stats-base-ndarray-meanors":"2XJ","@stdlib/stats/base/ndarray/meanpn":"2XK","@stdlib/stats-base-ndarray-meanpn":"2XL","@stdlib/stats/base/ndarray/meanpw":"2XM","@stdlib/stats-base-ndarray-meanpw":"2XN","@stdlib/stats/base/ndarray/meanwd":"2XO","@stdlib/stats-base-ndarray-meanwd":"2XP","@stdlib/stats/base/ndarray/mediansorted":"2XQ","@stdlib/stats-base-ndarray-mediansorted":"2XR","@stdlib/stats/base/ndarray/minsorted":"2XS","@stdlib/stats-base-ndarray-minsorted":"2XT","@stdlib/stats/base/ndarray/mskmax":"2XU","@stdlib/stats-base-ndarray-mskmax":"2XV","@stdlib/symbol/is-concat-spreadable":"2XW","@stdlib/symbol-is-concat-spreadable":"2XX","@stdlib/assert/has-has-instance-symbol-support":"2XY","@stdlib/assert-has-has-instance-symbol-support":"2XZ","@stdlib/assert/has-match-symbol-support":"2Xa","@stdlib/assert-has-match-symbol-support":"2Xb","@stdlib/assert/has-replace-symbol-support":"2Xc","@stdlib/assert-has-replace-symbol-support":"2Xd","@stdlib/assert/has-search-symbol-support":"2Xe","@stdlib/assert-has-search-symbol-support":"2Xf","@stdlib/assert/has-split-symbol-support":"2Xg","@stdlib/assert-has-split-symbol-support":"2Xh","@stdlib/assert/has-to-primitive-symbol-support":"2Xi","@stdlib/assert-has-to-primitive-symbol-support":"2Xj","@stdlib/blas/ext/base/dlinspace":"2Xk","@stdlib/blas-ext-base-dlinspace":"2Xl","@stdlib/blas/ext/base/glinspace":"2Xm","@stdlib/blas-ext-base-glinspace":"2Xn","@stdlib/blas/ext/base/ndarray/dlinspace":"2Xo","@stdlib/blas-ext-base-ndarray-dlinspace":"2Xp","@stdlib/blas/ext/base/ndarray/glinspace":"2Xq","@stdlib/blas-ext-base-ndarray-glinspace":"2Xr","@stdlib/blas/ext/base/ndarray/slinspace":"2Xs","@stdlib/blas-ext-base-ndarray-slinspace":"2Xt","@stdlib/blas/ext/base/slinspace":"2Xu","@stdlib/blas-ext-base-slinspace":"2Xv","@stdlib/ndarray/base/complement-shape":"2Xw","@stdlib/ndarray-base-complement-shape":"2Xx","@stdlib/ndarray/copy":"2Xy","@stdlib/ndarray-copy":"2Xz","@stdlib/stats/base/ndarray/dmeankbn":"2Y0","@stdlib/stats-base-ndarray-dmeankbn":"2Y1","@stdlib/stats/base/ndarray/dmeankbn2":"2Y2","@stdlib/stats-base-ndarray-dmeankbn2":"2Y3","@stdlib/stats/base/ndarray/dmeanli":"2Y4","@stdlib/stats-base-ndarray-dmeanli":"2Y5","@stdlib/stats/base/ndarray/dmeanlipw":"2Y6","@stdlib/stats-base-ndarray-dmeanlipw":"2Y7","@stdlib/stats/base/ndarray/dminsorted":"2Y8","@stdlib/stats-base-ndarray-dminsorted":"2Y9","@stdlib/stats/base/ndarray/mskmin":"2YA","@stdlib/stats-base-ndarray-mskmin":"2YB","@stdlib/stats/base/ndarray/range-by":"2YC","@stdlib/stats-base-ndarray-range-by":"2YD","@stdlib/stats/base/ndarray/smaxabssorted":"2YE","@stdlib/stats-base-ndarray-smaxabssorted":"2YF","@stdlib/stats/base/ndarray/sminsorted":"2YG","@stdlib/stats-base-ndarray-sminsorted":"2YH","@stdlib/stats/base/ndarray/snanmaxabs":"2YI","@stdlib/stats-base-ndarray-snanmaxabs":"2YJ","@stdlib/stats/base/ndarray/snanminabs":"2YK","@stdlib/stats-base-ndarray-snanminabs":"2YL","@stdlib/symbol/has-instance":"2YM","@stdlib/symbol-has-instance":"2YN","@stdlib/symbol/to-primitive":"2YO","@stdlib/symbol-to-primitive":"2YP","@stdlib/blas/ext/base/drrss":"2YQ","@stdlib/blas-ext-base-drrss":"2YR","@stdlib/blas/ext/linspace":"2YS","@stdlib/blas-ext-linspace":"2YT","@stdlib/ndarray/some":"2YU","@stdlib/ndarray-some":"2YV","@stdlib/number/float64/base/to-float16":"2YW","@stdlib/number-float64-base-to-float16":"2YX","@stdlib/number/int16/base":"2YY","@stdlib/number-int16-base":"2YZ","@stdlib/number/int8/base":"2Ya","@stdlib/number-int8-base":"2Yb","@stdlib/stats/base/ndarray/dnanmaxabs":"2Yc","@stdlib/stats-base-ndarray-dnanmaxabs":"2Yd","@stdlib/stats/base/ndarray/dnanminabs":"2Ye","@stdlib/stats-base-ndarray-dnanminabs":"2Yf","@stdlib/stats/base/ndarray/nanmaxabs":"2Yg","@stdlib/stats-base-ndarray-nanmaxabs":"2Yh","@stdlib/stats/base/ndarray/nanminabs":"2Yi","@stdlib/stats-base-ndarray-nanminabs":"2Yj","@stdlib/stats/base/ndarray/scumaxabs":"2Yk","@stdlib/stats-base-ndarray-scumaxabs":"2Yl","@stdlib/stats/base/ndarray/scuminabs":"2Ym","@stdlib/stats-base-ndarray-scuminabs":"2Yn","@stdlib/stats/incr/nanmcv":"2Yo","@stdlib/stats-incr-nanmcv":"2Yp","@stdlib/stats/strided/wasm/dmeanpw":"2Yq","@stdlib/stats-strided-wasm-dmeanpw":"2Yr","@stdlib/string/base/concat":"2Ys","@stdlib/string-base-concat":"2Yt","@stdlib/symbol/replace":"2Yu","@stdlib/symbol-replace":"2Yv","@stdlib/blas/ext/base/gjoin":"2Yw","@stdlib/blas-ext-base-gjoin":"2Yx","@stdlib/blas/ext/base/ndarray/csumkbn":"2Yy","@stdlib/blas-ext-base-ndarray-csumkbn":"2Yz","@stdlib/blas/ext/base/ndarray/dcusumkbn":"2Z0","@stdlib/blas-ext-base-ndarray-dcusumkbn":"2Z1","@stdlib/blas/ext/base/ndarray/dcusumkbn2":"2Z2","@stdlib/blas-ext-base-ndarray-dcusumkbn2":"2Z3","@stdlib/blas/ext/base/ndarray/dsumkbn":"2Z4","@stdlib/blas-ext-base-ndarray-dsumkbn":"2Z5","@stdlib/blas/ext/base/ndarray/dsumkbn2":"2Z6","@stdlib/blas-ext-base-ndarray-dsumkbn2":"2Z7","@stdlib/blas/ext/base/ndarray/gjoin":"2Z8","@stdlib/blas-ext-base-ndarray-gjoin":"2Z9","@stdlib/blas/ext/base/ndarray/gsumkbn":"2ZA","@stdlib/blas-ext-base-ndarray-gsumkbn":"2ZB","@stdlib/blas/ext/base/ndarray/gsumkbn2":"2ZC","@stdlib/blas-ext-base-ndarray-gsumkbn2":"2ZD","@stdlib/blas/ext/base/ndarray/scusumkbn":"2ZE","@stdlib/blas-ext-base-ndarray-scusumkbn":"2ZF","@stdlib/blas/ext/base/ndarray/scusumkbn2":"2ZG","@stdlib/blas-ext-base-ndarray-scusumkbn2":"2ZH","@stdlib/blas/ext/base/ndarray/ssumkbn":"2ZI","@stdlib/blas-ext-base-ndarray-ssumkbn":"2ZJ","@stdlib/blas/ext/base/ndarray/ssumkbn2":"2ZK","@stdlib/blas-ext-base-ndarray-ssumkbn2":"2ZL","@stdlib/blas/ext/base/ndarray/zsumkbn":"2ZM","@stdlib/blas-ext-base-ndarray-zsumkbn":"2ZN","@stdlib/constants/float16/apery":"2ZO","@stdlib/constants-float16-apery":"2ZP","@stdlib/constants/float16/catalan":"2ZQ","@stdlib/constants-float16-catalan":"2ZR","@stdlib/constants/float16/e":"2ZS","@stdlib/constants-float16-e":"2ZT","@stdlib/constants/float16/eulergamma":"2ZU","@stdlib/constants-float16-eulergamma":"2ZV","@stdlib/constants/float16/exponent-mask":"2ZW","@stdlib/constants-float16-exponent-mask":"2ZX","@stdlib/constants/float16/fourth-pi":"2ZY","@stdlib/constants-float16-fourth-pi":"2ZZ","@stdlib/constants/float16/half-pi":"2Za","@stdlib/constants-float16-half-pi":"2Zb","@stdlib/constants/float16/max-base2-exponent":"2Zc","@stdlib/constants-float16-max-base2-exponent":"2Zd","@stdlib/constants/float16/max-ln":"2Ze","@stdlib/constants-float16-max-ln":"2Zf","@stdlib/constants/float16/min-base2-exponent":"2Zg","@stdlib/constants-float16-min-base2-exponent":"2Zh","@stdlib/constants/float16/min-ln":"2Zi","@stdlib/constants-float16-min-ln":"2Zj","@stdlib/constants/float16/num-exponent-bits":"2Zk","@stdlib/constants-float16-num-exponent-bits":"2Zl","@stdlib/constants/float16/num-significand-bits":"2Zm","@stdlib/constants-float16-num-significand-bits":"2Zn","@stdlib/constants/float16/phi":"2Zo","@stdlib/constants-float16-phi":"2Zp","@stdlib/constants/float16/pi-squared":"2Zq","@stdlib/constants-float16-pi-squared":"2Zr","@stdlib/constants/float16/pi":"2Zs","@stdlib/constants-float16-pi":"2Zt","@stdlib/constants/float16/sign-mask":"2Zu","@stdlib/constants-float16-sign-mask":"2Zv","@stdlib/constants/float16/significand-mask":"2Zw","@stdlib/constants-float16-significand-mask":"2Zx","@stdlib/constants/float16/sqrt-two":"2Zy","@stdlib/constants-float16-sqrt-two":"2Zz","@stdlib/constants/float16/two-pi":"2a0","@stdlib/constants-float16-two-pi":"2a1","@stdlib/constants/float32/glaisher-kinkelin":"2a2","@stdlib/constants-float32-glaisher-kinkelin":"2a3","@stdlib/math/base/special/log1pf":"2a4","@stdlib/math-base-special-log1pf":"2a5","@stdlib/math/base/special/powf":"2a6","@stdlib/math-base-special-powf":"2a7","@stdlib/ndarray/base/to-flippedlr":"2a8","@stdlib/ndarray-base-to-flippedlr":"2a9","@stdlib/ndarray/base/to-flippedud":"2aA","@stdlib/ndarray-base-to-flippedud":"2aB","@stdlib/ndarray/concat1d":"2aC","@stdlib/ndarray-concat1d":"2aD","@stdlib/ndarray/fliplr":"2aE","@stdlib/ndarray-fliplr":"2aF","@stdlib/ndarray/flipud":"2aG","@stdlib/ndarray-flipud":"2aH","@stdlib/number/float16/base/exponent":"2aI","@stdlib/number-float16-base-exponent":"2aJ","@stdlib/number/float16/base/from-word":"2aK","@stdlib/number-float16-base-from-word":"2aL","@stdlib/number/float16/base/to-binary-string":"2aM","@stdlib/number-float16-base-to-binary-string":"2aN","@stdlib/number/float16/base/to-word":"2aO","@stdlib/number-float16-base-to-word":"2aP","@stdlib/object/any-in-by":"2aQ","@stdlib/object-any-in-by":"2aR","@stdlib/object/any-own-by":"2aS","@stdlib/object-any-own-by":"2aT","@stdlib/object/move-property":"2aU","@stdlib/object-move-property":"2aV","@stdlib/object/none-own-by":"2aW","@stdlib/object-none-own-by":"2aX","@stdlib/object/some-own-by":"2aY","@stdlib/object-some-own-by":"2aZ","@stdlib/stats/base/ndarray/dcumaxabs":"2aa","@stdlib/stats-base-ndarray-dcumaxabs":"2ab","@stdlib/stats/base/ndarray/dcuminabs":"2ac","@stdlib/stats-base-ndarray-dcuminabs":"2ad","@stdlib/stats/base/ndarray/dmaxabssorted":"2ae","@stdlib/stats-base-ndarray-dmaxabssorted":"2af","@stdlib/stats/base/ndarray/dmeanors":"2ag","@stdlib/stats-base-ndarray-dmeanors":"2ah","@stdlib/stats/base/ndarray/dmeanpn":"2ai","@stdlib/stats-base-ndarray-dmeanpn":"2aj","@stdlib/stats/base/ndarray/dmeanpw":"2ak","@stdlib/stats-base-ndarray-dmeanpw":"2al","@stdlib/stats/base/ndarray/dmeanwd":"2am","@stdlib/stats-base-ndarray-dmeanwd":"2an","@stdlib/stats/base/ndarray/dmediansorted":"2ao","@stdlib/stats-base-ndarray-dmediansorted":"2ap","@stdlib/stats/base/ndarray/dmidrange":"2aq","@stdlib/stats-base-ndarray-dmidrange":"2ar","@stdlib/stats/base/ndarray/dmskmax":"2as","@stdlib/stats-base-ndarray-dmskmax":"2at","@stdlib/stats/base/ndarray/dmskmin":"2au","@stdlib/stats-base-ndarray-dmskmin":"2av","@stdlib/stats/base/ndarray/dmskrange":"2aw","@stdlib/stats-base-ndarray-dmskrange":"2ax","@stdlib/stats/base/ndarray/dnanmeanors":"2ay","@stdlib/stats-base-ndarray-dnanmeanors":"2az","@stdlib/stats/base/ndarray/dnanmeanpn":"2b0","@stdlib/stats-base-ndarray-dnanmeanpn":"2b1","@stdlib/stats/base/ndarray/dnanmeanpw":"2b2","@stdlib/stats-base-ndarray-dnanmeanpw":"2b3","@stdlib/stats/base/ndarray/dnanmeanwd":"2b4","@stdlib/stats-base-ndarray-dnanmeanwd":"2b5","@stdlib/stats/base/ndarray/dnanmskmax":"2b6","@stdlib/stats-base-ndarray-dnanmskmax":"2b7","@stdlib/stats/base/ndarray/dnanmskmin":"2b8","@stdlib/stats-base-ndarray-dnanmskmin":"2b9","@stdlib/stats/base/ndarray/dnanmskrange":"2bA","@stdlib/stats-base-ndarray-dnanmskrange":"2bB","@stdlib/stats/base/ndarray/mskrange":"2bC","@stdlib/stats-base-ndarray-mskrange":"2bD","@stdlib/stats/base/ndarray/nanmax-by":"2bE","@stdlib/stats-base-ndarray-nanmax-by":"2bF","@stdlib/stats/base/ndarray/nanmeanors":"2bG","@stdlib/stats-base-ndarray-nanmeanors":"2bH","@stdlib/stats/base/ndarray/nanmeanpn":"2bI","@stdlib/stats-base-ndarray-nanmeanpn":"2bJ","@stdlib/stats/base/ndarray/nanmeanwd":"2bK","@stdlib/stats-base-ndarray-nanmeanwd":"2bL","@stdlib/stats/base/ndarray/nanmin-by":"2bM","@stdlib/stats-base-ndarray-nanmin-by":"2bN","@stdlib/stats/base/ndarray/nanmskmax":"2bO","@stdlib/stats-base-ndarray-nanmskmax":"2bP","@stdlib/stats/base/ndarray/nanmskmin":"2bQ","@stdlib/stats-base-ndarray-nanmskmin":"2bR","@stdlib/stats/base/ndarray/nanmskrange":"2bS","@stdlib/stats-base-ndarray-nanmskrange":"2bT","@stdlib/stats/base/ndarray/nanrange-by":"2bU","@stdlib/stats-base-ndarray-nanrange-by":"2bV","@stdlib/stats/base/ndarray/nanrange":"2bW","@stdlib/stats-base-ndarray-nanrange":"2bX","@stdlib/stats/base/ndarray/sdsmean":"2bY","@stdlib/stats-base-ndarray-sdsmean":"2bZ","@stdlib/stats/base/ndarray/sdsmeanors":"2ba","@stdlib/stats-base-ndarray-sdsmeanors":"2bb","@stdlib/stats/base/ndarray/sdsnanmeanors":"2bc","@stdlib/stats-base-ndarray-sdsnanmeanors":"2bd","@stdlib/stats/base/ndarray/smeankbn":"2be","@stdlib/stats-base-ndarray-smeankbn":"2bf","@stdlib/stats/base/ndarray/smeankbn2":"2bg","@stdlib/stats-base-ndarray-smeankbn2":"2bh","@stdlib/stats/base/ndarray/smeanli":"2bi","@stdlib/stats-base-ndarray-smeanli":"2bj","@stdlib/stats/base/ndarray/smeanlipw":"2bk","@stdlib/stats-base-ndarray-smeanlipw":"2bl","@stdlib/stats/base/ndarray/smeanors":"2bm","@stdlib/stats-base-ndarray-smeanors":"2bn","@stdlib/stats/base/ndarray/smeanpn":"2bo","@stdlib/stats-base-ndarray-smeanpn":"2bp","@stdlib/stats/base/ndarray/smeanpw":"2bq","@stdlib/stats-base-ndarray-smeanpw":"2br","@stdlib/stats/base/ndarray/smeanwd":"2bs","@stdlib/stats-base-ndarray-smeanwd":"2bt","@stdlib/stats/base/ndarray/smediansorted":"2bu","@stdlib/stats-base-ndarray-smediansorted":"2bv","@stdlib/stats/base/ndarray/smidrange":"2bw","@stdlib/stats-base-ndarray-smidrange":"2bx","@stdlib/stats/base/ndarray/smskmax":"2by","@stdlib/stats-base-ndarray-smskmax":"2bz","@stdlib/stats/base/ndarray/smskmin":"2c0","@stdlib/stats-base-ndarray-smskmin":"2c1","@stdlib/stats/base/ndarray/smskrange":"2c2","@stdlib/stats-base-ndarray-smskrange":"2c3","@stdlib/stats/base/ndarray/snanmeanors":"2c4","@stdlib/stats-base-ndarray-snanmeanors":"2c5","@stdlib/stats/base/ndarray/snanmeanpn":"2c6","@stdlib/stats-base-ndarray-snanmeanpn":"2c7","@stdlib/stats/base/ndarray/snanmeanwd":"2c8","@stdlib/stats-base-ndarray-snanmeanwd":"2c9","@stdlib/stats/base/ndarray/snanmskmax":"2cA","@stdlib/stats-base-ndarray-snanmskmax":"2cB","@stdlib/stats/base/ndarray/snanmskmin":"2cC","@stdlib/stats-base-ndarray-snanmskmin":"2cD","@stdlib/stats/base/ndarray/snanmskrange":"2cE","@stdlib/stats-base-ndarray-snanmskrange":"2cF","@stdlib/stats/maxsorted":"2cG","@stdlib/stats-maxsorted":"2cH","@stdlib/stats/meankbn":"2cI","@stdlib/stats-meankbn":"2cJ","@stdlib/stats/meankbn2":"2cK","@stdlib/stats-meankbn2":"2cL","@stdlib/stats/meanors":"2cM","@stdlib/stats-meanors":"2cN","@stdlib/stats/meanpn":"2cO","@stdlib/stats-meanpn":"2cP","@stdlib/stats/meanpw":"2cQ","@stdlib/stats-meanpw":"2cR","@stdlib/stats/meanwd":"2cS","@stdlib/stats-meanwd":"2cT","@stdlib/stats/mediansorted":"2cU","@stdlib/stats-mediansorted":"2cV","@stdlib/stats/minsorted":"2cW","@stdlib/stats-minsorted":"2cX","@stdlib/stats/nanmax-by":"2cY","@stdlib/stats-nanmax-by":"2cZ","@stdlib/stats/nanmaxabs":"2ca","@stdlib/stats-nanmaxabs":"2cb","@stdlib/stats/nanmeanors":"2cc","@stdlib/stats-nanmeanors":"2cd","@stdlib/stats/nanmeanpn":"2ce","@stdlib/stats-nanmeanpn":"2cf","@stdlib/stats/nanmeanwd":"2cg","@stdlib/stats-nanmeanwd":"2ch","@stdlib/stats/nanmin-by":"2ci","@stdlib/stats-nanmin-by":"2cj","@stdlib/stats/nanminabs":"2ck","@stdlib/stats-nanminabs":"2cl","@stdlib/stats/range-by":"2cm","@stdlib/stats-range-by":"2cn","@stdlib/array/base/assert/has-almost-same-values":"2co","@stdlib/array-base-assert-has-almost-same-values":"2cp","@stdlib/array/base/falses":"2cq","@stdlib/array-base-falses":"2cr","@stdlib/array/base/to-filled":"2cs","@stdlib/array-base-to-filled":"2ct","@stdlib/array/base/trues":"2cu","@stdlib/array-base-trues":"2cv","@stdlib/array/float16":"2cw","@stdlib/array-float16":"2cx","@stdlib/array/nulls":"2cy","@stdlib/array-nulls":"2cz","@stdlib/assert/is-almost-same-array":"2d0","@stdlib/assert-is-almost-same-array":"2d1","@stdlib/assert/is-almost-same-complex128array":"2d2","@stdlib/assert-is-almost-same-complex128array":"2d3","@stdlib/assert/is-almost-same-complex64array":"2d4","@stdlib/assert-is-almost-same-complex64array":"2d5","@stdlib/assert/is-almost-same-float32array":"2d6","@stdlib/assert-is-almost-same-float32array":"2d7","@stdlib/assert/is-almost-same-float64array":"2d8","@stdlib/assert-is-almost-same-float64array":"2d9","@stdlib/assert/is-almost-same-value":"2dA","@stdlib/assert-is-almost-same-value":"2dB","@stdlib/assert/is-ndarray-descriptor":"2dC","@stdlib/assert-is-ndarray-descriptor":"2dD","@stdlib/blas/base/cgemv":"2dE","@stdlib/blas-base-cgemv":"2dF","@stdlib/blas/base/dzasum":"2dG","@stdlib/blas-base-dzasum":"2dH","@stdlib/blas/base/ndarray/caxpy":"2dI","@stdlib/blas-base-ndarray-caxpy":"2dJ","@stdlib/blas/base/ndarray/ccopy":"2dK","@stdlib/blas-base-ndarray-ccopy":"2dL","@stdlib/blas/base/ndarray/cscal":"2dM","@stdlib/blas-base-ndarray-cscal":"2dN","@stdlib/blas/base/ndarray/csscal":"2dO","@stdlib/blas-base-ndarray-csscal":"2dP","@stdlib/blas/base/ndarray/cswap":"2dQ","@stdlib/blas-base-ndarray-cswap":"2dR","@stdlib/blas/base/ndarray/dasum":"2dS","@stdlib/blas-base-ndarray-dasum":"2dT","@stdlib/blas/base/ndarray/daxpy":"2dU","@stdlib/blas-base-ndarray-daxpy":"2dV","@stdlib/blas/base/ndarray/dcopy":"2dW","@stdlib/blas-base-ndarray-dcopy":"2dX","@stdlib/blas/base/ndarray/dnrm2":"2dY","@stdlib/blas-base-ndarray-dnrm2":"2dZ","@stdlib/blas/base/ndarray/dscal":"2da","@stdlib/blas-base-ndarray-dscal":"2db","@stdlib/blas/base/ndarray/dsdot":"2dc","@stdlib/blas-base-ndarray-dsdot":"2dd","@stdlib/blas/base/ndarray/dswap":"2de","@stdlib/blas-base-ndarray-dswap":"2df","@stdlib/blas/base/ndarray/dzasum":"2dg","@stdlib/blas-base-ndarray-dzasum":"2dh","@stdlib/blas/base/ndarray/dznrm2":"2di","@stdlib/blas-base-ndarray-dznrm2":"2dj","@stdlib/blas/base/ndarray/gasum":"2dk","@stdlib/blas-base-ndarray-gasum":"2dl","@stdlib/blas/base/ndarray/gaxpy":"2dm","@stdlib/blas-base-ndarray-gaxpy":"2dn","@stdlib/blas/base/ndarray/gcopy":"2do","@stdlib/blas-base-ndarray-gcopy":"2dp","@stdlib/blas/base/ndarray/gnrm2":"2dq","@stdlib/blas-base-ndarray-gnrm2":"2dr","@stdlib/blas/base/ndarray/gscal":"2ds","@stdlib/blas-base-ndarray-gscal":"2dt","@stdlib/blas/base/ndarray/gswap":"2du","@stdlib/blas-base-ndarray-gswap":"2dv","@stdlib/blas/base/ndarray/idamax":"2dw","@stdlib/blas-base-ndarray-idamax":"2dx","@stdlib/blas/base/ndarray":"2dy","@stdlib/blas-base-ndarray":"2dz","@stdlib/blas/base/ndarray/sasum":"2e0","@stdlib/blas-base-ndarray-sasum":"2e1","@stdlib/blas/base/ndarray/saxpy":"2e2","@stdlib/blas-base-ndarray-saxpy":"2e3","@stdlib/blas/base/ndarray/scasum":"2e4","@stdlib/blas-base-ndarray-scasum":"2e5","@stdlib/blas/base/ndarray/scnrm2":"2e6","@stdlib/blas-base-ndarray-scnrm2":"2e7","@stdlib/blas/base/ndarray/scopy":"2e8","@stdlib/blas-base-ndarray-scopy":"2e9","@stdlib/blas/base/ndarray/sdsdot":"2eA","@stdlib/blas-base-ndarray-sdsdot":"2eB","@stdlib/blas/base/ndarray/snrm2":"2eC","@stdlib/blas-base-ndarray-snrm2":"2eD","@stdlib/blas/base/ndarray/sscal":"2eE","@stdlib/blas-base-ndarray-sscal":"2eF","@stdlib/blas/base/ndarray/sswap":"2eG","@stdlib/blas-base-ndarray-sswap":"2eH","@stdlib/blas/base/ndarray/zaxpy":"2eI","@stdlib/blas-base-ndarray-zaxpy":"2eJ","@stdlib/blas/base/ndarray/zcopy":"2eK","@stdlib/blas-base-ndarray-zcopy":"2eL","@stdlib/blas/base/ndarray/zdscal":"2eM","@stdlib/blas-base-ndarray-zdscal":"2eN","@stdlib/blas/base/ndarray/zscal":"2eO","@stdlib/blas-base-ndarray-zscal":"2eP","@stdlib/blas/base/ndarray/zswap":"2eQ","@stdlib/blas-base-ndarray-zswap":"2eR","@stdlib/blas/ext/base/capx":"2eS","@stdlib/blas-ext-base-capx":"2eT","@stdlib/blas/ext/base/caxpb":"2eU","@stdlib/blas-ext-base-caxpb":"2eV","@stdlib/blas/ext/base/cindex-of-column":"2eW","@stdlib/blas-ext-base-cindex-of-column":"2eX","@stdlib/blas/ext/base/cindex-of-row":"2eY","@stdlib/blas-ext-base-cindex-of-row":"2eZ","@stdlib/blas/ext/base/cindex-of":"2ea","@stdlib/blas-ext-base-cindex-of":"2eb","@stdlib/blas/ext/base/clast-index-of-row":"2ec","@stdlib/blas-ext-base-clast-index-of-row":"2ed","@stdlib/blas/ext/base/cone-to":"2ee","@stdlib/blas-ext-base-cone-to":"2ef","@stdlib/blas/ext/base/cunitspace":"2eg","@stdlib/blas-ext-base-cunitspace":"2eh","@stdlib/blas/ext/base/cwhere":"2ei","@stdlib/blas-ext-base-cwhere":"2ej","@stdlib/blas/ext/base/cxsa":"2ek","@stdlib/blas-ext-base-cxsa":"2el","@stdlib/blas/ext/base/czero-to":"2em","@stdlib/blas-ext-base-czero-to":"2en","@stdlib/blas/ext/base/daxpb":"2eo","@stdlib/blas-ext-base-daxpb":"2ep","@stdlib/blas/ext/base/dcartesian-power":"2eq","@stdlib/blas-ext-base-dcartesian-power":"2er","@stdlib/blas/ext/base/dcartesian-product":"2es","@stdlib/blas-ext-base-dcartesian-product":"2et","@stdlib/blas/ext/base/dcartesian-square":"2eu","@stdlib/blas-ext-base-dcartesian-square":"2ev","@stdlib/blas/ext/base/dcircshift":"2ew","@stdlib/blas-ext-base-dcircshift":"2ex","@stdlib/blas/ext/base/ddiff":"2ey","@stdlib/blas-ext-base-ddiff":"2ez","@stdlib/blas/ext/base/dediff":"2f0","@stdlib/blas-ext-base-dediff":"2f1","@stdlib/blas/ext/base/dindex-of-column":"2f2","@stdlib/blas-ext-base-dindex-of-column":"2f3","@stdlib/blas/ext/base/dindex-of-row":"2f4","@stdlib/blas-ext-base-dindex-of-row":"2f5","@stdlib/blas/ext/base/dlast-index-of-row":"2f6","@stdlib/blas-ext-base-dlast-index-of-row":"2f7","@stdlib/blas/ext/base/dmskrev":"2f8","@stdlib/blas-ext-base-dmskrev":"2f9","@stdlib/blas/ext/base/dnancount":"2fA","@stdlib/blas-ext-base-dnancount":"2fB","@stdlib/blas/ext/base/done-to":"2fC","@stdlib/blas-ext-base-done-to":"2fD","@stdlib/blas/ext/base/drss":"2fE","@stdlib/blas-ext-base-drss":"2fF","@stdlib/blas/ext/base/drssbl":"2fG","@stdlib/blas-ext-base-drssbl":"2fH","@stdlib/blas/ext/base/drsskbn":"2fI","@stdlib/blas-ext-base-drsskbn":"2fJ","@stdlib/blas/ext/base/dsort":"2fK","@stdlib/blas-ext-base-dsort":"2fL","@stdlib/blas/ext/base/dunitspace":"2fM","@stdlib/blas-ext-base-dunitspace":"2fN","@stdlib/blas/ext/base/dvander":"2fO","@stdlib/blas-ext-base-dvander":"2fP","@stdlib/blas/ext/base/dwhere":"2fQ","@stdlib/blas-ext-base-dwhere":"2fR","@stdlib/blas/ext/base/dxsa":"2fS","@stdlib/blas-ext-base-dxsa":"2fT","@stdlib/blas/ext/base/dzero-to":"2fU","@stdlib/blas-ext-base-dzero-to":"2fV","@stdlib/blas/ext/base/gaxpb":"2fW","@stdlib/blas-ext-base-gaxpb":"2fX","@stdlib/blas/ext/base/gaxpby":"2fY","@stdlib/blas-ext-base-gaxpby":"2fZ","@stdlib/blas/ext/base/gcartesian-power":"2fa","@stdlib/blas-ext-base-gcartesian-power":"2fb","@stdlib/blas/ext/base/gcartesian-square":"2fc","@stdlib/blas-ext-base-gcartesian-square":"2fd","@stdlib/blas/ext/base/gcircshift":"2fe","@stdlib/blas-ext-base-gcircshift":"2ff","@stdlib/blas/ext/base/gconjoin":"2fg","@stdlib/blas-ext-base-gconjoin":"2fh","@stdlib/blas/ext/base/gcuevery":"2fi","@stdlib/blas-ext-base-gcuevery":"2fj","@stdlib/blas/ext/base/gcunone":"2fk","@stdlib/blas-ext-base-gcunone":"2fl","@stdlib/blas/ext/base/gdiff":"2fm","@stdlib/blas-ext-base-gdiff":"2fn","@stdlib/blas/ext/base/gindex-of-column":"2fo","@stdlib/blas-ext-base-gindex-of-column":"2fp","@stdlib/blas/ext/base/gjoin-between":"2fq","@stdlib/blas-ext-base-gjoin-between":"2fr","@stdlib/blas/ext/base/glast-index-of-row":"2fs","@stdlib/blas-ext-base-glast-index-of-row":"2ft","@stdlib/blas/ext/base/gmskrev":"2fu","@stdlib/blas-ext-base-gmskrev":"2fv","@stdlib/blas/ext/base/gnancount":"2fw","@stdlib/blas-ext-base-gnancount":"2fx","@stdlib/blas/ext/base/gone-to":"2fy","@stdlib/blas-ext-base-gone-to":"2fz","@stdlib/blas/ext/base/greplicate":"2g0","@stdlib/blas-ext-base-greplicate":"2g1","@stdlib/blas/ext/base/gsort":"2g2","@stdlib/blas-ext-base-gsort":"2g3","@stdlib/blas/ext/base/gunitspace":"2g4","@stdlib/blas-ext-base-gunitspace":"2g5","@stdlib/blas/ext/base/gvander":"2g6","@stdlib/blas-ext-base-gvander":"2g7","@stdlib/blas/ext/base/gwhere":"2g8","@stdlib/blas-ext-base-gwhere":"2g9","@stdlib/blas/ext/base/gxsa":"2gA","@stdlib/blas-ext-base-gxsa":"2gB","@stdlib/blas/ext/base/gzero-to":"2gC","@stdlib/blas-ext-base-gzero-to":"2gD","@stdlib/blas/ext/base/ndarray/caxpb":"2gE","@stdlib/blas-ext-base-ndarray-caxpb":"2gF","@stdlib/blas/ext/base/ndarray/cindex-of":"2gG","@stdlib/blas-ext-base-ndarray-cindex-of":"2gH","@stdlib/blas/ext/base/ndarray/cone-to":"2gI","@stdlib/blas-ext-base-ndarray-cone-to":"2gJ","@stdlib/blas/ext/base/ndarray/cunitspace":"2gK","@stdlib/blas-ext-base-ndarray-cunitspace":"2gL","@stdlib/blas/ext/base/ndarray/cxsa":"2gM","@stdlib/blas-ext-base-ndarray-cxsa":"2gN","@stdlib/blas/ext/base/ndarray/czero-to":"2gO","@stdlib/blas-ext-base-ndarray-czero-to":"2gP","@stdlib/blas/ext/base/ndarray/daxpb":"2gQ","@stdlib/blas-ext-base-ndarray-daxpb":"2gR","@stdlib/blas/ext/base/ndarray/dcircshift":"2gS","@stdlib/blas-ext-base-ndarray-dcircshift":"2gT","@stdlib/blas/ext/base/ndarray/dcusumors":"2gU","@stdlib/blas-ext-base-ndarray-dcusumors":"2gV","@stdlib/blas/ext/base/ndarray/dcusumpw":"2gW","@stdlib/blas-ext-base-ndarray-dcusumpw":"2gX","@stdlib/blas/ext/base/ndarray/dnansum":"2gY","@stdlib/blas-ext-base-ndarray-dnansum":"2gZ","@stdlib/blas/ext/base/ndarray/dnansumkbn":"2ga","@stdlib/blas-ext-base-ndarray-dnansumkbn":"2gb","@stdlib/blas/ext/base/ndarray/dnansumkbn2":"2gc","@stdlib/blas-ext-base-ndarray-dnansumkbn2":"2gd","@stdlib/blas/ext/base/ndarray/dnansumors":"2ge","@stdlib/blas-ext-base-ndarray-dnansumors":"2gf","@stdlib/blas/ext/base/ndarray/dnansumpw":"2gg","@stdlib/blas-ext-base-ndarray-dnansumpw":"2gh","@stdlib/blas/ext/base/ndarray/done-to":"2gi","@stdlib/blas-ext-base-ndarray-done-to":"2gj","@stdlib/blas/ext/base/ndarray/dsort":"2gk","@stdlib/blas-ext-base-ndarray-dsort":"2gl","@stdlib/blas/ext/base/ndarray/dsortins":"2gm","@stdlib/blas-ext-base-ndarray-dsortins":"2gn","@stdlib/blas/ext/base/ndarray/dsortsh":"2go","@stdlib/blas-ext-base-ndarray-dsortsh":"2gp","@stdlib/blas/ext/base/ndarray/dsumors":"2gq","@stdlib/blas-ext-base-ndarray-dsumors":"2gr","@stdlib/blas/ext/base/ndarray/dsumpw":"2gs","@stdlib/blas-ext-base-ndarray-dsumpw":"2gt","@stdlib/blas/ext/base/ndarray/dunitspace":"2gu","@stdlib/blas-ext-base-ndarray-dunitspace":"2gv","@stdlib/blas/ext/base/ndarray/dxsa":"2gw","@stdlib/blas-ext-base-ndarray-dxsa":"2gx","@stdlib/blas/ext/base/ndarray/dzero-to":"2gy","@stdlib/blas-ext-base-ndarray-dzero-to":"2gz","@stdlib/blas/ext/base/ndarray/gaxpb":"2h0","@stdlib/blas-ext-base-ndarray-gaxpb":"2h1","@stdlib/blas/ext/base/ndarray/gcircshift":"2h2","@stdlib/blas-ext-base-ndarray-gcircshift":"2h3","@stdlib/blas/ext/base/ndarray/gcusumkbn":"2h4","@stdlib/blas-ext-base-ndarray-gcusumkbn":"2h5","@stdlib/blas/ext/base/ndarray/gcusumkbn2":"2h6","@stdlib/blas-ext-base-ndarray-gcusumkbn2":"2h7","@stdlib/blas/ext/base/ndarray/gcusumors":"2h8","@stdlib/blas-ext-base-ndarray-gcusumors":"2h9","@stdlib/blas/ext/base/ndarray/gcusumpw":"2hA","@stdlib/blas-ext-base-ndarray-gcusumpw":"2hB","@stdlib/blas/ext/base/ndarray/gjoin-between":"2hC","@stdlib/blas-ext-base-ndarray-gjoin-between":"2hD","@stdlib/blas/ext/base/ndarray/gnansum":"2hE","@stdlib/blas-ext-base-ndarray-gnansum":"2hF","@stdlib/blas/ext/base/ndarray/gnansumkbn":"2hG","@stdlib/blas-ext-base-ndarray-gnansumkbn":"2hH","@stdlib/blas/ext/base/ndarray/gnansumkbn2":"2hI","@stdlib/blas-ext-base-ndarray-gnansumkbn2":"2hJ","@stdlib/blas/ext/base/ndarray/gnansumors":"2hK","@stdlib/blas-ext-base-ndarray-gnansumors":"2hL","@stdlib/blas/ext/base/ndarray/gnansumpw":"2hM","@stdlib/blas-ext-base-ndarray-gnansumpw":"2hN","@stdlib/blas/ext/base/ndarray/gone-to":"2hO","@stdlib/blas-ext-base-ndarray-gone-to":"2hP","@stdlib/blas/ext/base/ndarray/gsort":"2hQ","@stdlib/blas-ext-base-ndarray-gsort":"2hR","@stdlib/blas/ext/base/ndarray/gsumors":"2hS","@stdlib/blas-ext-base-ndarray-gsumors":"2hT","@stdlib/blas/ext/base/ndarray/gsumpw":"2hU","@stdlib/blas-ext-base-ndarray-gsumpw":"2hV","@stdlib/blas/ext/base/ndarray/gunitspace":"2hW","@stdlib/blas-ext-base-ndarray-gunitspace":"2hX","@stdlib/blas/ext/base/ndarray/gzero-to":"2hY","@stdlib/blas-ext-base-ndarray-gzero-to":"2hZ","@stdlib/blas/ext/base/ndarray/saxpb":"2ha","@stdlib/blas-ext-base-ndarray-saxpb":"2hb","@stdlib/blas/ext/base/ndarray/scircshift":"2hc","@stdlib/blas-ext-base-ndarray-scircshift":"2hd","@stdlib/blas/ext/base/ndarray/scusumors":"2he","@stdlib/blas-ext-base-ndarray-scusumors":"2hf","@stdlib/blas/ext/base/ndarray/snansum":"2hg","@stdlib/blas-ext-base-ndarray-snansum":"2hh","@stdlib/blas/ext/base/ndarray/snansumkbn":"2hi","@stdlib/blas-ext-base-ndarray-snansumkbn":"2hj","@stdlib/blas/ext/base/ndarray/snansumkbn2":"2hk","@stdlib/blas-ext-base-ndarray-snansumkbn2":"2hl","@stdlib/blas/ext/base/ndarray/snansumors":"2hm","@stdlib/blas-ext-base-ndarray-snansumors":"2hn","@stdlib/blas/ext/base/ndarray/snansumpw":"2ho","@stdlib/blas-ext-base-ndarray-snansumpw":"2hp","@stdlib/blas/ext/base/ndarray/sone-to":"2hq","@stdlib/blas-ext-base-ndarray-sone-to":"2hr","@stdlib/blas/ext/base/ndarray/ssort":"2hs","@stdlib/blas-ext-base-ndarray-ssort":"2ht","@stdlib/blas/ext/base/ndarray/ssumors":"2hu","@stdlib/blas-ext-base-ndarray-ssumors":"2hv","@stdlib/blas/ext/base/ndarray/ssumpw":"2hw","@stdlib/blas-ext-base-ndarray-ssumpw":"2hx","@stdlib/blas/ext/base/ndarray/sunitspace":"2hy","@stdlib/blas-ext-base-ndarray-sunitspace":"2hz","@stdlib/blas/ext/base/ndarray/sxsa":"2i0","@stdlib/blas-ext-base-ndarray-sxsa":"2i1","@stdlib/blas/ext/base/ndarray/szero-to":"2i2","@stdlib/blas-ext-base-ndarray-szero-to":"2i3","@stdlib/blas/ext/base/ndarray/zaxpb":"2i4","@stdlib/blas-ext-base-ndarray-zaxpb":"2i5","@stdlib/blas/ext/base/ndarray/zindex-of":"2i6","@stdlib/blas-ext-base-ndarray-zindex-of":"2i7","@stdlib/blas/ext/base/ndarray/zone-to":"2i8","@stdlib/blas-ext-base-ndarray-zone-to":"2i9","@stdlib/blas/ext/base/ndarray/zunitspace":"2iA","@stdlib/blas-ext-base-ndarray-zunitspace":"2iB","@stdlib/blas/ext/base/ndarray/zzero-to":"2iC","@stdlib/blas-ext-base-ndarray-zzero-to":"2iD","@stdlib/blas/ext/base/saxpb":"2iE","@stdlib/blas-ext-base-saxpb":"2iF","@stdlib/blas/ext/base/scartesian-power":"2iG","@stdlib/blas-ext-base-scartesian-power":"2iH","@stdlib/blas/ext/base/scartesian-square":"2iI","@stdlib/blas-ext-base-scartesian-square":"2iJ","@stdlib/blas/ext/base/scircshift":"2iK","@stdlib/blas-ext-base-scircshift":"2iL","@stdlib/blas/ext/base/sdiff":"2iM","@stdlib/blas-ext-base-sdiff":"2iN","@stdlib/blas/ext/base/sediff":"2iO","@stdlib/blas-ext-base-sediff":"2iP","@stdlib/blas/ext/base/sindex-of-column":"2iQ","@stdlib/blas-ext-base-sindex-of-column":"2iR","@stdlib/blas/ext/base/sindex-of-row":"2iS","@stdlib/blas-ext-base-sindex-of-row":"2iT","@stdlib/blas/ext/base/slast-index-of-row":"2iU","@stdlib/blas-ext-base-slast-index-of-row":"2iV","@stdlib/blas/ext/base/snancount":"2iW","@stdlib/blas-ext-base-snancount":"2iX","@stdlib/blas/ext/base/sone-to":"2iY","@stdlib/blas-ext-base-sone-to":"2iZ","@stdlib/blas/ext/base/ssort":"2ia","@stdlib/blas-ext-base-ssort":"2ib","@stdlib/blas/ext/base/sunitspace":"2ic","@stdlib/blas-ext-base-sunitspace":"2id","@stdlib/blas/ext/base/svander":"2ie","@stdlib/blas-ext-base-svander":"2if","@stdlib/blas/ext/base/swhere":"2ig","@stdlib/blas-ext-base-swhere":"2ih","@stdlib/blas/ext/base/sxsa":"2ii","@stdlib/blas-ext-base-sxsa":"2ij","@stdlib/blas/ext/base/szero-to":"2ik","@stdlib/blas-ext-base-szero-to":"2il","@stdlib/blas/ext/base/zapx":"2im","@stdlib/blas-ext-base-zapx":"2in","@stdlib/blas/ext/base/zaxpb":"2io","@stdlib/blas-ext-base-zaxpb":"2ip","@stdlib/blas/ext/base/zdiff":"2iq","@stdlib/blas-ext-base-zdiff":"2ir","@stdlib/blas/ext/base/zindex-of-column":"2is","@stdlib/blas-ext-base-zindex-of-column":"2it","@stdlib/blas/ext/base/zindex-of-row":"2iu","@stdlib/blas-ext-base-zindex-of-row":"2iv","@stdlib/blas/ext/base/zindex-of":"2iw","@stdlib/blas-ext-base-zindex-of":"2ix","@stdlib/blas/ext/base/zlast-index-of-row":"2iy","@stdlib/blas-ext-base-zlast-index-of-row":"2iz","@stdlib/blas/ext/base/znancount":"2j0","@stdlib/blas-ext-base-znancount":"2j1","@stdlib/blas/ext/base/zone-to":"2j2","@stdlib/blas-ext-base-zone-to":"2j3","@stdlib/blas/ext/base/zunitspace":"2j4","@stdlib/blas-ext-base-zunitspace":"2j5","@stdlib/blas/ext/base/zwhere":"2j6","@stdlib/blas-ext-base-zwhere":"2j7","@stdlib/blas/ext/base/zxsa":"2j8","@stdlib/blas-ext-base-zxsa":"2j9","@stdlib/blas/ext/base/zzero-to":"2jA","@stdlib/blas-ext-base-zzero-to":"2jB","@stdlib/blas/ext/circshift":"2jC","@stdlib/blas-ext-circshift":"2jD","@stdlib/blas/ext/join":"2jE","@stdlib/blas-ext-join":"2jF","@stdlib/blas/ext/one-to":"2jG","@stdlib/blas-ext-one-to":"2jH","@stdlib/blas/ext/sort":"2jI","@stdlib/blas-ext-sort":"2jJ","@stdlib/blas/ext/to-sorted":"2jK","@stdlib/blas-ext-to-sorted":"2jL","@stdlib/blas/ext/unitspace":"2jM","@stdlib/blas-ext-unitspace":"2jN","@stdlib/blas/ext/zero-to":"2jO","@stdlib/blas-ext-zero-to":"2jP","@stdlib/complex/base/assert/is-almost-equal":"2jQ","@stdlib/complex-base-assert-is-almost-equal":"2jR","@stdlib/complex/base/assert/is-almost-same-value":"2jS","@stdlib/complex-base-assert-is-almost-same-value":"2jT","@stdlib/complex/float32/base/add3":"2jU","@stdlib/complex-float32-base-add3":"2jV","@stdlib/complex/float32/base/assert/is-almost-same-value":"2jW","@stdlib/complex-float32-base-assert-is-almost-same-value":"2jX","@stdlib/complex/float64/base/add3":"2jY","@stdlib/complex-float64-base-add3":"2jZ","@stdlib/complex/float64/base/assert/is-almost-same-value":"2ja","@stdlib/complex-float64-base-assert-is-almost-same-value":"2jb","@stdlib/constants/float16/abs-mask":"2jc","@stdlib/constants-float16-abs-mask":"2jd","@stdlib/constants/float16/half-ln-two":"2je","@stdlib/constants-float16-half-ln-two":"2jf","@stdlib/constants/float16/ln-half":"2jg","@stdlib/constants-float16-ln-half":"2jh","@stdlib/constants/float16/ln-pi":"2ji","@stdlib/constants-float16-ln-pi":"2jj","@stdlib/constants/float16/ln-sqrt-two-pi":"2jk","@stdlib/constants-float16-ln-sqrt-two-pi":"2jl","@stdlib/constants/float16/ln-ten":"2jm","@stdlib/constants-float16-ln-ten":"2jn","@stdlib/constants/float16/ln-two-pi":"2jo","@stdlib/constants-float16-ln-two-pi":"2jp","@stdlib/constants/float16/ln-two":"2jq","@stdlib/constants-float16-ln-two":"2jr","@stdlib/constants/float16/log10-e":"2js","@stdlib/constants-float16-log10-e":"2jt","@stdlib/constants/float16/log2-e":"2ju","@stdlib/constants-float16-log2-e":"2jv","@stdlib/constants/float16/max-base10-exponent-subnormal":"2jw","@stdlib/constants-float16-max-base10-exponent-subnormal":"2jx","@stdlib/constants/float16/max-base10-exponent":"2jy","@stdlib/constants-float16-max-base10-exponent":"2jz","@stdlib/constants/float16/max-base2-exponent-subnormal":"2k0","@stdlib/constants-float16-max-base2-exponent-subnormal":"2k1","@stdlib/constants/float16/min-base10-exponent-subnormal":"2k2","@stdlib/constants-float16-min-base10-exponent-subnormal":"2k3","@stdlib/constants/float16/min-base10-exponent":"2k4","@stdlib/constants-float16-min-base10-exponent":"2k5","@stdlib/constants/float16/min-base2-exponent-subnormal":"2k6","@stdlib/constants-float16-min-base2-exponent-subnormal":"2k7","@stdlib/constants/float16/nan":"2k8","@stdlib/constants-float16-nan":"2k9","@stdlib/constants/float16/sqrt-half":"2kA","@stdlib/constants-float16-sqrt-half":"2kB","@stdlib/constants/float16/sqrt-three":"2kC","@stdlib/constants-float16-sqrt-three":"2kD","@stdlib/constants/float16/sqrt-two-pi":"2kE","@stdlib/constants-float16-sqrt-two-pi":"2kF","@stdlib/constants/float32/num-exponent-bits":"2kG","@stdlib/constants-float32-num-exponent-bits":"2kH","@stdlib/fft/base/fftpack/decompose":"2kI","@stdlib/fft-base-fftpack-decompose":"2kJ","@stdlib/math/base/special/acoshf":"2kK","@stdlib/math-base-special-acoshf":"2kL","@stdlib/math/base/special/acothf":"2kM","@stdlib/math-base-special-acothf":"2kN","@stdlib/math/base/special/asinhf":"2kO","@stdlib/math-base-special-asinhf":"2kP","@stdlib/math/base/special/atanhf":"2kQ","@stdlib/math-base-special-atanhf":"2kR","@stdlib/math/base/special/coshf":"2kS","@stdlib/math-base-special-coshf":"2kT","@stdlib/math/base/special/fast/atanhf":"2kU","@stdlib/math-base-special-fast-atanhf":"2kV","@stdlib/math/base/special/floor2f":"2kW","@stdlib/math-base-special-floor2f":"2kX","@stdlib/math/base/special/floornf":"2kY","@stdlib/math-base-special-floornf":"2kZ","@stdlib/math/base/special/roundnf":"2ka","@stdlib/math-base-special-roundnf":"2kb","@stdlib/math/base/special/sincosdf":"2kc","@stdlib/math-base-special-sincosdf":"2kd","@stdlib/math/base/tools/chebyshev-series":"2ke","@stdlib/math-base-tools-chebyshev-series":"2kf","@stdlib/math/base/tools/chebyshev-seriesf":"2kg","@stdlib/math-base-tools-chebyshev-seriesf":"2kh","@stdlib/ml/base/kmeans/algorithm-enum2str":"2ki","@stdlib/ml-base-kmeans-algorithm-enum2str":"2kj","@stdlib/ml/base/kmeans/algorithm-resolve-enum":"2kk","@stdlib/ml-base-kmeans-algorithm-resolve-enum":"2kl","@stdlib/ml/base/kmeans/algorithm-resolve-str":"2km","@stdlib/ml-base-kmeans-algorithm-resolve-str":"2kn","@stdlib/ml/base/kmeans/algorithm-str2enum":"2ko","@stdlib/ml-base-kmeans-algorithm-str2enum":"2kp","@stdlib/ml/base/kmeans/algorithms":"2kq","@stdlib/ml-base-kmeans-algorithms":"2kr","@stdlib/ml/base/kmeans/metric-enum2str":"2ks","@stdlib/ml-base-kmeans-metric-enum2str":"2kt","@stdlib/ml/base/kmeans/metric-resolve-enum":"2ku","@stdlib/ml-base-kmeans-metric-resolve-enum":"2kv","@stdlib/ml/base/kmeans/metric-resolve-str":"2kw","@stdlib/ml-base-kmeans-metric-resolve-str":"2kx","@stdlib/ml/base/kmeans/metric-str2enum":"2ky","@stdlib/ml-base-kmeans-metric-str2enum":"2kz","@stdlib/ml/base/kmeans/metrics":"2l0","@stdlib/ml-base-kmeans-metrics":"2l1","@stdlib/napi/argv-booleanarray":"2l2","@stdlib/napi-argv-booleanarray":"2l3","@stdlib/napi/argv-strided-booleanarray":"2l4","@stdlib/napi-argv-strided-booleanarray":"2l5","@stdlib/napi/argv-strided-booleanarray2d":"2l6","@stdlib/napi-argv-strided-booleanarray2d":"2l7","@stdlib/napi/argv-uint64":"2l8","@stdlib/napi-argv-uint64":"2l9","@stdlib/napi/create-int64":"2lA","@stdlib/napi-create-int64":"2lB","@stdlib/napi/create-uint64":"2lC","@stdlib/napi-create-uint64":"2lD","@stdlib/ndarray/base/append-singleton-dimensions":"2lE","@stdlib/ndarray-base-append-singleton-dimensions":"2lF","@stdlib/ndarray/base/assign-scalar":"2lG","@stdlib/ndarray-base-assign-scalar":"2lH","@stdlib/ndarray/base/atleast1d":"2lI","@stdlib/ndarray-base-atleast1d":"2lJ","@stdlib/ndarray/base/atleast2d":"2lK","@stdlib/ndarray-base-atleast2d":"2lL","@stdlib/ndarray/base/atleast3d":"2lM","@stdlib/ndarray-base-atleast3d":"2lN","@stdlib/ndarray/base/atleastnd":"2lO","@stdlib/ndarray-base-atleastnd":"2lP","@stdlib/ndarray/base/broadcast-scalar-like":"2lQ","@stdlib/ndarray-base-broadcast-scalar-like":"2lR","@stdlib/ndarray/base/consensus-order":"2lS","@stdlib/ndarray-base-consensus-order":"2lT","@stdlib/ndarray/base/descriptor":"2lU","@stdlib/ndarray-base-descriptor":"2lV","@stdlib/ndarray/base/diagonal":"2lW","@stdlib/ndarray-base-diagonal":"2lX","@stdlib/ndarray/base/dtypes2strings":"2lY","@stdlib/ndarray-base-dtypes2strings":"2lZ","@stdlib/ndarray/base/falses-like":"2la","@stdlib/ndarray-base-falses-like":"2lb","@stdlib/ndarray/base/falses":"2lc","@stdlib/ndarray-base-falses":"2ld","@stdlib/ndarray/base/fill-diagonal":"2le","@stdlib/ndarray-base-fill-diagonal":"2lf","@stdlib/ndarray/base/full-by":"2lg","@stdlib/ndarray-base-full-by":"2lh","@stdlib/ndarray/base/full":"2li","@stdlib/ndarray-base-full":"2lj","@stdlib/ndarray/base/maybe-broadcast-array-except-dimensions":"2lk","@stdlib/ndarray-base-maybe-broadcast-array-except-dimensions":"2ll","@stdlib/ndarray/base/nans-like":"2lm","@stdlib/ndarray-base-nans-like":"2ln","@stdlib/ndarray/base/nans":"2lo","@stdlib/ndarray-base-nans":"2lp","@stdlib/ndarray/base/ndarraylike2descriptor":"2lq","@stdlib/ndarray-base-ndarraylike2descriptor":"2lr","@stdlib/ndarray/base/nulls-like":"2ls","@stdlib/ndarray-base-nulls-like":"2lt","@stdlib/ndarray/base/nulls":"2lu","@stdlib/ndarray-base-nulls":"2lv","@stdlib/ndarray/base/ones-like":"2lw","@stdlib/ndarray-base-ones-like":"2lx","@stdlib/ndarray/base/ones":"2ly","@stdlib/ndarray-base-ones":"2lz","@stdlib/ndarray/base/output-order":"2m0","@stdlib/ndarray-base-output-order":"2m1","@stdlib/ndarray/base/quaternary-loop-interchange-order":"2m2","@stdlib/ndarray-base-quaternary-loop-interchange-order":"2m3","@stdlib/ndarray/base/quaternary-tiling-block-size":"2m4","@stdlib/ndarray-base-quaternary-tiling-block-size":"2m5","@stdlib/ndarray/base/quinary-loop-interchange-order":"2m6","@stdlib/ndarray-base-quinary-loop-interchange-order":"2m7","@stdlib/ndarray/base/quinary-tiling-block-size":"2m8","@stdlib/ndarray-base-quinary-tiling-block-size":"2m9","@stdlib/ndarray/base/reinterpret-boolean":"2mA","@stdlib/ndarray-base-reinterpret-boolean":"2mB","@stdlib/ndarray/base/reinterpret-complex":"2mC","@stdlib/ndarray-base-reinterpret-complex":"2mD","@stdlib/ndarray/base/reinterpret-complex128":"2mE","@stdlib/ndarray-base-reinterpret-complex128":"2mF","@stdlib/ndarray/base/reinterpret-complex64":"2mG","@stdlib/ndarray-base-reinterpret-complex64":"2mH","@stdlib/ndarray/base/reverse-dimensions":"2mI","@stdlib/ndarray-base-reverse-dimensions":"2mJ","@stdlib/ndarray/base/rot180":"2mK","@stdlib/ndarray-base-rot180":"2mL","@stdlib/ndarray/base/rot90":"2mM","@stdlib/ndarray-base-rot90":"2mN","@stdlib/ndarray/base/rotl90":"2mO","@stdlib/ndarray-base-rotl90":"2mP","@stdlib/ndarray/base/rotr90":"2mQ","@stdlib/ndarray-base-rotr90":"2mR","@stdlib/ndarray/base/ternary-loop-interchange-order":"2mS","@stdlib/ndarray-base-ternary-loop-interchange-order":"2mT","@stdlib/ndarray/base/ternary-output-dtype":"2mU","@stdlib/ndarray-base-ternary-output-dtype":"2mV","@stdlib/ndarray/base/ternary-tiling-block-size":"2mW","@stdlib/ndarray-base-ternary-tiling-block-size":"2mX","@stdlib/ndarray/base/ternary":"2mY","@stdlib/ndarray-base-ternary":"2mZ","@stdlib/ndarray/base/tile":"2ma","@stdlib/ndarray-base-tile":"2mb","@stdlib/ndarray/base/tiling-block-size":"2mc","@stdlib/ndarray-base-tiling-block-size":"2md","@stdlib/ndarray/base/to-reversed-dimension":"2me","@stdlib/ndarray-base-to-reversed-dimension":"2mf","@stdlib/ndarray/base/to-reversed-dimensions":"2mg","@stdlib/ndarray-base-to-reversed-dimensions":"2mh","@stdlib/ndarray/base/to-rot180":"2mi","@stdlib/ndarray-base-to-rot180":"2mj","@stdlib/ndarray/base/to-rot90":"2mk","@stdlib/ndarray-base-to-rot90":"2ml","@stdlib/ndarray/base/to-rotl90":"2mm","@stdlib/ndarray-base-to-rotl90":"2mn","@stdlib/ndarray/base/to-rotr90":"2mo","@stdlib/ndarray-base-to-rotr90":"2mp","@stdlib/ndarray/base/to-transposed":"2mq","@stdlib/ndarray-base-to-transposed":"2mr","@stdlib/ndarray/base/to-unflattened":"2ms","@stdlib/ndarray-base-to-unflattened":"2mt","@stdlib/ndarray/base/trues-like":"2mu","@stdlib/ndarray-base-trues-like":"2mv","@stdlib/ndarray/base/trues":"2mw","@stdlib/ndarray-base-trues":"2mx","@stdlib/ndarray/base/unflatten-shape":"2my","@stdlib/ndarray-base-unflatten-shape":"2mz","@stdlib/ndarray/base/unflatten":"2n0","@stdlib/ndarray-base-unflatten":"2n1","@stdlib/ndarray/broadcast-scalar-like":"2n2","@stdlib/ndarray-broadcast-scalar-like":"2n3","@stdlib/ndarray/broadcast-scalar":"2n4","@stdlib/ndarray-broadcast-scalar":"2n5","@stdlib/ndarray/colcat":"2n6","@stdlib/ndarray-colcat":"2n7","@stdlib/ndarray/diagonal":"2n8","@stdlib/ndarray-diagonal":"2n9","@stdlib/ndarray/every-by":"2nA","@stdlib/ndarray-every-by":"2nB","@stdlib/ndarray/falses-like":"2nC","@stdlib/ndarray-falses-like":"2nD","@stdlib/ndarray/falses":"2nE","@stdlib/ndarray-falses":"2nF","@stdlib/ndarray/find-last":"2nG","@stdlib/ndarray-find-last":"2nH","@stdlib/ndarray/first":"2nI","@stdlib/ndarray-first":"2nJ","@stdlib/ndarray/flatten-from-by":"2nK","@stdlib/ndarray-flatten-from-by":"2nL","@stdlib/ndarray/from-scalar-like":"2nM","@stdlib/ndarray-from-scalar-like":"2nN","@stdlib/ndarray/hconcat":"2nO","@stdlib/ndarray-hconcat":"2nP","@stdlib/ndarray/last":"2nQ","@stdlib/ndarray-last":"2nR","@stdlib/ndarray/nans-like":"2nS","@stdlib/ndarray-nans-like":"2nT","@stdlib/ndarray/nans":"2nU","@stdlib/ndarray-nans":"2nV","@stdlib/ndarray/ndarraylike2scalar":"2nW","@stdlib/ndarray-ndarraylike2scalar":"2nX","@stdlib/ndarray/ones-like":"2nY","@stdlib/ndarray-ones-like":"2nZ","@stdlib/ndarray/ones":"2na","@stdlib/ndarray-ones":"2nb","@stdlib/ndarray/prepend-singleton-dimensions":"2nc","@stdlib/ndarray-prepend-singleton-dimensions":"2nd","@stdlib/ndarray/push":"2ne","@stdlib/ndarray-push":"2nf","@stdlib/ndarray/remove-singleton-dimensions":"2ng","@stdlib/ndarray-remove-singleton-dimensions":"2nh","@stdlib/ndarray/reverse-dimensions":"2ni","@stdlib/ndarray-reverse-dimensions":"2nj","@stdlib/ndarray/rot180":"2nk","@stdlib/ndarray-rot180":"2nl","@stdlib/ndarray/rot90":"2nm","@stdlib/ndarray-rot90":"2nn","@stdlib/ndarray/rotl90":"2no","@stdlib/ndarray-rotl90":"2np","@stdlib/ndarray/rotr90":"2nq","@stdlib/ndarray-rotr90":"2nr","@stdlib/ndarray/rowcat":"2ns","@stdlib/ndarray-rowcat":"2nt","@stdlib/ndarray/spread-dimensions":"2nu","@stdlib/ndarray-spread-dimensions":"2nv","@stdlib/ndarray/to-flippedlr":"2nw","@stdlib/ndarray-to-flippedlr":"2nx","@stdlib/ndarray/to-flippedud":"2ny","@stdlib/ndarray-to-flippedud":"2nz","@stdlib/ndarray/to-locale-string":"2o0","@stdlib/ndarray-to-locale-string":"2o1","@stdlib/ndarray/to-reversed-dimension":"2o2","@stdlib/ndarray-to-reversed-dimension":"2o3","@stdlib/ndarray/to-reversed-dimensions":"2o4","@stdlib/ndarray-to-reversed-dimensions":"2o5","@stdlib/ndarray/to-rot180":"2o6","@stdlib/ndarray-to-rot180":"2o7","@stdlib/ndarray/to-rot90":"2o8","@stdlib/ndarray-to-rot90":"2o9","@stdlib/ndarray/to-rotl90":"2oA","@stdlib/ndarray-to-rotl90":"2oB","@stdlib/ndarray/to-rotr90":"2oC","@stdlib/ndarray-to-rotr90":"2oD","@stdlib/ndarray/to-string":"2oE","@stdlib/ndarray-to-string":"2oF","@stdlib/ndarray/to-transposed":"2oG","@stdlib/ndarray-to-transposed":"2oH","@stdlib/ndarray/to-unflattened":"2oI","@stdlib/ndarray-to-unflattened":"2oJ","@stdlib/ndarray/transpose":"2oK","@stdlib/ndarray-transpose":"2oL","@stdlib/ndarray/trues-like":"2oM","@stdlib/ndarray-trues-like":"2oN","@stdlib/ndarray/trues":"2oO","@stdlib/ndarray-trues":"2oP","@stdlib/ndarray/unflatten":"2oQ","@stdlib/ndarray-unflatten":"2oR","@stdlib/ndarray/unshift":"2oS","@stdlib/ndarray-unshift":"2oT","@stdlib/ndarray/vconcat":"2oU","@stdlib/ndarray-vconcat":"2oV","@stdlib/number/float16/base/assert/is-almost-equal":"2oW","@stdlib/number-float16-base-assert-is-almost-equal":"2oX","@stdlib/number/float16/base/assert/is-nan":"2oY","@stdlib/number-float16-base-assert-is-nan":"2oZ","@stdlib/number/float16/base/assert/is-negative-zero":"2oa","@stdlib/number-float16-base-assert-is-negative-zero":"2ob","@stdlib/number/float16/base/assert/is-positive-zero":"2oc","@stdlib/number-float16-base-assert-is-positive-zero":"2od","@stdlib/number/float16/base/from-binary-string":"2oe","@stdlib/number-float16-base-from-binary-string":"2of","@stdlib/number/float16/base/mul":"2og","@stdlib/number-float16-base-mul":"2oh","@stdlib/number/float16/base/signbit":"2oi","@stdlib/number-float16-base-signbit":"2oj","@stdlib/number/float16/base/significand":"2ok","@stdlib/number-float16-base-significand":"2ol","@stdlib/number/float16/base/sub":"2om","@stdlib/number-float16-base-sub":"2on","@stdlib/number/float16/base/to-float32":"2oo","@stdlib/number-float16-base-to-float32":"2op","@stdlib/number/float16/base/to-float64":"2oq","@stdlib/number-float16-base-to-float64":"2or","@stdlib/number/float16/base/ulp-difference":"2os","@stdlib/number-float16-base-ulp-difference":"2ot","@stdlib/number/float16/ctor":"2ou","@stdlib/number-float16-ctor":"2ov","@stdlib/number/float32/base/assert/is-almost-same-value":"2ow","@stdlib/number-float32-base-assert-is-almost-same-value":"2ox","@stdlib/number/float32/base/to-float16":"2oy","@stdlib/number-float32-base-to-float16":"2oz","@stdlib/number/float64/base/assert/is-almost-same-value":"2p0","@stdlib/number-float64-base-assert-is-almost-same-value":"2p1","@stdlib/number/float64/base/sub3":"2p2","@stdlib/number-float64-base-sub3":"2p3","@stdlib/number/uint64/ctor":"2p4","@stdlib/number-uint64-ctor":"2p5","@stdlib/object/bifurcate-in":"2p6","@stdlib/object-bifurcate-in":"2p7","@stdlib/object/bifurcate-own":"2p8","@stdlib/object-bifurcate-own":"2p9","@stdlib/object/capitalize-keys":"2pA","@stdlib/object-capitalize-keys":"2pB","@stdlib/object/common-keys-in":"2pC","@stdlib/object-common-keys-in":"2pD","@stdlib/object/common-keys":"2pE","@stdlib/object-common-keys":"2pF","@stdlib/object/deep-get":"2pG","@stdlib/object-deep-get":"2pH","@stdlib/object/deep-set":"2pI","@stdlib/object-deep-set":"2pJ","@stdlib/object/for-in":"2pK","@stdlib/object-for-in":"2pL","@stdlib/object/for-own":"2pM","@stdlib/object-for-own":"2pN","@stdlib/object/inverse-by":"2pO","@stdlib/object-inverse-by":"2pP","@stdlib/object/inverse":"2pQ","@stdlib/object-inverse":"2pR","@stdlib/object/lowercase-keys":"2pS","@stdlib/object-lowercase-keys":"2pT","@stdlib/object/uncapitalize-keys":"2pU","@stdlib/object-uncapitalize-keys":"2pV","@stdlib/object/uppercase-keys":"2pW","@stdlib/object-uppercase-keys":"2pX","@stdlib/random/arcsine":"2pY","@stdlib/random-arcsine":"2pZ","@stdlib/random/bernoulli":"2pa","@stdlib/random-bernoulli":"2pb","@stdlib/random/beta":"2pc","@stdlib/random-beta":"2pd","@stdlib/random/betaprime":"2pe","@stdlib/random-betaprime":"2pf","@stdlib/random/binomial":"2pg","@stdlib/random-binomial":"2ph","@stdlib/random/cauchy":"2pi","@stdlib/random-cauchy":"2pj","@stdlib/random/chi":"2pk","@stdlib/random-chi":"2pl","@stdlib/random/chisquare":"2pm","@stdlib/random-chisquare":"2pn","@stdlib/random/cosine":"2po","@stdlib/random-cosine":"2pp","@stdlib/random/discrete-uniform":"2pq","@stdlib/random-discrete-uniform":"2pr","@stdlib/random/erlang":"2ps","@stdlib/random-erlang":"2pt","@stdlib/random/f":"2pu","@stdlib/random-f":"2pv","@stdlib/random/frechet":"2pw","@stdlib/random-frechet":"2px","@stdlib/random/gamma":"2py","@stdlib/random-gamma":"2pz","@stdlib/random/geometric":"2q0","@stdlib/random-geometric":"2q1","@stdlib/random/gumbel":"2q2","@stdlib/random-gumbel":"2q3","@stdlib/random/hypergeometric":"2q4","@stdlib/random-hypergeometric":"2q5","@stdlib/random/invgamma":"2q6","@stdlib/random-invgamma":"2q7","@stdlib/random/kumaraswamy":"2q8","@stdlib/random-kumaraswamy":"2q9","@stdlib/random/laplace":"2qA","@stdlib/random-laplace":"2qB","@stdlib/random/levy":"2qC","@stdlib/random-levy":"2qD","@stdlib/random/logistic":"2qE","@stdlib/random-logistic":"2qF","@stdlib/random/lognormal":"2qG","@stdlib/random-lognormal":"2qH","@stdlib/random/negative-binomial":"2qI","@stdlib/random-negative-binomial":"2qJ","@stdlib/random/normal":"2qK","@stdlib/random-normal":"2qL","@stdlib/random/pareto-type1":"2qM","@stdlib/random-pareto-type1":"2qN","@stdlib/random/poisson":"2qO","@stdlib/random-poisson":"2qP","@stdlib/random/rayleigh":"2qQ","@stdlib/random-rayleigh":"2qR","@stdlib/random/t":"2qS","@stdlib/random-t":"2qT","@stdlib/random/tools/ternary-factory":"2qU","@stdlib/random-tools-ternary-factory":"2qV","@stdlib/random/tools/ternary":"2qW","@stdlib/random-tools-ternary":"2qX","@stdlib/random/triangular":"2qY","@stdlib/random-triangular":"2qZ","@stdlib/random/weibull":"2qa","@stdlib/random-weibull":"2qb","@stdlib/stats/array/midrange-by":"2qc","@stdlib/stats-array-midrange-by":"2qd","@stdlib/stats/array/midrange":"2qe","@stdlib/stats-array-midrange":"2qf","@stdlib/stats/array/mskmaxabs":"2qg","@stdlib/stats-array-mskmaxabs":"2qh","@stdlib/stats/array/mskmidrange":"2qi","@stdlib/stats-array-mskmidrange":"2qj","@stdlib/stats/array/mskminabs":"2qk","@stdlib/stats-array-mskminabs":"2ql","@stdlib/stats/array/nanmidrange-by":"2qm","@stdlib/stats-array-nanmidrange-by":"2qn","@stdlib/stats/array/nanmidrange":"2qo","@stdlib/stats-array-nanmidrange":"2qp","@stdlib/stats/array/nanmskmidrange":"2qq","@stdlib/stats-array-nanmskmidrange":"2qr","@stdlib/stats/array/rangeabs":"2qs","@stdlib/stats-array-rangeabs":"2qt","@stdlib/stats/base/dists/halfnormal/entropy":"2qu","@stdlib/stats-base-dists-halfnormal-entropy":"2qv","@stdlib/stats/base/dists/halfnormal/kurtosis":"2qw","@stdlib/stats-base-dists-halfnormal-kurtosis":"2qx","@stdlib/stats/base/dists/halfnormal/logpdf":"2qy","@stdlib/stats-base-dists-halfnormal-logpdf":"2qz","@stdlib/stats/base/dists/halfnormal/mean":"2r0","@stdlib/stats-base-dists-halfnormal-mean":"2r1","@stdlib/stats/base/dists/halfnormal/mode":"2r2","@stdlib/stats-base-dists-halfnormal-mode":"2r3","@stdlib/stats/base/dists/halfnormal/stdev":"2r4","@stdlib/stats-base-dists-halfnormal-stdev":"2r5","@stdlib/stats/base/dists/wald/kurtosis":"2r6","@stdlib/stats-base-dists-wald-kurtosis":"2r7","@stdlib/stats/base/dists/wald/mean":"2r8","@stdlib/stats-base-dists-wald-mean":"2r9","@stdlib/stats/base/dists/wald/mode":"2rA","@stdlib/stats-base-dists-wald-mode":"2rB","@stdlib/stats/base/dists/wald/pdf":"2rC","@stdlib/stats-base-dists-wald-pdf":"2rD","@stdlib/stats/base/dists/wald/skewness":"2rE","@stdlib/stats-base-dists-wald-skewness":"2rF","@stdlib/stats/base/dists/wald/variance":"2rG","@stdlib/stats-base-dists-wald-variance":"2rH","@stdlib/stats/base/ndarray/dmeanstdev":"2rI","@stdlib/stats-base-ndarray-dmeanstdev":"2rJ","@stdlib/stats/base/ndarray/dmskmaxabs":"2rK","@stdlib/stats-base-ndarray-dmskmaxabs":"2rL","@stdlib/stats/base/ndarray/dnanmidrange":"2rM","@stdlib/stats-base-ndarray-dnanmidrange":"2rN","@stdlib/stats/base/ndarray/dnanmskmaxabs":"2rO","@stdlib/stats-base-ndarray-dnanmskmaxabs":"2rP","@stdlib/stats/base/ndarray/dnanmskminabs":"2rQ","@stdlib/stats-base-ndarray-dnanmskminabs":"2rR","@stdlib/stats/base/ndarray/dnanrange":"2rS","@stdlib/stats-base-ndarray-dnanrange":"2rT","@stdlib/stats/base/ndarray/dnanrangeabs":"2rU","@stdlib/stats-base-ndarray-dnanrangeabs":"2rV","@stdlib/stats/base/ndarray/dnanstdev":"2rW","@stdlib/stats-base-ndarray-dnanstdev":"2rX","@stdlib/stats/base/ndarray/dnanstdevch":"2rY","@stdlib/stats-base-ndarray-dnanstdevch":"2rZ","@stdlib/stats/base/ndarray/dnanstdevpn":"2ra","@stdlib/stats-base-ndarray-dnanstdevpn":"2rb","@stdlib/stats/base/ndarray/drangeabs":"2rc","@stdlib/stats-base-ndarray-drangeabs":"2rd","@stdlib/stats/base/ndarray/dstdev":"2re","@stdlib/stats-base-ndarray-dstdev":"2rf","@stdlib/stats/base/ndarray/dstdevch":"2rg","@stdlib/stats-base-ndarray-dstdevch":"2rh","@stdlib/stats/base/ndarray/dstdevpn":"2ri","@stdlib/stats-base-ndarray-dstdevpn":"2rj","@stdlib/stats/base/ndarray/dstdevtk":"2rk","@stdlib/stats-base-ndarray-dstdevtk":"2rl","@stdlib/stats/base/ndarray/dstdevwd":"2rm","@stdlib/stats-base-ndarray-dstdevwd":"2rn","@stdlib/stats/base/ndarray/dstdevyc":"2ro","@stdlib/stats-base-ndarray-dstdevyc":"2rp","@stdlib/stats/base/ndarray/dvariance":"2rq","@stdlib/stats-base-ndarray-dvariance":"2rr","@stdlib/stats/base/ndarray/midrange-by":"2rs","@stdlib/stats-base-ndarray-midrange-by":"2rt","@stdlib/stats/base/ndarray/midrange":"2ru","@stdlib/stats-base-ndarray-midrange":"2rv","@stdlib/stats/base/ndarray/midrangeabs":"2rw","@stdlib/stats-base-ndarray-midrangeabs":"2rx","@stdlib/stats/base/ndarray/mskmaxabs":"2ry","@stdlib/stats-base-ndarray-mskmaxabs":"2rz","@stdlib/stats/base/ndarray/mskmidrange":"2s0","@stdlib/stats-base-ndarray-mskmidrange":"2s1","@stdlib/stats/base/ndarray/nanmidrange-by":"2s2","@stdlib/stats-base-ndarray-nanmidrange-by":"2s3","@stdlib/stats/base/ndarray/nanmidrange":"2s4","@stdlib/stats-base-ndarray-nanmidrange":"2s5","@stdlib/stats/base/ndarray/nanmskmidrange":"2s6","@stdlib/stats-base-ndarray-nanmskmidrange":"2s7","@stdlib/stats/base/ndarray/rangeabs":"2s8","@stdlib/stats-base-ndarray-rangeabs":"2s9","@stdlib/stats/base/ndarray/smskmaxabs":"2sA","@stdlib/stats-base-ndarray-smskmaxabs":"2sB","@stdlib/stats/base/ndarray/smskmidrange":"2sC","@stdlib/stats-base-ndarray-smskmidrange":"2sD","@stdlib/stats/base/ndarray/snanmidrange":"2sE","@stdlib/stats-base-ndarray-snanmidrange":"2sF","@stdlib/stats/base/ndarray/snanmskmaxabs":"2sG","@stdlib/stats-base-ndarray-snanmskmaxabs":"2sH","@stdlib/stats/base/ndarray/snanmskmidrange":"2sI","@stdlib/stats-base-ndarray-snanmskmidrange":"2sJ","@stdlib/stats/base/ndarray/snanmskminabs":"2sK","@stdlib/stats-base-ndarray-snanmskminabs":"2sL","@stdlib/stats/base/ndarray/snanrange":"2sM","@stdlib/stats-base-ndarray-snanrange":"2sN","@stdlib/stats/base/ndarray/srangeabs":"2sO","@stdlib/stats-base-ndarray-srangeabs":"2sP","@stdlib/stats/base/ndarray/sstdev":"2sQ","@stdlib/stats-base-ndarray-sstdev":"2sR","@stdlib/stats/base/ndarray/sstdevch":"2sS","@stdlib/stats-base-ndarray-sstdevch":"2sT","@stdlib/stats/base/ndarray/sstdevpn":"2sU","@stdlib/stats-base-ndarray-sstdevpn":"2sV","@stdlib/stats/base/ndarray/sstdevtk":"2sW","@stdlib/stats-base-ndarray-sstdevtk":"2sX","@stdlib/stats/base/ndarray/sstdevwd":"2sY","@stdlib/stats-base-ndarray-sstdevwd":"2sZ","@stdlib/stats/base/ndarray/sstdevyc":"2sa","@stdlib/stats-base-ndarray-sstdevyc":"2sb","@stdlib/stats/base/ndarray/stdev":"2sc","@stdlib/stats-base-ndarray-stdev":"2sd","@stdlib/stats/base/ndarray/stdevch":"2se","@stdlib/stats-base-ndarray-stdevch":"2sf","@stdlib/stats/base/ndarray/stdevpn":"2sg","@stdlib/stats-base-ndarray-stdevpn":"2sh","@stdlib/stats/base/ndarray/stdevtk":"2si","@stdlib/stats-base-ndarray-stdevtk":"2sj","@stdlib/stats/base/ndarray/stdevwd":"2sk","@stdlib/stats-base-ndarray-stdevwd":"2sl","@stdlib/stats/base/ndarray/stdevyc":"2sm","@stdlib/stats-base-ndarray-stdevyc":"2sn","@stdlib/stats/base/ndarray/svariance":"2so","@stdlib/stats-base-ndarray-svariance":"2sp","@stdlib/stats/base/ndarray/svariancech":"2sq","@stdlib/stats-base-ndarray-svariancech":"2sr","@stdlib/stats/base/ndarray/svariancepn":"2ss","@stdlib/stats-base-ndarray-svariancepn":"2st","@stdlib/stats/base/ndarray/svariancetk":"2su","@stdlib/stats-base-ndarray-svariancetk":"2sv","@stdlib/stats/base/ndarray/svariancewd":"2sw","@stdlib/stats-base-ndarray-svariancewd":"2sx","@stdlib/stats/base/ndarray/svarianceyc":"2sy","@stdlib/stats-base-ndarray-svarianceyc":"2sz","@stdlib/stats/base/ndarray/variance":"2t0","@stdlib/stats-base-ndarray-variance":"2t1","@stdlib/stats/base/ndarray/variancech":"2t2","@stdlib/stats-base-ndarray-variancech":"2t3","@stdlib/stats/base/ndarray/variancepn":"2t4","@stdlib/stats-base-ndarray-variancepn":"2t5","@stdlib/stats/base/ndarray/variancetk":"2t6","@stdlib/stats-base-ndarray-variancetk":"2t7","@stdlib/stats/base/ndarray/variancewd":"2t8","@stdlib/stats-base-ndarray-variancewd":"2t9","@stdlib/stats/base/ndarray/varianceyc":"2tA","@stdlib/stats-base-ndarray-varianceyc":"2tB","@stdlib/stats/incr/nanmmape":"2tC","@stdlib/stats-incr-nanmmape":"2tD","@stdlib/stats/incr/nanmmse":"2tE","@stdlib/stats-incr-nanmmse":"2tF","@stdlib/stats/incr/nanvariance":"2tG","@stdlib/stats-incr-nanvariance":"2tH","@stdlib/stats/midrange-by":"2tI","@stdlib/stats-midrange-by":"2tJ","@stdlib/stats/midrange":"2tK","@stdlib/stats-midrange":"2tL","@stdlib/stats/nanmidrange-by":"2tM","@stdlib/stats-nanmidrange-by":"2tN","@stdlib/stats/nanmidrange":"2tO","@stdlib/stats-nanmidrange":"2tP","@stdlib/stats/nanrange-by":"2tQ","@stdlib/stats-nanrange-by":"2tR","@stdlib/stats/nanrange":"2tS","@stdlib/stats-nanrange":"2tT","@stdlib/stats/rangeabs":"2tU","@stdlib/stats-rangeabs":"2tV","@stdlib/stats/strided/distances/dchebyshev":"2tW","@stdlib/stats-strided-distances-dchebyshev":"2tX","@stdlib/stats/strided/distances/dcityblock":"2tY","@stdlib/stats-strided-distances-dcityblock":"2tZ","@stdlib/stats/strided/distances/dcorrelation":"2ta","@stdlib/stats-strided-distances-dcorrelation":"2tb","@stdlib/stats/strided/distances/dcosine-distance":"2tc","@stdlib/stats-strided-distances-dcosine-distance":"2td","@stdlib/stats/strided/distances/dcosine-similarity":"2te","@stdlib/stats-strided-distances-dcosine-similarity":"2tf","@stdlib/stats/strided/distances/deuclidean":"2tg","@stdlib/stats-strided-distances-deuclidean":"2th","@stdlib/stats/strided/distances/dminkowski":"2ti","@stdlib/stats-strided-distances-dminkowski":"2tj","@stdlib/stats/strided/distances/dsquared-euclidean":"2tk","@stdlib/stats-strided-distances-dsquared-euclidean":"2tl","@stdlib/stats/strided/distances":"2tm","@stdlib/stats-strided-distances":"2tn","@stdlib/stats/strided/dmidrangeabs":"2to","@stdlib/stats-strided-dmidrangeabs":"2tp","@stdlib/stats/strided/dmskmaxabs":"2tq","@stdlib/stats-strided-dmskmaxabs":"2tr","@stdlib/stats/strided/dmskmidrange":"2ts","@stdlib/stats-strided-dmskmidrange":"2tt","@stdlib/stats/strided/dnanmidrange":"2tu","@stdlib/stats-strided-dnanmidrange":"2tv","@stdlib/stats/strided/dnanmskmaxabs":"2tw","@stdlib/stats-strided-dnanmskmaxabs":"2tx","@stdlib/stats/strided/dnanmskmidrange":"2ty","@stdlib/stats-strided-dnanmskmidrange":"2tz","@stdlib/stats/strided/dnanmskminabs":"2u0","@stdlib/stats-strided-dnanmskminabs":"2u1","@stdlib/stats/strided/dnanrangeabs":"2u2","@stdlib/stats-strided-dnanrangeabs":"2u3","@stdlib/stats/strided/dpcorr":"2u4","@stdlib/stats-strided-dpcorr":"2u5","@stdlib/stats/strided/dpcorrwd":"2u6","@stdlib/stats-strided-dpcorrwd":"2u7","@stdlib/stats/strided/drangeabs":"2u8","@stdlib/stats-strided-drangeabs":"2u9","@stdlib/stats/strided/midrange-by":"2uA","@stdlib/stats-strided-midrange-by":"2uB","@stdlib/stats/strided/midrange":"2uC","@stdlib/stats-strided-midrange":"2uD","@stdlib/stats/strided/midrangeabs":"2uE","@stdlib/stats-strided-midrangeabs":"2uF","@stdlib/stats/strided/mskmaxabs":"2uG","@stdlib/stats-strided-mskmaxabs":"2uH","@stdlib/stats/strided/mskmidrange":"2uI","@stdlib/stats-strided-mskmidrange":"2uJ","@stdlib/stats/strided/mskminabs":"2uK","@stdlib/stats-strided-mskminabs":"2uL","@stdlib/stats/strided/nanmidrange-by":"2uM","@stdlib/stats-strided-nanmidrange-by":"2uN","@stdlib/stats/strided/nanmidrange":"2uO","@stdlib/stats-strided-nanmidrange":"2uP","@stdlib/stats/strided/nanmskmidrange":"2uQ","@stdlib/stats-strided-nanmskmidrange":"2uR","@stdlib/stats/strided/nanrangeabs":"2uS","@stdlib/stats-strided-nanrangeabs":"2uT","@stdlib/stats/strided/rangeabs":"2uU","@stdlib/stats-strided-rangeabs":"2uV","@stdlib/stats/strided/smskmaxabs":"2uW","@stdlib/stats-strided-smskmaxabs":"2uX","@stdlib/stats/strided/smskmidrange":"2uY","@stdlib/stats-strided-smskmidrange":"2uZ","@stdlib/stats/strided/snanmidrange":"2ua","@stdlib/stats-strided-snanmidrange":"2ub","@stdlib/stats/strided/snanmskmaxabs":"2uc","@stdlib/stats-strided-snanmskmaxabs":"2ud","@stdlib/stats/strided/snanmskmidrange":"2ue","@stdlib/stats-strided-snanmskmidrange":"2uf","@stdlib/stats/strided/snanmskminabs":"2ug","@stdlib/stats-strided-snanmskminabs":"2uh","@stdlib/stats/strided/srangeabs":"2ui","@stdlib/stats-strided-srangeabs":"2uj","@stdlib/strided/base/reinterpret-float16":"2uk","@stdlib/strided-base-reinterpret-float16":"2ul"} diff --git a/tools/pkg2id/datapackage.json b/tools/pkg2id/datapackage.json deleted file mode 100644 index 0aaff5e..0000000 --- a/tools/pkg2id/datapackage.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "stdlib-pkg2id", - "version": "", - "title": "Standard Library Package Names and Error Identifiers", - "description": "A mapping between standard library package names and error identifier prefixes.", - "resources": [ - { - "name": "stdlib-pkg2id-json", - "title": "Standard Library Package Names and Error Identifiers", - "description": "A mapping from internal as well as standalone standard library package names to error identifier prefixes.", - "format": "json", - "mediatype": "application/json", - "encoding": "UTF-8", - "hash": "", - "path": "./data/internal.json" - }, - { - "name": "stdlib-pkg2id-csv", - "title": "Standard Library Package Names and Error Identifiers", - "description": "A mapping from internal as well as standalone standard library internal package names to error identifier prefixes.", - "format": "csv", - "mediatype": "plain/csv", - "encoding": "UTF-8", - "hash": "", - "path": "./data/internal.csv", - "schema": { - "fields": [ - { - "name": "pkg", - "title": "Package Name", - "description": "Standalone or internal package name.", - "type": "string", - "format": "default" - }, - { - "name": "identifier", - "title": "Identifier", - "description": "Error identifier.", - "type": "string", - "format": "default" - } - ] - } - } - ], - "sources": [], - "keywords": [ - "stdlib", - "namespace", - "identifier", - "error", - "ids", - "package", - "name", - "pkg" - ], - "license": "PDDL-1.0 AND CC0-1.0" -} diff --git a/tools/pkg2id/docs/repl.txt b/tools/pkg2id/docs/repl.txt deleted file mode 100644 index 586f02e..0000000 --- a/tools/pkg2id/docs/repl.txt +++ /dev/null @@ -1,26 +0,0 @@ - -{{alias}}( pkg ) - Returns the error code identifier prefix associated with a specified package - name. - - The function supports both internal and standalone package names. - - Parameters - ---------- - pkg: string - Package name. - - Returns - ------- - out: string|null - Error code identifier prefix. - - Examples - -------- - > var v = {{alias}}( '@stdlib/math/base/special/sin' ) - - > v = {{alias}}( '@stdlib/math-base-special-sin' ) - - - See Also - -------- diff --git a/tools/pkg2id/docs/types/index.d.ts b/tools/pkg2id/docs/types/index.d.ts deleted file mode 100644 index bc919d5..0000000 --- a/tools/pkg2id/docs/types/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -// TypeScript Version: 4.1 - -/** -* Returns an error code identifier prefix associated with a specified package name. -* -* @param pkg - package name -* @returns identifier prefix -* -* @example -* var v = pkg2id( '@stdlib/math/base/special/sin' ); -* // returns '0YK' -*/ -declare function pkg2id( pkg: string ): string | null; - - -// EXPORTS // - -export = pkg2id; diff --git a/tools/pkg2id/docs/types/test.ts b/tools/pkg2id/docs/types/test.ts deleted file mode 100644 index 40cba68..0000000 --- a/tools/pkg2id/docs/types/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -import pkg2id = require( './index' ); - - -// TESTS // - -// The function returns a string or null... -{ - pkg2id( '@stdlib/math/base/special/sin' ); // $ExpectType string | null -} - -// The compiler throws an error if the function is not provided a string... -{ - pkg2id( 5 ); // $ExpectError - pkg2id( true ); // $ExpectError - pkg2id( false ); // $ExpectError - pkg2id( null ); // $ExpectError - pkg2id( undefined ); // $ExpectError - pkg2id( [] ); // $ExpectError - pkg2id( {} ); // $ExpectError - pkg2id( ( x: number ): number => x ); // $ExpectError -} - -// The compiler throws an error if the function is provided an unsupported number of arguments... -{ - pkg2id( '@stdlib/math/base/special/sin', 'beep' ); // $ExpectError -} diff --git a/tools/pkg2id/docs/usage.txt b/tools/pkg2id/docs/usage.txt deleted file mode 100644 index bd3e1e2..0000000 --- a/tools/pkg2id/docs/usage.txt +++ /dev/null @@ -1,7 +0,0 @@ - -Usage: stdlib-pkg2id [options] - -Options: - - -h, --help Print this message. - -V, --version Print the package version. diff --git a/tools/pkg2id/etc/cli_opts.json b/tools/pkg2id/etc/cli_opts.json deleted file mode 100644 index 92119c4..0000000 --- a/tools/pkg2id/etc/cli_opts.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "string": [], - "boolean": [ - "help", - "version" - ], - "alias": { - "help": [ - "h" - ], - "version": [ - "V" - ] - } -} diff --git a/tools/pkg2id/examples/index.js b/tools/pkg2id/examples/index.js deleted file mode 100644 index b9c91f1..0000000 --- a/tools/pkg2id/examples/index.js +++ /dev/null @@ -1,30 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -var formatProdErrorMessage = require( './../../../tools/fmtprodmsg' ); -var pkg2id = require( './../lib' ); - -var prefix = pkg2id( '@stdlib/math/base/special/sin' ); -var errorCode = '23'; -var code = prefix + errorCode; - -var msg = formatProdErrorMessage( code ); -console.log( msg ); -// => diff --git a/tools/pkg2id/lib/index.js b/tools/pkg2id/lib/index.js deleted file mode 100644 index fb4da12..0000000 --- a/tools/pkg2id/lib/index.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -/** -* Return the error code identifier prefix associated with a specified package name. -* -* @module @stdlib/error/tools/pkg2id -* -* @example -* var pkg2id = require( '@stdlib/error/tools/pkg2id' ); -* -* var v = pkg2id( '@stdlib/math/base/special/sin' ); -* // returns '0H5' -*/ - -// MODULES // - -var pkg2id = require( './main.js' ); - - -// EXPORTS // - -module.exports = pkg2id; diff --git a/tools/pkg2id/lib/main.js b/tools/pkg2id/lib/main.js deleted file mode 100644 index 6750a02..0000000 --- a/tools/pkg2id/lib/main.js +++ /dev/null @@ -1,55 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var isString = require( '@stdlib/assert/is-string' ).isPrimitive; -var hasOwnProp = require( '@stdlib/assert/has-own-property' ); -var format = require( '@stdlib/string/format' ); -var PKG_TO_ID = require( './../data/data.json' ); - - -// MAIN // - -/** -* Returns the error code identifier prefix associated with a specified package name. -* -* @param {string} pkg - package name -* @throws {TypeError} must provide a string -* @returns {(string|null)} identifier prefix -* -* @example -* var v = pkg2id( '@stdlib/math/base/special/sin' ); -* // returns '0YK' -*/ -function pkg2id( pkg ) { - if ( !isString( pkg ) ) { - throw new TypeError( format( 'invalid argument. Must provide a string. Value: `%s`.', pkg ) ); - } - if ( hasOwnProp( PKG_TO_ID, pkg ) ) { - return PKG_TO_ID[ pkg ]; - } - return null; -} - - -// EXPORTS // - -module.exports = pkg2id; diff --git a/tools/pkg2id/package.json b/tools/pkg2id/package.json deleted file mode 100644 index fad82f5..0000000 --- a/tools/pkg2id/package.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "name": "@stdlib/error/tools/pkg2id", - "version": "0.0.0", - "description": "Return the error identifier prefix associated with a specified package name.", - "license": "Apache-2.0", - "author": { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - }, - "contributors": [ - { - "name": "The Stdlib Authors", - "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" - } - ], - "bin": { - "stdlib-pkg2id": "./bin/cli" - }, - "main": "./lib", - "directories": { - "benchmark": "./benchmark", - "data": "./data", - "doc": "./docs", - "example": "./examples", - "lib": "./lib", - "scripts": "./scripts", - "test": "./test" - }, - "types": "./docs/types", - "scripts": {}, - "homepage": "https://github.com/stdlib-js/stdlib", - "repository": { - "type": "git", - "url": "git://github.com/stdlib-js/stdlib.git" - }, - "bugs": { - "url": "https://github.com/stdlib-js/stdlib/issues" - }, - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": ">=0.10.0", - "npm": ">2.7.0" - }, - "os": [ - "aix", - "darwin", - "freebsd", - "linux", - "macos", - "openbsd", - "sunos", - "win32", - "windows" - ], - "keywords": [ - "stdlib", - "standard", - "library", - "lib", - "error", - "identifier", - "id", - "package", - "name", - "pkg" - ] -} diff --git a/tools/pkg2id/scripts/build.js b/tools/pkg2id/scripts/build.js deleted file mode 100644 index c4c0b37..0000000 --- a/tools/pkg2id/scripts/build.js +++ /dev/null @@ -1,164 +0,0 @@ -#!/usr/bin/env node - -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var logger = require( 'debug' ); -var writeFile = require( '@stdlib/fs/write-file' ).sync; -var objectKeys = require( '@stdlib/utils/keys' ); -var pkgs = require( '@stdlib/_tools/pkgs/names' ).sync; -var objectValues = require( '@stdlib/utils/values' ); -var replace = require( '@stdlib/string/replace' ); -var data = require( './../data/data.json' ); - - -// VARIABLES // - -var debug = logger( 'error:pkg2id:build' ); - -// Output file paths: -var OUTPUT_JSON = resolve( __dirname, '..', 'data', 'data.json' ); -var OUTPUT_CSV = resolve( __dirname, '..', 'data', 'data.csv' ); - -// Pattern for (internal) packages that will not receive an error identifier: -var RE_IGNORE = /_tools/; - - -// FUNCTIONS // - -/** -* Converts an internal package name to a standalone package name. -* -* @private -* @param {string} name - internal package name -* @returns {string} standalone package name -*/ -function pkg2standalone( name ) { - // Note: every internal package name begins with `@stdlib/`, which is 8 characters long... - return '@stdlib/' + replace( name.substring( 8 ), '/', '-' ); -} - -/** -* Returns the next identifier in the sequence of form `[a-zA-Z0-9]{3}` (in lexicographical order). -* -* @private -* @param {string} [prev=null] - previous identifier -* @returns {string} identifier -*/ -function generateID( prev ) { - var cn; - var i; - var c; - var n; - if ( !prev ) { - return '000'; - } - - // Iterate from the last character in the identifier: - n = prev.length; - for ( i = n-1; i >= 0; i-- ) { - c = prev.charCodeAt( i ); - - // If the last character is a digit between 0 and 8, increment it: - if ( c >= 48 && c <= 56 ) { - cn = String.fromCharCode( c+1 ); - return prev.substring( 0, i ) + cn + prev.substring( i+1 ); - } - // If the last character is equal to 9, set it to 'A': - if ( c === 57 ) { - return prev.substring( 0, i ) + 'A' + prev.substring( i+1 ); - } - // If the last character is a letter between `A` and `Y`, increment it: - if ( c >= 65 && c <= 89 ) { - cn = String.fromCharCode( c+1 ); - return prev.substring( 0, i ) + cn + prev.substring( i+1 ); - } - // If the last character is equal to `Z`, set it to `a`: - if ( c === 90 ) { - return prev.substring( 0, i ) + 'a' + prev.substring( i+1 ); - } - // If the last character is a letter between `a` and `y`, increment it: - if ( c >= 97 && c <= 121 ) { - cn = String.fromCharCode( c+1 ); - return prev.substring( 0, i ) + cn + prev.substring( i+1 ); - } - // If the last character is equal to `z`, set it to `0`: - if ( c === 122 ) { - prev = prev.substring( 0, i ) + '0' + prev.substring( i+1 ); - } - } -} - -/** -* Main execution sequence. -* -* @private -*/ -function main() { - var fopts; - var names; - var last; - var name; - var keys; - var ids; - var csv; - var id; - var i; - - debug( 'Extracting package names and generate identifiers if not yet present...' ); - names = pkgs(); - ids = objectValues( data ); - last = ids.sort()[ ids.length-1 ] || null; - for ( i = 0; i < names.length; i++ ) { - name = names[ i ]; - if ( !RE_IGNORE.test( name ) && !data[ name ] ) { - id = generateID( last ); - data[ name ] = id; - id = generateID( id ); - data[ pkg2standalone( name ) ] = id; - last = id; - } - } - - debug( 'Writing to JSON file...' ); - fopts = { - 'encoding': 'utf8' - }; - writeFile( OUTPUT_JSON, JSON.stringify( data )+'\n', fopts ); - - debug( 'Writing to CSV file...' ); - fopts = { - 'encoding': 'utf8' - }; - keys = objectKeys( data ); - csv = ''; - for ( i = 0; i < keys.length; i++ ) { - csv += '"' + keys[ i ] + '",' + data[ keys[i] ] + '\n'; // Note: ensures trailing newline - } - writeFile( OUTPUT_CSV, csv, fopts ); -} - - -// MAIN // - -main(); diff --git a/tools/pkg2id/test/test.cli.js b/tools/pkg2id/test/test.cli.js deleted file mode 100644 index e93af54..0000000 --- a/tools/pkg2id/test/test.cli.js +++ /dev/null @@ -1,183 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var exec = require( 'child_process' ).exec; -var tape = require( 'tape' ); -var IS_BROWSER = require( '@stdlib/assert/is-browser' ); -var IS_WINDOWS = require( '@stdlib/assert/is-windows' ); -var EXEC_PATH = require( '@stdlib/process/exec-path' ); -var readFileSync = require( '@stdlib/fs/read-file' ).sync; - - -// VARIABLES // - -var RE_ID_FORMAT = /^[a-zA-Z0-9]{3}\r?\n$/; -var fpath = resolve( __dirname, '..', 'bin', 'cli' ); -var opts = { - 'skip': IS_BROWSER || IS_WINDOWS -}; - - -// FIXTURES // - -var PKG_VERSION = require( './../package.json' ).version; - - -// TESTS // - -tape( 'command-line interface', function test( t ) { - t.ok( true, __filename ); - t.end(); -}); - -tape( 'when invoked with a `--help` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '--help' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-h` flag, the command-line interface prints the help text to `stderr`', opts, function test( t ) { - var expected; - var cmd; - - expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), { - 'encoding': 'utf8' - }); - cmd = [ - EXEC_PATH, - fpath, - '-h' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), expected+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `--version` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '--version' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'when invoked with a `-V` flag, the command-line interface prints the version to `stderr`', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '-V' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( stdout.toString(), '', 'does not print to `stdout`' ); - t.strictEqual( stderr.toString(), PKG_VERSION+'\n', 'expected value' ); - } - t.end(); - } -}); - -tape( 'the command-line interface prints an error identifier prefix', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - '@stdlib/math/base/special/sin' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.fail( error.message ); - } else { - t.strictEqual( RE_ID_FORMAT.test( stdout.toString() ), true, 'prints expected value' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - } - t.end(); - } -}); - -tape( 'if unable to resolve an alias, the command-line interface sets a non-zero exit code', opts, function test( t ) { - var cmd = [ - EXEC_PATH, - fpath, - 'fjaldfjadljfeoejreandfljasdfjadsfjs' - ]; - - exec( cmd.join( ' ' ), done ); - - function done( error, stdout, stderr ) { - if ( error ) { - t.pass( error.message ); - t.strictEqual( error.code, 1, 'expected exit code' ); - } - t.strictEqual( stdout.toString(), '', 'does not print to` stdout`' ); - t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' ); - t.end(); - } -}); diff --git a/tools/pkg2id/test/test.js b/tools/pkg2id/test/test.js deleted file mode 100644 index eb01a99..0000000 --- a/tools/pkg2id/test/test.js +++ /dev/null @@ -1,117 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var replace = require( '@stdlib/string/replace' ); -var pkg2id = require( './../lib' ); - - -// VARIABLES // - -var RE_ID_FORMAT = /^[a-zA-Z0-9]+$/; -var PKG_LIST = [ - '@stdlib/math-base-special-sin', - '@stdlib/math-base-special-cos', - '@stdlib/math-base-special-tan', - '@stdlib/math-base-special-asin' -]; - - -// TESTS // - -tape( 'main export is a function', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof pkg2id, 'function', 'main export is a function' ); - t.end(); -}); - -tape( 'the function throws an error if not provided a string', function test( t ) { - var values; - var i; - - values = [ - 5, - NaN, - true, - false, - null, - void 0, - [], - {}, - function noop() {} - ]; - for ( i = 0; i < values.length; i++ ) { - t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); - } - t.end(); - - function badValue( value ) { - return function badValue() { - pkg2id( value ); - }; - } -}); - -tape( 'the function returns a three-character identifier containing letters and digits (internal package name)', function test( t ) { - var actual; - var pkg; - var i; - - for ( i = 0; i < PKG_LIST.length; i++ ) { - pkg = replace( PKG_LIST[ i ], '-', '/' ); - actual = pkg2id( pkg ); - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.strictEqual( actual.length, 3, 'returns a three-character string' ); - t.ok( actual.match( RE_ID_FORMAT ), 'returns a string containing only letters and digits' ); - } - t.end(); -}); - -tape( 'the function returns a three-character identifier containing letters and digits (standalone package name)', function test( t ) { - var actual; - var pkg; - var i; - - for ( i = 0; i < PKG_LIST.length; i++ ) { - pkg = PKG_LIST[ i ]; - actual = pkg2id( pkg ); - t.strictEqual( typeof actual, 'string', 'returns expected value' ); - t.strictEqual( actual.length, 3, 'returns a three-character string' ); - t.ok( actual.match( RE_ID_FORMAT ), 'returns a string containing only letters and digits' ); - } - t.end(); -}); - -tape( 'the function returns `null` if provided an unrecognized package name', function test( t ) { - var values; - var i; - - values = [ - 'adfkaljdfdsafs', - 'adklfadjflajdslfjalsdf', - 'adflkajdlkfjasdlkfjsadlkfjlasdjflsdjfla' - ]; - for ( i = 0; i < values.length; i++ ) { - t.strictEqual( pkg2id( values[ i ] ), null, 'returns expected value' ); - } - t.end(); -}); diff --git a/tools/test/test.js b/tools/test/test.js deleted file mode 100644 index 9e59fba..0000000 --- a/tools/test/test.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2022 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var tape = require( 'tape' ); -var objectKeys = require( '@stdlib/utils/keys' ); -var ns = require( './../lib' ); - - -// TESTS // - -tape( 'main export is an object', function test( t ) { - t.ok( true, __filename ); - t.strictEqual( typeof ns, 'object', 'main export is an object' ); - t.end(); -}); - -tape( 'the exported object contains error utility tools', function test( t ) { - var keys = objectKeys( ns ); - t.strictEqual( keys.length > 0, true, 'has keys' ); - t.end(); -});